zoukankan      html  css  js  c++  java
  • 启动HIVE 服务报错 HWI WAR file not found

    [root@idc01-vm-test-124 bin]# ./hive --service hwi
    14/04/20 11:22:31 INFO hwi.HWIServer: HWI is starting up
    14/04/20 11:22:31 WARN hwi.HWIServer: hive.hwi.listen.port was not specified defaulting to 9999
    14/04/20 11:22:31 FATAL hwi.HWIServer: HWI WAR file not found at /usr/local/hadoop/hive-0.7.1-cdh3u6/lib/hive-hwi-0.7.1-cdh3u6.war

    解决方法:

    进入 conf 

    vim  hive-site.xml

    加入下面配置项

    <property> 
      <name>hive.hwi.war.file</name>
        <value>lib/hive-hwi-0.7.1-cdh3u6.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>
    

    须要注意:配置hive.hwi.war.file的值 依据lib/下得hive-hwi-0.7.1-cdh3u6.war 相应。

    接下来 启动下服务

    ./hive --service hwi
    14/04/20 11:30:07 INFO hwi.HWIServer: HWI is starting up
    14/04/20 11:30:07 INFO mortbay.log: Logging to org.slf4j.impl.Log4jLoggerAdapter(org.mortbay.log) via org.mortbay.log.Slf4jLog
    14/04/20 11:30:07 INFO mortbay.log: jetty-6.1.14
    14/04/20 11:30:07 INFO mortbay.log: Extract jar:file:/usr/local/hadoop/hive-0.7.1-cdh3u6/lib/hive-hwi-0.7.1-cdh3u6.war!/ to /tmp/Jetty_0_0_0_0_9999_hive.hwi.0.7.1.cdh3u6.war__hwi__co5uvf/webapp
    14/04/20 11:30:07 INFO mortbay.log: Started SocketConnector@0.0.0.0:9999

    DONE.

  • 相关阅读:
    Linux初级知识_04 -- 目录结构与目录管理
    查找无限整数序列的第n位1,2,3,4,5,6,7,8,9,10,11,...
    谷歌面试题:在半径为1的圆中随机选取一点
    FtpClient 调用storeFile 抛出 java.net.SocketException异常
    CountDownLatch 使用
    软件版本号比较 java工具类
    pcm文件转wav C语言
    unimrcp更改安装目录
    xpath学习记录
    jackson 实体转json 为NULL或者为空不参加序列化
  • 原文地址:https://www.cnblogs.com/wgwyanfs/p/7065860.html
Copyright © 2011-2022 走看看