博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Hive2 安装配置
阅读量:6847 次
发布时间:2019-06-26

本文共 4272 字,大约阅读时间需要 14 分钟。

hot3.png

一、环境依赖

Hive必须运行在Hadoop之上,则需要先安装Hadoop环境

二、安装Hive

1.下载Hive

我安装的是apache-hive-1.2.1-bin.tar.gz

[hadoop@hftclclw0001 ~]$ pwd/home/hadoop[hadoop@hftclclw0001 ~]$ wget http://apache.mirrors.ionfish.org/hive/hive-1.2.1/apache-hive-1.2.1-bin.tar.gz[hadoop@hftclclw0001 ~]$ lltotal 637256drwx------ 10 hadoop root      4096 Oct 27 02:22 apache-hive-1.2.1-bin-rw-------  1 hadoop root  92834839 Jun 26 18:34 apache-hive-1.2.1-bin.tar.gzdrwx------  3 hadoop root      4096 Oct 27 09:05 datadrwx------ 11 hadoop root      4096 Oct 21 03:20 hadoop-2.7.1-rw-------  1 hadoop root 210606807 Oct 20 09:00 hadoop-2.7.1.tar.gzdrwx------  2 hadoop root      4096 Oct 23 02:08 install-sqoopdrwx------ 13 hadoop root      4096 Oct 20 09:22 spark-1.5.1-bin-hadoop2.6-rw-------  1 hadoop root 280901736 Oct 20 09:19 spark-1.5.1-bin-hadoop2.6.tgzdrwx------ 22 hadoop root      4096 Oct 23 02:08 sqoop-1.99.6-bin-hadoop200-rw-------  1 hadoop root  68177818 May  5 22:34 sqoop-1.99.6-bin-hadoop200.tar.gz[hadoop@hftclclw0001 ~]$ cd apache-hive-1.2.1-bin/conf/[hadoop@hftclclw0001 conf]$ pwd/home/hadoop/apache-hive-1.2.1-bin/conf[hadoop@hftclclw0001 conf]$ vi hive-env.sh......HADOOP_HOME=/home/hadoop/hadoop-2.7.1                             =>配置Hadoop_Homeexport HIVE_CONF_DIR=/home/hadoop/apache-hive-1.2.1-bin/conf      =>配置HIVE_conf_homeexport HIVE_AUX_JARS_PATH=/home/hadoop/apache-hive-1.2.1-bin/lib/ #我使用了mysql作为metastore ,则需要在lib目录下添加mysql的驱动[hadoop@hftclclw0001 lib]$ pwd/home/hadoop/apache-hive-1.2.1-bin/lib[hadoop@hftclclw0001 lib]$ ll | grep mysql-rw-------  1 hadoop root   848401 Oct 27 01:48 mysql-connector-java-5.1.25-bin.jar[hadoop@hftclclw0001 conf]$ vi hive-site.xml[hadoop@hftclclw0001 conf]$ cat hive-site.xml 
    
hive.metastore.local
    
false
                                    =>metastore我的mysql不是在该server上    
javax.jdo.option.ConnectionURL
jdbc:mysql://{ip:port}/{databases}
        => mysql服务的ip和端口号
javax.jdo.option.ConnectionDriveName
com.mysql.jdbc.Driver
javax.jdo.option.ConnectionUserName
{username}
javax.jdo.option.ConnectionPassword
{password}
hive.metastore.warehouse.dir
/hive/warehouse
                      =>hive的仓库目录,需要在HDFS上创建,并修改权限
        
hive.metastore.uris
                
thrift://{ip}:{port}
                 =>本机ip和端口号,启动metastore服务
[hadoop@hftclclw0001 conf]$ vi hive-log4j.properties                => Log4j的配置,可以修改日志目录...

2.启动metastore

[hadoop@hftclclw0001 bin]$ pwd/home/hadoop/apache-hive-1.2.1-bin/bin[hadoop@hftclclw0001 bin]$ ./hive --service metastore &[hadoop@hftclclw0001 bin]$ ps ax|grep metastore......

3.启动HiveServer2

[hadoop@hftclclw0001 bin]$ pwd/home/hadoop/apache-hive-1.2.1-bin/bin[hadoop@hftclclw0001 bin]$ ./hive --service hiveserver2 &[hadoop@hftclclw0001 bin]$ ps ax|grep HiveServer2......

4.启动shell 或是 beeline

[hadoop@hftclclw0001 bin]$ ./hive shell......

三、metastore

1.内置模式:将数据保存在内置的Derby数据库中,这种方式最简单,但是Derby每次只能访问一个数据文件。

Drive ==>  Metastore  ==> Derby

2.本地模式:将元数据保存在本地的独立数据库(如mysql)等

Driver ===> Metastore

Driver ===> Metastore       ===> DB

Driver ===> Metastore

每个server都需要配置metastore,并启动metastore服务

3.远程模式:使用thrift访问metastore

Client1

Client2   ===> Metastore ===> DB

Client3 

4.配置:

如上述配置,我们已经启动了metastore服务在上述hftclclw0001机器上,我们在另一台server上,如hftclcld0001机器上,安装hive,配置如上述配置一直,仅仅修改hive-site.xml如下:
    
        
hive.metastore.uris
                
thrift://{ip}:{port}
            =>hftclclw0001机器的ip和端口号
即我们通过thrift协议,访问hftclclw0001上面的metastore,并访问hive的元数据[root@hftclcld0001 apache-hive-1.2.1-bin]# pwd/home/hadoop/apache-hive-1.2.1-bin[root@hftclcld0001 apache-hive-1.2.1-bin]# ./bin/hive shellhive> hive> show databases;OKdefaulthive                                            =>能访问到hive的metastore,访问到元数据(我们之前创建的)human_resourcesTime taken: 0.388 seconds, Fetched: 3 row(s)hive>

转载于:https://my.oschina.net/u/204498/blog/522772

你可能感兴趣的文章
LNMP笔记:安装vsftpd配置FTP账户
查看>>
(玩转zabbix)硬盘硬件健康状态监控,部件寿命监控
查看>>
思杰服务账号ctxadmin被误删的解决方法
查看>>
【Java例题】5.3 线性表的使用
查看>>
我的友情链接
查看>>
第二章 -- (第二单元)--设备权限
查看>>
【转】浅谈HTTP中Get与Post的区别
查看>>
windows2012 r2 域策略集合
查看>>
2017"百度之星"程序设计大赛 - 初赛(A)1001——HDU 6108【求因子数】【思维题】...
查看>>
取消服务器系统的 IE 安全增强(2003、2008)
查看>>
云计算项目实战之程序模块说明
查看>>
我的友情链接
查看>>
php连接mssql测试文件
查看>>
使用Atlas实现读写分离
查看>>
TOMCAT7.0利用memcached-session-manager 实现SESSION共享
查看>>
内在事物条件详解
查看>>
我的友情链接
查看>>
C#设计模式系列:建造者模式(Builder)
查看>>
jQuery 获取屏幕高度、宽度
查看>>
ping, tracert和traceroute命令详解
查看>>