HBase集群搭建
cetnos1:HMaster(active)
cetnos2:HMaster (standby)
centos4:HRegionServer
centos5:HRegionServer
centos6:HRegionServer
1、安装Zookeeper集群
2、要把hadoop的hdfs-site.xml和core-site.xml 放到hbase/conf下
3、hbase-env.sh中指定JAVA_HOME、使用外部zookper集群
export JAVA_HOME=/usr/java/jdk1.7.0_55 export HBASE_MANAGES_ZK=false
4、修改hbase-site.xml
<configuration> <!-- 指定hbase在HDFS上存储的路径 --> <property> <name>hbase.rootdir</name> <value>hdfs://ns1/hbase</value> </property> <!-- 指定hbase是分布式的 --> <property> <name>hbase.cluster.distributed</name> <value>true</value> </property> <!-- 指定zk的地址,多个用“,”分割 --> <property> <name>hbase.zookeeper.quorum</name> <value>centos4:2181,centos5:2181,centos6:2181</value> </property> </configuration>
5、修改regionservers
centos3 centos4 centos5
6、拷贝hbase到其它节点,centos2、centos4、centos5、centos6
7、启动zookpeer,centos4、centos5、centos6,zkServer.sh start
8、启动hdfs,centos1、centos2,start-dfs.sh
9、centos1上启动hbase,start-hbase.sh
10、centos2启动sandby habse,hbase-daemon.sh start master
11、浏览器查看,192.168.1.201:60010
相关推荐
晨曦之星 2020-08-14
lwb 2020-07-26
eternityzzy 2020-07-19
大而话之BigData 2020-06-16
ITwangnengjie 2020-06-14
gengwx00 2020-06-11
大而话之BigData 2020-06-10
鲸鱼写程序 2020-06-08
needyit 2020-06-04
strongyoung 2020-06-04
WeiHHH 2020-05-30
ITwangnengjie 2020-05-09
gengwx00 2020-05-08
gengwx00 2020-05-09
大而话之BigData 2020-05-06
Buerzhu 2020-05-01
gengwx00 2020-04-30