安装前准备
hadoop安装
zookeeper安装
安装步骤
export HBASE_HOME=/usr/local/hbase-2.0.5 export PATH=$PATH:$HBASE_HOME/bin
$ source /etc/profile
(2)修改hbase-site.xml hbase的核心配置文件
<?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="configuration.xsl"?> <configuration> <!-- 指定zk的地址,多个用逗号分隔 --> <property> <name>hbase.zookeeper.quorum</name> <value>example1,example2,example3</value> </property> <!-- ZooKeeper的zoo.conf中的配置 --> <property> <name>hbase.zookeeper.property.dataDir</name> <value>/export/zookeeper</value> </property> <!-- hbase在hdfs上的存储路径 ip:port要和hadoop/core-site.xml中的fs.defaultFS保持一致 --> <property> <name>hbase.rootdir</name> <value>hdfs://localhost:9000/hbase</value> </property> <!-- 指定hbase为分布式的 --> <property> <name>hbase.cluster.distributed</name> <value>true</value> </property> </configuration>
(3)修改regionservers文件,从节点的主机名
hadoop01 hadoop02 hadoop03
hadoop02
原文:https://www.cnblogs.com/caoxb/p/11351849.html