文章目录
参考地址
1.Hive官网地址
http://hive.apache.org/
2.文档查看地址
https://cwiki.apache.org/confluence/display/Hive/GettingStarted
3.下载地址
http://archive.apache.org/dist/hive/
4.github地址
https://github.com/apache/hive
单机安装及配置
1.解压apache-hive-1.2.1-bin.tar.gz到/opt/module/目录下面修改名称
mv apache-hive-1.2.1-bin hive
2.修改/opt/module/hive/conf目录下的hive-env.sh.template名称为hive-env.sh
mv hive-env.sh.template hive-env.sh
3.配置hive-env.sh文件
(a)配置HADOOP_HOME路径
export HADOOP_HOME=/opt/module/hadoop-2.7.2
(b)配置HIVE_CONF_DIR路径
export HIVE_CONF_DIR=/opt/module/hive/conf
4.启动hdfs和yarn
start-all.sh
5.在HDFS上创建/tmp和/user/hive/warehouse两个目录并修改他们的同组权限可写
hadoop fs -mkdir /tmp
hadoop fs -mkdir -p /user/hive/warehouse
hadoop fs -chmod g+w /tmp
Hive的基本操作
进入bin目录下
./hive
(1)查看数据库
hive> show databases;
(2)打开默认数据库
hive> use default;
(3)显示default数据库中的表
hive> show tables;
(4)创建一张表
hive> create table student(id int, name string);
(5)显示数据库中有几张表
hive> show tables;
(6)查看表的结构
hive> desc student;
(7)向表中插入数据
hive> insert into student values(1000,"ss");
(8)查询表中数据
hive> select * from student;
(9)退出hive
hive> quit;
说明:(查看hive在hdfs中的结构)
数据库:在hdfs中表现为${hive.metastore.warehouse.dir}目录下一个文件夹
表:在hdfs中表现所属db目录下一个文件夹,文件夹中存放该表中的具体数据
多用户访问
Metastore默认存储在自带的derby数据库中,推荐使用MySQL存储Metastore;derby是不可多服务访问
安装mysql
1.查看mysql是否安装,如果安装了,卸载mysql
rpm -qa|grep mysql
rpm -e --nodeps mysql-libs-5.1.73-8.el6_8.x86_64
rpm -e --nodeps mysql-server-5.1.73-8.el6_8.x86_64
rpm -e --nodeps mysql-5.1.73-8.el6_8.x86_64
2.解压mysql-libs.zip文件到当前目录
[root@hadoop102 software]# unzip mysql-libs.zip
[root@hadoop102 software]# ls
mysql-libs.zip
mysql-libs
3.进入到mysql-libs文件夹下
[root@hadoop102 mysql-libs]# ll
总用量 76048
-rw-r--r--. 1 root root 18509960 3月 26 2015 MySQL-client-5.6.24-1.el6.x86_64.rpm
-rw-r--r--. 1 root root 3575135 12月 1 2013 mysql-connector-java-5.1.27.tar.gz
-rw-r--r--. 1 root root 55782196 3月 26 2015 MySQL-server-5.6.24-1.el6.x86_64.rpm
2.4.2 安装MySql服务器
1.安装mysql服务端
[root@hadoop102 mysql-libs]# rpm -ivh MySQL-server-5.6.24-1.el6.x86_64.rpm
对于mysql为完全卸载干净参考
完整卸载mysql
2.查看产生的随机密码
[root@note01 mysql-libs]# cat /root/.mysql_secret
# The random password set for the root user at Fri Oct 18 08:21:37 2019 (local time): QJGoHxucA60JDuZr
3.查看mysql状态
[root@hadoop102 mysql-libs]# service mysql status
4.启动mysql
[root@hadoop102 mysql-libs]# service mysql start
2.4.3 安装MySql客户端
1.安装mysql客户端
[root@hadoop102 mysql-libs]# rpm -ivh MySQL-client-5.6.24-1.el6.x86_64.rpm
2.链接mysql
[root@hadoop102 mysql-libs]# mysql -uroot -pQJGoHxucA60JDuZr
3.修改密码
mysql>SET PASSWORD=PASSWORD('000000');
4.退出mysql
mysql>exit
2.4.4 MySql中user表中主机配置
配置只要是root用户+密码,在任何主机上都能登录MySQL数据库。
1.进入mysql
[root@hadoop102 mysql-libs]# mysql -uroot -p000000
2.显示数据库
mysql>show databases;
3.使用mysql数据库
mysql>use mysql;
4.展示mysql数据库中的所有表
mysql>show tables;
5.展示user表的结构
mysql>desc user;
6.查询user表
mysql>select User, Host, Password from user;
7.修改user表,把Host表内容修改为%
mysql>update user set host='%' where host='localhost';
8.删除root用户的其他host
mysql>delete from user where Host='hadoop102';
mysql>delete from user where Host='127.0.0.1';
mysql>delete from user where Host='::1';
9.刷新
mysql>flush privileges;
10.退出
mysql>quit;
Hive元数据配置到MySql
驱动拷贝
1.在/opt/software/mysql-libs目录下解压mysql-connector-java-5.1.27.tar.gz驱动包
[root@hadoop102 mysql-libs]# tar -zxvf mysql-connector-java-5.1.27.tar.gz
2.拷贝/opt/software/mysql-libs/mysql-connector-java-5.1.27目录下的mysql-connector-java-5.1.27-bin.jar到/opt/module/hive/lib/
[root@hadoop102 mysql-connector-java-5.1.27]# cp mysql-connector-java-5.1.27-bin.jar
/opt/module/hive/lib/
配置Metastore到MySql
1.在/opt/module/hive/conf目录下创建一个hive-site.xml
[root@note01 conf]$ touch hive-site.xml
[root@note01 conf]$ vi hive-site.xml
2.根据官方文档配置参数,拷贝数据到hive-site.xml文件中
https://cwiki.apache.org/confluence/display/Hive/AdminManual+MetastoreAdmin
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
<property>
<name>javax.jdo.option.ConnectionURL</name>
<value>jdbc:mysql://note01:3306/metastore?createDatabaseIfNotExist=true</value>
<description>JDBC connect string for a JDBC metastore</description>
</property>
<property>
<name>javax.jdo.option.ConnectionDriverName</name>
<value>com.mysql.jdbc.Driver</value>
<description>Driver class name for a JDBC metastore</description>
</property>
<property>
<name>javax.jdo.option.ConnectionUserName</name>
<value>root</value>
<description>username to use against metastore database</description>
</property>
<property>
<name>javax.jdo.option.ConnectionPassword</name>
<value>000000</value>
<description>password to use against metastore database</description>
</property>
</configuration>
3.配置完毕后,如果启动hive异常,可以重新启动虚拟机。(重启后,别忘了启动hadoop集群)开启多个窗口访问hive
4.启动hive后,回到MySQL窗口查看数据库,显示增加了metastore数据库
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| metastore |
| mysql |
| performance_schema |
| test |
+--------------------+
hive的jdbc访问
1 启动hiveserver2服务
[root@note01 hive]# hiveserver2 &
[1] 8639
2 启动beeline
[root@note01 ~]# beeline
Beeline version 1.2.1 by Apache Hive
beeline>
3 连接hiveserver2
beeline> !connect jdbc:hive2://note01:10000 //(回车)
Connecting to jdbc:hive2://note01:10000
Enter username for jdbc:hive2://note01:10000: root //(回车)
Enter password for jdbc:hive2://note01:10000: //(直接回车)
Connected to: Apache Hive (version 1.2.1)
Driver: Hive JDBC (version 1.2.1)
Transaction isolation: TRANSACTION_REPEATABLE_READ
0: jdbc:hive2://note01:10000> show databases;
+----------------+--+
| database_name |
+----------------+--+
| default |
+----------------+--+
1 row selected (0.941 seconds)
Hive常用交互命令
[root@note01 hive]# hive -help
usage: hive
-d,--define <key=value> Variable subsitution to apply to hive
commands. e.g. -d A=B or --define A=B
--database <databasename> Specify the database to use
-e <quoted-query-string> SQL from command line
-f <filename> SQL from files
-H,--help Print help information
--hiveconf <property=value> Use value for given property
--hivevar <key=value> Variable subsitution to apply to hive
commands. e.g. --hivevar A=B
-i <filename> Initialization SQL file
-S,--silent Silent mode in interactive shell
-v,--verbose Verbose mode (echo executed SQL to the
console)
1.“-e”不进入hive的交互窗口执行sql语句
hive -e "select id from student;"
2.“-f”执行脚本中sql语句
touch hivef.sql
文件中写入正确的sql语句
select *from student;
执行文件中的sql语句
hive -f /opt/module/datas/hivef.sql
执行文件中的sql语句并将结果写入文件中
hive -f /opt/module/datas/hivef.sql > /opt/module/datas/hive_result.txt
Hive其他命令操作
1.退出hive窗口:
hive(default)>exit;
hive(default)>quit;
2.在hive cli命令窗口中如何查看hdfs文件系统
hive(default)>dfs -ls /;
3.在hive cli命令窗口中如何查看本地文件系统
hive(default)>! ls /opt/module/datas;
4.查看在hive中输入的所有历史命令
(1)进入到当前用户的根目录/root或/home/用户
(2)查看. hivehistory文件
[root@note01 ~]# cat .hivehistory