You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I guess you may need to add "ports" for the other services like namenode service do in docker-compose.xml.
e.g.
...
resourcemanager:
image: bde2020/hadoop-resourcemanager:2.0.0-hadoop3.2.1-java8
container_name: resourcemanager
restart: always
ports:
- 8088:8088
environment:
SERVICE_PRECONDITION: "namenode:9000 namenode:9870 datanode:9864"
env_file:
- ./hadoop.env
...
This works for be by port forwarding the 8088 to external network.
I have the docker containers running fine but I cannot seem to access the following websites:
History server: http://<dockerhadoop_IP_address>:8188/applicationhistory
Datanode: http://<dockerhadoop_IP_address>:9864/
Nodemanager: http://<dockerhadoop_IP_address>:8042/node
Resource manager: http://<dockerhadoop_IP_address>:8088/
I have tried to alter the ports on docker compose file by mapping each port but no luck.
Also I can access nodemanager using localhost:9840
The text was updated successfully, but these errors were encountered: