Hadoop安装成功之后,访问不了web界面的50070端口怎么解决?

Hadoop安装成功之后,访问不了web界面的50070端口

先查看端口是否启用

[hadoop@s128 sbin]$ netstat -ano |grep 50070

然后查看防火墙的状态,是否关闭,如果没有,强制性关闭

查看防火墙状态:

[hadoop@s128 sbin]$ service iptables status

关闭防火墙

 chkconfig iptables off
 service iptables stop

centos7的方式:

systemctl stop firewalld.service #停止防火墙

systemctl start firewalld.service #开启防火墙

systemctl status firewalld.service #查看防火墙状态

systemctl enable firewalld.service #开机自启 “启用”

systemctl disable firewalld.service #开机自启 “禁用”

访问web界面(ip+端口号)

https://192.168.109.128:50070
原文地址:https://www.cnblogs.com/hankleo/p/11041116.html