http://10.18.51.52:9999/hwi/; 此为配置安装完网页浏览地址。Hive是基于hadoop的,所以先安装完成hadoop。
export HIVE_HOME=/usr/hive
export HIVE_CONF_DIR=$HOME/hive-conf
export CLASSPATH=$HIVE_HOME/lib:$JAVA_HOME/lib:$JAVA_HOME/jre/lib:$HADOOP_HOME
export PATH=$HIVE_HOME/bin:$HADOOP_HOME/bin:$JAVA_HOME/bin:/sbin/:/bin:$PATH
安装:
http://www.mamicode.com/info-detail-516526.html;
http://blog.chinaunix.net/uid-451-id-3143781.html;
将下载的安装包解压放到 /usr/hive ,只需要在主节点上安装即可。环境变量配置见上面。
配置:
cp -r hive-0.8.1/conf $HIVE_CONF_DIR/
cd $HIVE_CONF_DIR/
cp hive-default.xml.template hive-default.xml
cat hive-env.sh
export HADOOP_HEAPSIZE=512
export HIVE_CONF_DIR=/usr/hive-conf
测试:
$ hive
hive> show tables;
OK
Time taken: 4.824 seconds
hive> create table hwz(id int, name string);
OK
Time taken: 0.566 seconds
hive> select * from hwz;
OK
Time taken: 0.361 seconds
hadoop dfs -lsr /user/hive
编译:
(一般下载对应版本,不需要编译了,可以编译试试看)
http://blog.csdn.net/scutshuxue/article/details/5915689;
http://blog.itpub.net/29361362/viewspace-1062317/;
http://www.cnblogs.com/end/archive/2012/10/09/2717217.html;
http://blog.163.com/[email protected]/blog/static/13162315620118260333712/;
http://www.cnblogs.com/end/archive/2012/10/09/2717217.html;