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数据库)
schematool -dbType derby -initSchema
标签:profile,bin,hive,etc,Hive,3.1,最小化,usr
From: https://www.cnblogs.com/fanqisoft/p/17924501.html