AI智能
改变未来

【Linux】install hbase on centos 7.5

[root@wallet01 ~]# useradd hbase[root@wallet01 ~]# passwd hbase[root@wallet01 ~]# groupadd supergroup[root@wallet01 ~]# groupmems -g supergroup -a hbase[root@wallet01 ~]# tar zxvf hbase-1.4.13-bin.tar.gz[root@wallet01 ~]# mv hbase-1.4.13 hbase[root@wallet01 ~]# chown -R hbase:hbase hbase[root@wallet01 ~]# mv hbase /usr/local/[root@wallet01 ~]# su - hbase[hbase@wallet01 ~]$ vim .bash_profileexport JAVA_HOME=/usr/local/jdk1.7.0_80export PATH=$PATH:$JAVA_HOME/binexport HBASE_HOME=/usr/local/hbaseexport PATH=$PATH:$HBASE_HOME/bin[hbase@wallet01 ~]$ source .bash_profile[hbase@wallet01 ~]$ cd /usr/local/hbase/conf/[hbase@wallet01 conf]$ vim hbase-env.sh export HBASE_CLASSPATH=/usr/local/hadoop/etc/hadoopexport HBASE_LOG_DIR=/usr/local/hbase/logsexport HBASE_MANAGES_ZK=false[hbase@wallet01 conf]$ vim hbase-site.xml<configuration>    <property>        <name>hbase.cluster.distributed</name>        <value>true</value>    </property>    <property>        <name>hbase.rootdir</name>        <value>hdfs://wallet01:8020/hbase</value>    </property>    <property>        <name>hbase.zookeeper.quorum</name>        <value>wallet01,wallet02,wallet03</value>    </property></configuration>[hbase@wallet01 ~]$ mkdir /usr/local/hbase/logs[hbase@wallet01 ~]$ hbase-daemon.sh start masterrunning master, logging to /usr/local/hbase/logs/hbase-hbase-master-wallet01.out
[root@wallet02 ~]# useradd hbase[root@wallet02 ~]# passwd hbase[root@wallet02 ~]# groupadd supergroup[root@wallet02 ~]# groupmems -g supergroup -a hbase[root@wallet02 ~]# tar zxvf hbase-1.4.13-bin.tar.gz[root@wallet02 ~]# mv hbase-1.4.13 hbase[root@wallet02 ~]# chown -R hbase:hbase hbase[root@wallet02 ~]# mv hbase /usr/local/[root@wallet02 ~]# su - hbase[hbase@wallet02 ~]$ vim .bash_profileexport JAVA_HOME=/usr/local/jdk1.7.0_80export PATH=$PATH:$JAVA_HOME/binexport HBASE_HOME=/usr/local/hbaseexport PATH=$PATH:$HBASE_HOME/bin[hbase@wallet02 ~]$ source .bash_profile[hbase@wallet02 ~]$ cd /usr/local/hbase/conf/[hbase@wallet02 conf]$ vim hbase-env.sh export HBASE_CLASSPATH=/usr/local/hadoop/etc/hadoopexport HBASE_LOG_DIR=/usr/local/hbase/logsexport HBASE_MANAGES_ZK=false[hbase@wallet02 conf]$ vim hbase-site.xml<configuration>    <property>        <name>hbase.cluster.distributed</name>        <value>true</value>    </property>    <property>        <name>hbase.rootdir</name>        <value>hdfs://wallet01:8020/hbase</value>    </property>    <property>        <name>hbase.zookeeper.quorum</name>        <value>wallet01,wallet02,wallet03</value>    </property></configuration>[hbase@wallet02 ~]$ mkdir /usr/local/hbase/logs[hbase@wallet02 ~]$ hbase-daemon.sh start regionserverrunning regionserver, logging to /usr/local/hbase/logs/hbase-hbase-regionserver-wallet02.out
[root@wallet03 ~]# useradd hbase[root@wallet03 ~]# passwd hbase[root@wallet03 ~]# groupadd supergroup[root@wallet03 ~]# groupmems -g supergroup -a hbase[root@wallet03 ~]# tar zxvf hbase-1.4.13-bin.tar.gz[root@wallet03 ~]# mv hbase-1.4.13 hbase[root@wallet03 ~]# chown -R hbase:hbase hbase[root@wallet03 ~]# mv hbase /usr/local/[root@wallet03 ~]# su - hbase[hbase@wallet03 ~]$ vim .bash_profileexport JAVA_HOME=/usr/local/jdk1.7.0_80export PATH=$PATH:$JAVA_HOME/binexport HBASE_HOME=/usr/local/hbaseexport PATH=$PATH:$HBASE_HOME/bin[hbase@wallet03 ~]$ source .bash_profile[hbase@wallet03 ~]$ cd /usr/local/hbase/conf/[hbase@wallet03 conf]$ vim hbase-env.sh export HBASE_CLASSPATH=/usr/local/hadoop/etc/hadoopexport HBASE_LOG_DIR=/usr/local/hbase/logsexport HBASE_MANAGES_ZK=false[hbase@wallet03 conf]$ vim hbase-site.xml<configuration>    <property>        <name>hbase.cluster.distributed</name>        <value>true</value>    </property>    <property>        <name>hbase.rootdir</name>        <value>hdfs://wallet01:8020/hbase</value>    </property>    <property>        <name>hbase.zookeeper.quorum</name>        <value>wallet01,wallet02,wallet03</value>    </property></configuration>[hbase@wallet03 ~]$ mkdir /usr/local/hbase/logs[hbase@wallet03 ~]$ hbase-daemon.sh start regionserverrunning regionserver, logging to /usr/local/hbase/logs/hbase-hbase-regionserver-wallet03.out

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » 【Linux】install hbase on centos 7.5