无法启动Hive Web Interface

时间:2013-09-14 03:41:17

标签: hadoop hive

我的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 **

我做错了什么?

1 个答案:

答案 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(您可能已经知道这一点),但仍然与您分享。