hadoop 50070页面访问不到的多种排查思路

时间:2020-12-05 17:08:28
排查方法1:是否对Windows客户端中的host文件做host解析
到此路径下   C:\Windows\System32\drivers\etc\hosts  打开此文件,做host解析

当然,也需要在Linux环境下,做host文件解析

排查方法2:查看是否关闭selinux

cat etc/sysconfig/selinux
如果 没有关闭,执行下面的命令
sed -i 's#enforcing#disabled#' /etc/sysconfig/selinux


排查方法3:检查iptables是否关闭

/etc/init.d/iptables status#查看是否关闭
/etc/init.d/iptables stop#关闭iptables
chkconfig iptables off#开机关闭


排查方法4:查看你的$HADOOP_HOME/etc/hadoop下的core-site.xmlhdfs-site.xml是否配置好


排查方法5:必须在hadoop-env.sh文件中设置Java的绝对路径

#cd /opt/modules/hadoop-2.5.0/etc/hadoop#切换到自己设置的目录下面
#echo ${JAVA_HOME}
/opt/modules/jdk1.7.0_67

#sed -i '25s#${JAVA_HOME}#/opt/modules/jdk1.7.0_67#'  hadoop-env.sh#做替换


希望我的整理能够对您有帮助!!!