标签:io java ar 文件 art sp on c html
分三步:
1. 添加环境变量
2.编辑hbase-env.sh文件
3.编辑hbase-site.xml 文件
前提条件是安装好hadoop,下面展开说明
1. 添加环境变量
export HBASE_HOME=/usr/local/cdh/hbase export PATH=$PATH:$PIG_HOME/bin:$HADOOP_HOME/bin:$HBASE_HOME/bin:$
export JAVA_HOME=/usr/local/java/jdk1.7.0_67 export HBASE_CLASSPATH=/usr/local/cdh/hadoop/etc/hadoop
<configuration> <property> <name>hbase.rootdir</name> <value>hdfs://cent:9000/hbase</value> </property> <property> <name>hbase.cluster.distributed</name> <value>true</value> </property> </configuration>
bin/start-hbase.sh [root@cent hbase]# jps 7100 ResourceManager 7800 HMaster 6894 SecondaryNameNode 7745 HQuorumPeer 6729 DataNode 6631 NameNode 8158 Jps 7204 NodeManager 7932 HRegionServer
进入shell
[root@cent hbase]# bin/hbase shell create 'test_pseudo', 'cf' hbase(main):002:0> list TABLE test_pseudo 1 row(s) in 0.2130 seconds => ["test_pseudo"]
标签:io java ar 文件 art sp on c html
原文地址:http://blog.csdn.net/jameshadoop/article/details/39342223