启动hive hwi服务时出现 HWI WAR file not found错误

./hive --service hwi

[niy@niy-computer /]$ $HIVE_HOME/bin/hive --service  hwi
13/04/26 00:21:17 INFO hwi.HWIServer: HWI is starting up
13/04/26 00:21:18 FATAL hwi.HWIServer: HWI WAR file not found at /usr/local/hive/usr/local/hive/lib/hive-hwi-0.12.0-SNAPSHOT.war

可以看出/usr/local/hive/usr/local/hive/lib/hive-hwi-0.12.0-SNAPSHOT.war 肯定 不是正确路径,真正路径是/usr/local/hive/lib/hive-hwi-0.12.0-SNAPSHOT.war

断定是配置的问题


解决办法

将hive-default.xml中关于 hwi的设置拷贝到hive-site.xml中即可

<property>
  <name>hive.hwi.war.file</name>
  <value>lib/hive-hwi-0.12.0-SNAPSHOT.war</value>
  <description>This sets the path to the HWI war file, relative to ${HIVE_HOME}. </description>
</property>

<property>
  <name>hive.hwi.listen.host</name>
  <value>0.0.0.0</value>
  <description>This is the host address the Hive Web Interface will listen on</description>
</property>

<property>
  <name>hive.hwi.listen.port</name>
  <value>9999</value>
  <description>This is the port the Hive Web Interface will listen on</description>
</property>

再次运行上面的命令

[niy@niy-computer hive]$ bin/hive --service hwi
13/04/26 00:24:51 INFO hwi.HWIServer: HWI is starting up
13/04/26 00:24:51 INFO mortbay.log: Logging to org.slf4j.impl.Log4jLoggerAdapter(org.mortbay.log) via org.mortbay.log.Slf4jLog
13/04/26 00:24:51 INFO mortbay.log: jetty-6.1.14
13/04/26 00:24:51 INFO mortbay.log: Extract jar:file:/home/niy/workspace1/hive/trunk/build/dist/lib/hive-hwi-0.12.0-SNAPSHOT.war!/ to /tmp/Jetty_0_0_0_0_9999_hive.hwi.0.12.0.SNAPSHOT.war__hwi__.bt0qvz/webapp
13/04/26 00:24:52 INFO mortbay.log: Started [email protected]:9999

这时打开浏览器,输入

http://localhost:9999/hwi

即可验证服务已正常开启


发布了73 篇原创文章 · 获赞 34 · 访问量 138万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章