赞
踩
排查方法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.xml和hdfs-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#做替换
希望我的整理能够对您有帮助!!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。