登不上192.168.***.***:50070
一、centos如果登不上192.168.***.***:50070页面,关闭防火墙
systemctl stop firewalld
二、windows上登不上192.168.***.***:50070
原因:未关闭防火墙
在使用service iptables status查看防火墙状态时出现
Redirecting to /bin/systemctl status iptables.service
Unit iptables.service could not be found.
解决(root权限下):
# 停止防火墙
systemctl stop firewalld
systemctl mask firewalld
# 安装iptables-service
yum install iptables-services
# 永久关闭防火墙
chkconfig iptables off
# 临时关闭防火墙
service iptables stop
# 查看防火墙状态
service iptables status
关闭后windows即可登上50070