1.上传解压
2.配置环境变量
3.配置hive-site.xml
4.将mysql的连接驱动放到hive/lib下
5.初始化操作
6.执行hive命令并测试
7.异常处理
如果是集群版,Hive安装在一台虚拟机上就行
首先确保hdfs和mysql是正确启动的
软件:hive-2.3.3
在/usr在创建hive文件夹,用来存放压缩包和作为安装路径
[root@master ~]# cd /usr
[root@master usr]# mkdir hive
[root@master usr]# ls
bin etc games hadoop hive include java lib lib64 libexec local sbin share sqoop src tmp zookeeper
利用Xshell连接虚拟机,并使用Xftp将hive压缩包上传到hive文件夹下
解压
[root@master hive]# tar -zxf apache-hive-2.3.3-bin.tar.gz
[root@master hive]# vim /etc/profile
在最后添加
export HIVE_HOME=/usr/hive/apache-hive-2.3.3-bin
export PATH=$PATH:$HIVE_HOME/bin
刷新环境变量并测试
[root@master hive]# source /etc/profile
[root@master hive]# hive --version
Hive 2.3.3
Git git://daijymacpro-2.local/Users/daijy/commit/hive -r 8a511e3f79b43d4be41cd231cf5c99e43b248383
Compiled by daijy on Wed Mar 28 16:58:33 PDT 2018
From source with checksum 8873bba6c55a058614e74c0e628ab022
你会发现/usr/hive/apache-hive-2.3.3-bin/conf/并没有hive-site.xml文件
直接新建一个就行
[root@master hive]# cd apache-hive-2.3.3-bin/conf/
#创建文件
[root@master conf]# touch hive-site.xml
#编辑
[root@master conf]# vim hive-site.xml
在hive-site.xml中写入
ip改为自己的
javax.jdo.option.ConnectionURL
jdbc:mysql://192.168.134.154:3306/hive
javax.jdo.option.ConnectionDriverName
com.mysql.jdbc.Driver
javax.jdo.option.ConnectionUserName
root
javax.jdo.option.ConnectionPassword
root
hive.metastore.schema.verification
false
hive.cli.print.current.db
true
hive.cli.print.header
true
hive.server2.thrift.port
10000
hive.server2.thrift.bind.host
192.168.134.154
进入到你的hive安装目录的lib下,利用Xftp将驱动传输进去
我的mysql数据库连接驱动的百度云链接:https://pan.baidu.com/s/1wCBuZQaCP_nKT5t504SeoA
提取码:fakd
利用数据库工具SQLyog在mysql创建个新的数据库hive
或者使用命令创建
[root@master ~]# mysql -u root -p
mysql>create database hive;
此时保证hadoop启动着
初始化操作如下
[root@master conf]# schematool -initSchema -dbType mysql
[root@master conf]# hive
hive> show databases;
OK
default
Time taken: 7.897 seconds, Fetched: 1 row(s)
如果出错了
hive> show databases;
FAILED: SemanticException org.apache.hadoop.hive.ql.metadata.HiveException: java.lang.RuntimeException: Unable to instantiate org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
HIVE_HOME/lib 下的derby-10.11.1.1.jar问题,,把derby-10.10.2.0.jar 换成derby-10.10.1.1.jar,把derby-10.10.2.0.jar删除,问题成功解决
derby-10.10.1.1.jar的百度云链接:https://pan.baidu.com/s/1v6mIGRjf8mlRQicRoau7iw
提取码:5ga1
其中hive-site.xml中的部分hiveserver2的配置是用于hiveserver2的,现在可以不配置,之后后介绍如何配置hiveserver2