我的HIVE_HOME = /home/hduser/bin/hive-0.11.0-bin /
当我尝试运行时
#hive --service hwi
我收到此错误:
INFO hwi.HWIServer:HWI正在启动
FATAL hwi.HWIServer:在/home/hduser/bin/hive-0.11.0-bin/home/hduser/bin/hive-0.11.0-bin/lib/hive-hwi-0.11找不到HWI WAR文件.0.war **
我做错了什么?
答案 0 :(得分:0)
请尝试添加以下内容 -
<property>
<name>hive.hwi.war.file</name>
<value>${HIVE_HOME}/lib/hive_hwi.war</value>
<description>This is the WAR file with the jsp content for Hive Web Interface</description>
</property>
您必须确保${HIVE_HOME}/lib/hive_hwi.war
可以访问。
确认您可以从终端执行ls -l ${HIVE_HOME}/lib/hive_hwi.war
,看看是否可以访问war文件。
请check this link for reference(您可能已经知道这一点),但仍然与您分享。