Hive 0.13.1 on Hadoop2.2.0 + Oracle10g部署详解


环境: Hadoop2.2.0 hive0.13.1 Ubuntu 14.04 LTS java version "1.7.0_60" Oracle10g
到以下地址下载安装包 http://mirrors.cnnic.cn/apache/hive/stable/apache-hive-0.13.1-bin.tar.gz
安装包解压到服务器上 /home/fulong/Hive/apache-hive-0.13.1-bin
修改环境变量,添加以下内容 export HIVE_HOME=/home/fulong/Hive/apache-hive-0.13.1-bin export PATH=$HIVE_HOME/bin:$PATH
进到conf目录下拷贝模板配置文件重命名 fulong@FBI006:~/Hive/apache-hive-0.13.1-bin/conf$ ls hive-default.xml.template  hive-exec-log4j.properties.template hive-env.sh.template       hive-log4j.properties.template fulong@FBI006:~/Hive/apache-hive-0.13.1-bin/conf$ cp hive-env.sh.template hive-env.sh fulong@FBI006:~/Hive/apache-hive-0.13.1-bin/conf$ cp hive-default.xml.template hive-site.xml fulong@FBI006:~/Hive/apache-hive-0.13.1-bin/conf$ ls hive-default.xml.template  hive-env.sh.template                 hive-log4j.properties.template hive-env.sh               hive-exec-log4j.properties.template  hive-site.xml
修改配置文件hive-env.sh中的以下几处,分别制定Hadoop的根目录,Hive的conf和lib目录 # Set HADOOP_HOME to point to a specific hadoop install directory HADOOP_HOME=/home/fulong/Hadoop/hadoop-2.2.0   # Hive Configuration Directory can be controlled by: export HIVE_CONF_DIR=/home/fulong/Hive/apache-hive-0.13.1-bin/conf   # Folder containing extra ibraries required for hive compilation/execution can be controlled by: export HIVE_AUX_JARS_PATH=/home/fulong/Hive/apache-hive-0.13.1-bin/lib
修改配置文件hive-site.sh中的以下几处连接Oracle相关参数 <property>   <name>javax.jdo.option.ConnectionURL</name>   <value>

相关内容