#1.启动hadoop start-all.sh #2.查看进程 jps #3.启动zookeeper(需要在三台中分别启动) zkServer.sh start #4.查看zk状态 zkServer.sh status
tar -zxvf hbase-1.4.6-bin.tar.gz -C /usr/local/soft/
vim /etc/profile #1.追加以下内容 export HBASE_HOME=/usr/local/soft/hbase-1.4.6 export PATH=$HBASE_HOME/bin:$PATH #2.刷新 source /etc/profile
#1.进入hbase的conf目录下 cd /usr/local/soft/hbase-1.4.6/conf/
vim hbase-env.sh #追加以下内容 export JAVA_HOME=/usr/local/soft/jdk1.8.0_171 #关闭默认zk配置 export HBASE_MANAGES_ZK=false
vim hbase-site.xml #追加以下内容 <configuration> <property> <name>hbase.rootdir</name> <value>hdfs://master:9000/hbase</value> </property> <property> <name>hbase.cluster.distributed</name> <value>true</value> </property> <property> <name>hbase.zookeeper.quorum</name> <value>node1,node2,master</value> </property> </configuration>
vim regionservers #追加以下内容 node1 node2
scp -r hbase-1.4.6/ node1:`pwd` scp -r hbase-1.4.6/ node2:`pwd`
start-hbase.sh
jps