hive 安装教程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hive 安装教程相关的知识,希望对你有一定的参考价值。

1. 下载hadoop-1.2.1-bin.tar.gz

解压,修改名称为hive

mv 到 /opt/hive

2.配置hive

cp hive-default.xml.template hive-site.xml

修改hive-site.xml

技术分享 

cp hive-log4j.properties.template hive-log4j.properties

 

修改hive-env.sh,配置环境变量

技术分享

3.安装mysql

sudo yum install mysql-server

修改root 密码

mysqld admin -uroot password root

创建hive用户

mysql>create user ‘hive‘@‘localhost‘ identfied by ‘hive‘;

赋予hive 全部权限

mysql>grant privileges on *.* to [email protected] ;

刷新

mysql>flush privileges;

登录hive,然后创建hive 数据库

mysql>create database hive;

4.创建hdfs 目录

hive 默认数据库配置目录为 /user/hive/warehouse

创建/user/hive/warehouse

hadoop fs -mkdir -p /user/hive/warehouse

更新权限

hadoop fs -chmod g+w /user/hive/warehouse

创建 /tmp/hive

hadoop fs -chmod 777 /tmp/hive

5.添加hive环境变量

vi  ~/.bashrc

export PATH=$PATH:/opt/hive/bin

source ~/.bashrc

5.使用hive

>hive

hive>create table test(id int ,name string);

 

附图:hive 运行UDAF

技术分享

 

以上是关于hive 安装教程的主要内容,如果未能解决你的问题,请参考以下文章

hive 安装教程

Hive/Hbase/Sqoop的安装教程

Hive入门教程

Ubuntu下安装Hive3.1.2教程(附MySQL安装方法及安装包)

Ubuntu下安装Hive3.1.2教程(附MySQL安装方法及安装包)

hive安装教程本地模式