Cannot find hav-hwi- <version> .war file

I am unable to launch the Hive web interface as described here . This is the conclusion hive --service hwi

:

ls: cannot access /usr/local/hive/lib/hive-hwi-*.war: No such file or directory
14/09/09 13:07:59 INFO hwi.HWIServer: HWI is starting up
14/09/09 13:08:00 FATAL hwi.HWIServer: HWI WAR file not found at /usr/local/hive/lib/hive-hwi-0.13.1.war

      

It looks like there is no .war file in / usr / local / hive / lib directory !!! Should I generate a war file?

I have set $ ANT_LIB and $ HIVE_HOME correctly and here is my hive-site.xml:

<configuration>
  <property>
    <name>hive.metastore.warehouse.dir</name>
    <value>hdfs://hadoop-server/user/hive/warehouse</value>
    <description>location of default database for the warehouse</description>
  </property>
  <property>
    <name>hive.hwi.war.file</name>
    <value>/lib/hive-hwi-0.13.1.war</value>
    <description>This is the WAR file with the jsp content for Hive Web Interface</description>
  </property>
</configuration>

      

My hive version is 0.13.1 and hasoop version is 2.5.0.

+3


source to share


1 answer


There is HIVE-7233



you may need to change the version of the hive or copy the war file of another version

0


source







All Articles