Hive install:修订间差异
跳到导航
跳到搜索
(创建页面,内容为“===安装包=== wget https://dlcdn.apache.org/hive/hive-3.1.3/apache-hive-3.1.3-bin.tar.gz tar -zxvf apache-hive-3.1.3-bin.tar.gz ln -s apache-hive-3.1.1-bin hive mkdir /tmp/hive ===profile=== #hive, 20230212, Adam export HIVE_HOME=/opt/hive export PATH=$PATH:$HIVE_HOME/bin source /etc/profile hive --version ===INIT=== ## Init hdfs init-hive-dfs.sh #? hive-config.sh ## Init Schema cd /opt/hive/bin schematool -dbType derby -initSchema 分…”) |
无编辑摘要 |
||
第20行: | 第20行: | ||
cd /opt/hive/bin | cd /opt/hive/bin | ||
schematool -dbType derby -initSchema | schematool -dbType derby -initSchema | ||
使用 MySQL 作为资料库 | |||
* 将驱动 /usr/share/java/mysql-connector-j-8.0.31.jar 拷贝到 $HIVE_HOME/lib 目录下。 | |||
* 将 hive-site.xml 中,derby配置改为 MySQL | |||
[[分类:Develop]] | [[分类:Develop]] | ||
[[分类:Hadoop]] | [[分类:Hadoop]] | ||
[[分类:Hive]] | [[分类:Hive]] |
2023年2月12日 (日) 23:13的版本
安装包
wget https://dlcdn.apache.org/hive/hive-3.1.3/apache-hive-3.1.3-bin.tar.gz tar -zxvf apache-hive-3.1.3-bin.tar.gz ln -s apache-hive-3.1.1-bin hive mkdir /tmp/hive
profile
#hive, 20230212, Adam export HIVE_HOME=/opt/hive export PATH=$PATH:$HIVE_HOME/bin source /etc/profile hive --version
INIT
## Init hdfs init-hive-dfs.sh #? hive-config.sh ## Init Schema cd /opt/hive/bin schematool -dbType derby -initSchema
使用 MySQL 作为资料库
- 将驱动 /usr/share/java/mysql-connector-j-8.0.31.jar 拷贝到 $HIVE_HOME/lib 目录下。
- 将 hive-site.xml 中,derby配置改为 MySQL