Hive 3.1.3最小化安装
1.解压
mkdir /usr/hive
tar -zxvf apache-hive-3.1.3-bin.tar.gz -C /usr/hive
2.配置Hive环境变量
在/etc/profile.d中配置
1.新建hive.sh
vi /etc/profile.d/hive.sh
export HIVE_HOME=/usr/hive/apache-hive-3.1.3-bin
export PATH=$PATH:$HIVE_HOME/bin
2.授予文件执行权限
chmod u+x /etc/profile.d/hive.sh
3.刷新环境变量
source /etc/profile
3.初始化元数据库(默认是derby数据库)
注:需要保证Hadoop集群是开启状态
若初始化时未开启Hadoop集群导致的错误,删除metastore_db目录后重新初始化即可
schematool -dbType derby -initSchema
4.启动Hive
hive
5.测试
show databases;
show tables;