在Windows上安装hadoop配置Hive

时间:2018-03-23 12:21:45

标签: hadoop hive

我在我的Windows 10上安装了hadoop 2.x。所有服务都运行良好。现在我想用这个hadoop设置运行hive 2.1。我在hive-site.xml中为hive配置了mysql db for meta store service。我还在系统变量中设置了HIVE_HOME。但是当导航到hadoop文件夹并运行配置单元时,我收到以下错误:

    ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console.
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/C:/hive/apache-hive-2.1.1-bin/lib/hive-jdbc-2.1.1-standalone.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/C:/hive/apache-hive-2.1.1-bin/lib/log4j-slf4j-impl-2.4.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/C:/Users/namaagarwal/Desktop/hadoop-2.6.2/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.apache.logging.slf4j.Log4jLoggerFactory]
Connecting to jdbc:hive2://
Error applying authorization policy on hive configuration: Couldn't create directory ${system:java.io.tmpdir}\${hive.session.id}_resources
Beeline version 2.1.1 by Apache Hive
Error applying authorization policy on hive configuration: Couldn't create directory ${system:java.io.tmpdir}\${hive.session.id}_resources
Connection is already closed.

我不知道我错过了什么。 这是我在hive-site.xml中添加的内容:

<property>
<name>javax.jdo.option.ConnectionURL</name>
<value>jdbc:mysql://localhost:3306/metastore_db?createDatabaseIfNotExist=true</value>
<description>metadata is stored in a MySQL server</description>
</property>
<property>
<name>javax.jdo.option.ConnectionDriverName</name>
<value>com.mysql.jdbc.Driver</value>
<description>MySQL JDBC driver class</description>
</property>
<property>
<name>javax.jdo.option.ConnectionUserName</name>
<value>hiveuser</value>
<description>user name for connecting to mysql server </description>
</property>
<property>
<name>javax.jdo.option.ConnectionPassword</name>
<value>hivepwd</value>
<description>password for connecting to mysql server </description>
</property>
<property>
 <name>hive.metastore.uris</name>
 <value>thrift://localhost:9083</value>
 <description>Thrift URI for the remote metastore. Used by metastore client to connect to remote metastore.</description>
  </property>

我的hive-env.sh我添加了以下属性:

HADOOP_HOME=C:\Users\namaagarwal\Desktop\hadoop-2.6.2
export HIVE_CONF_DIR=C:\hive\apache-hive-2.1.1-bin\conf

0 个答案:

没有答案