hadoop dfsadmin -report命令显示的是0个datanode

2025-01-04 07:27:49
推荐回答(1个)
回答1:

我也遇到了同样的问题,最后发现问题原因是centos 7防火墙关闭命令变化了使用centos 7最新的命令关闭并禁用防火墙后systemctl stop firewalld.service #停止,
systemctl disable firewalld.service #禁用。重新格式化HDFS文件系统hadoop namenode -format,然后重新进入/sbin里 ./start-all.sh 重启Hadoop即可解决问题。
centos 7:
systemctl stop firewalld.service #停止
systemctl disable firewalld.service #禁用
之前的版本:
service iptables stop #停止
chkconfig iptables off #禁用