本文主要是介绍Hdoop 启动:localhost: Error: JAVA_HOME is not set and could not be found.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
参考教程:
http://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-common/SingleCluster.html
其中有
Prepare to Start the Hadoop Cluster
Unpack the downloaded Hadoop distribution. In the distribution, edit
the file etc/hadoop/hadoop-env.sh to define some parameters as
follows:
export JAVA_HOME=/usr/java/latest
(原来是${JAVA_HOME},把这个改为相应的jdk真实路劲)
Try the following command:
bin/hadoop
This will display the usage documentation for the
hadoop script.
自己不按照文档说的来,因为在shell脚本中一般$${JAVA_HOME} 或者$JAVA_HOME
都是取变量的值,然后左边又有=等号,所以就自作聪明的认为没有必要了!
关于环境相关,以后还是就按照官方的来吧。。。。
现在还有极大的可能是,JAVA_HOME没有被 export
这篇关于Hdoop 启动:localhost: Error: JAVA_HOME is not set and could not be found.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!