@linux1s1s
2018-02-11T14:44:32.000000Z
字数 8171
阅读 2330
Big-Data
2018-02
Hive官网下载
我们以Hadoop版本作为参考适配Hive Hbase即可, Hadoop版本是2.6.1 所以可以选择Hive1.2.1以上版本,HBase-1.2.x 至 HBase-2.0.x即可.
mutex@mutex-dl:~$ sudo apt-get install mysql-server mysql-client
mutex@mutex-dl:~$ sudo /etc/init.d/mysql start (Ubuntu版本)
* Starting MySQL database server mysqld [ OK ]
sudo /etc/init.d/mysql restart -- 重启sql
sudo /etc/init.d/mysql stop -- 停止sql
mutex@mutex-dl:~$ su - hadoop
密码:
hadoop@mutex-dl:~$ cd /tmp
hadoop@mutex-dl:/tmp$ wget http://www-us.apache.org/dist/hive/hive-2.1.1/apache-hive-2.1.1-bin.tar.gz
hadoop@mutex-dl:/tmp$ sudo tar xvzf apache-hive-2.1.1-bin.tar.gz -C /usr/local
请注意,这里一开始就切换到hadoop用户环境,中间不要再切换用户,防止在配置过程中出现用户权限问题
另外如果上面的链接拒绝访问,那么请用前面提供的Hive官网自行下载,并解压到
/usr/local
目录下即可
打开~/.bashrc
并配置如下:
export HIVE_HOME=/usr/local/apache-hive-2.1.1-bin
export HIVE_CONF_DIR=/usr/local/apache-hive-2.1.1-bin/conf
export PATH=$HIVE_HOME/bin:$PATH
export CLASSPATH=$CLASSPATH:/usr/local/hadoop/lib/*:.
export CLASSPATH=$CLASSPATH:/usr/local/apache-hive-2.1.1-bin/lib/*:.
然后命令行使之生效
hadoop@mutex-dl:/tmp$ source ~/.bashrc
hadoop@mutex-dl:/tmp$ echo $HADOOP_HOME
/usr/local/hadoop
显示Hadoop-home配置的真是目录,然后再新建目录以供以后Hive使用
hadoop@mutex-dl:~$ hdfs dfs -ls /
drwxr-xr-x - hduser supergroup 0 2018-1-23 11:17 /hbase
drwx------ - hduser supergroup 0 2018-1-18 16:04 /tmp
drwxr-xr-x - hduser supergroup 0 2018-1-18 09:13 /user
hadoop@mutex-dl:~$ hdfs dfs -mkdir /user/hive/warehouse
hadoop@mutex-dl:~$ hdfs dfs -chmod g+w /tmp
hadoop@mutex-dl:~$ hdfs dfs -chmod g+w /user/hive/warehouse
hadoop@mutex-dl:~$ hdfs dfs -ls /
drwxr-xr-x - hduser supergroup 0 2018-1-23 11:17 /hbase
drwx-w---- - hduser supergroup 0 2018-1-18 16:04 /tmp
drwxr-xr-x - hduser supergroup 0 2018-1-23 17:18 /user
hadoop@mutex-dl:~$ hdfs dfs -ls /user
drwxr-xr-x - hduser supergroup 0 2018-1-18 23:17 /user/hduser
drwxr-xr-x - hduser supergroup 0 2018-1-23 17:18 /user/hive
hadoop@mutex-dl:~$ cd $HIVE_HOME/conf
hadoop@mutex-dl:/usr/local/apache-hive-2.1.1-bin/conf$ sudo cp hive-env.sh.template hive-env.sh
编辑hive-env.sh
,新加入配置
export HADOOP_HOME=/usr/local/hadoop
hadoop@mutex-dl:~$ cd /tmp
hadoop@mutex-dl:/tmp$ wget http://archive.apache.org/dist/db/derby/db-derby-10.13.1.1/db-derby-10.13.1.1-bin.tar.gz
hadoop@mutex-dl:/tmp$ sudo tar xvzf db-derby-10.13.1.1-bin.tar.gz -C /usr/local
如果wget拒绝访问,直接手动在浏览器中下载即可.
继续配置Derby,打开~/.bashrc,并新增以下内容
export DERBY_HOME=/usr/local/db-derby-10.13.1.1-bin
export PATH=$PATH:$DERBY_HOME/bin
export CLASSPATH=$CLASSPATH:$DERBY_HOME/lib/derby.jar:$DERBY_HOME/lib/derbytools.jar
别忘记 随后用命令行
source ~/.bashrc
使之随机生效.
再创建一个data目录
hadoop@mutex-dl:/tmp$ sudo mkdir $DERBY_HOME/data
hadoop@mutex-dl:/tmp$ cd $HIVE_HOME/conf
hadoop@mutex-dl:/usr/local/apache-hive-2.1.1-bin/conf$ sudo cp hive-default.xml.template hive-site.xml
编辑hive-site.xml,并新增以下内容
<property>
<name>javax.jdo.option.ConnectionURL</name>
<value>jdbc:derby:;databaseName=metastore_db;create=true</value>
<description>
JDBC connect string for a JDBC metastore.
To use SSL to encrypt/authenticate the connection, provide database-specific SSL flag in the connection URL.
For example, jdbc:postgresql://myhost/db?ssl=true for postgres database.
</description>
</property>
在/usr/local/apache-hive-2.1.1-bin/conf
当前目录下新建文件jpox.properties
,添加以下内容
javax.jdo.PersistenceManagerFactoryClass =
org.jpox.PersistenceManagerFactoryImpl
org.jpox.autoCreateSchema = false
org.jpox.validateTables = false
org.jpox.validateColumns = false
org.jpox.validateConstraints = false
org.jpox.storeManagerType = rdbms
org.jpox.autoCreateSchema = true
org.jpox.autoStartMechanismMode = checked
org.jpox.transactionIsolation = read_committed
javax.jdo.option.DetachAllOnCommit = true
javax.jdo.option.NontransactionalRead = true
javax.jdo.option.ConnectionDriverName = org.apache.derby.jdbc.ClientDriver
javax.jdo.option.ConnectionURL = jdbc:derby://hadoop1:1527/metastore_db;create = true
javax.jdo.option.ConnectionUserName = APP
javax.jdo.option.ConnectionPassword = mine
然后修改apache-hive-2.1.1-bin
整个目录的所有者
hadoop@mutex-dl:/usr/local$ sudo chown -R hadoop:hadoop apache-hive-2.1.1-bin
hadoop@mutex-dl:/usr/local/apache-hive-2.1.1-bin/bin$ schematool -dbType derby -initSchema
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/usr/local/apache-hive-2.1.0-bin/lib/log4j-slf4j-impl-2.4.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/usr/local/hadoop/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]
Metastore connection URL: jdbc:derby:;databaseName=metastore_db;create=true
Metastore Connection Driver : org.apache.derby.jdbc.EmbeddedDriver
Metastore connection User: APP
Starting metastore schema initialization to 2.1.1
Initialization script hive-schema-2.1.1.derby.sql
Initialization script completed
schemaTool completed
hadoop@mutex-dl:~$ echo $HIVE_HOME
/usr/local/apache-hive-2.1.0-bin
hadoop@mutex-dl:~$ $HIVE_HOME/bin/hive
Exception in thread "main" java.lang.RuntimeException: Couldn't create directory {hive.session.id}_resources
解决方法: 修改hive-site.xml, 将原先的system:java.io.tmpdir
这一行配置注释掉,然后修改为以下所示/user/hive/tmp/
<property>
<name>hive.downloaded.resources.dir</name>
<!--
<value>${system:java.io.tmpdir}/${hive.session.id}_resources</value>
-->
<value>/user/hive/tmp/${hive.session.id}_resources</value>
<description>Temporary local directory for added resources in the remote file system.</description>
</property>
尤其要注意,这里的/user/hive/tmp/,并非是HDFS文件系统下面的,而是hadoop用户的本地目录,本人一开始认为是HDFS文件系统下的目录,造成没有权限新建目录,问题和StackOverflow上面这个问题一样,想看具体细节的可以参考
java.net.URISyntaxException: Relative path in absolute URI: {system:java.io.tmpdir%7D/%7Bsystem:user.name%7D
解决方法:修改 hive-site.xml
,将下面注释的行修改为/tmp/mydir
,这个也是Hadoop用户的本地目录,而非HDFS文件系统目录.
<property>
<name>hive.exec.local.scratchdir</name>
<!--
<value>${system:java.io.tmpdir}/${system:user.name}</value>
-->
<value>/tmp/mydir</value>
<description>Local scratch space for Hive jobs</description>
</property>
修改完以上的问题,我们就可以启动Hive了
hadoop@mutex-dl:/usr/local/apache-hive-2.1.1-bin/bin$ hive
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/usr/local/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:/usr/local/hadoop/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]
Logging initialized using configuration in jar:file:/usr/local/apache-hive-2.1.1-bin/lib/hive-common-2.1.1.jar!/hive-log4j2.properties Async: true
Hive-on-MR is deprecated in Hive 2 and may not be available in the future versions. Consider using a different execution engine (i.e. spark, tez) or using Hive 1.X releases.
hive> show tables;
OK
Time taken: 4.603 seconds
如果在 initSchema
的时候出现以下错误
hadoop@mutex-dl:/usr/local/apache-hive-2.1.1-bin/bin$ schematool -dbType mysql -initSchema
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/usr/local/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:/usr/local/hadoop/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]
Metastore connection URL: jdbc:derby:;databaseName=metastore_db;create=true
Metastore Connection Driver : org.apache.derby.jdbc.EmbeddedDriver
Metastore connection User: APP
Starting metastore schema initialization to 2.1.0
Initialization script hive-schema-2.1.0.mysql.sql
Error: Syntax error: Encountered "<EOF>" at line 1, column 64. (state=42X01,code=30000)
org.apache.hadoop.hive.metastore.HiveMetaException: Schema initialization FAILED! Metastore state would be inconsistent !!
Underlying cause: java.io.IOException : Schema script failed, errorcode 2
Use --verbose for detailed stacktrace.
*** schemaTool failed ***
解决的办法就是删除所有目录下的metastore_db
目录,典型的如:
/usr/local/apache-hive-2.1.1-bin/bin
/usr/local/apache-hive-2.1.1-bin/conf
/usr/local/apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql
删除以上目录以后,再执行schematool -dbType mysql -initSchema
即可.