溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

HBase安裝

發(fā)布時(shí)間:2020-07-27 01:39:40 來源:網(wǎng)絡(luò) 閱讀:968 作者:q595754733 欄目:關(guān)系型數(shù)據(jù)庫


----------

<configuration>
	<property>
    <name>hbase.rootdir</name>
    <value>hdfs://hadoop-senior.huiyunltd.com:8020/hbase</value>
  </property>
  <property>
    <name>hbase.cluster.distributed</name>
    <value>true</value>
  </property>
  <property>
    <name>hbase.zookeeper.quorum</name>
    <value>hadoop-senior.huiyunltd.com</value>
  </property>
</configuration>



-------------

[huiyunltd@hadoop-senior ~]$ /opt/modules/hadoop-2.5.0/sbin/start-dfs.sh

http://hadoop-senior.huiyunltd.com:50070

[huiyunltd@hadoop-senior ~]$ /opt/modules/hadoop-2.5.0/sbin/start-yarn.sh

http://hadoop-senior.huiyunltd.com:8088

[huiyunltd@hadoop-senior ~]$ /opt/modules/hbase-0.98.6-hadoop2/bin/start-hbase.sh

http://hadoop-senior.huiyunltd.com:60010

[huiyunltd@hadoop-senior ~]$ jps
2988 HQuorumPeer
3251 Jps
1984 NameNode
2522 NodeManager
2261 SecondaryNameNode
2424 ResourceManager
3046 HMaster
3139 HRegionServer
2078 DataNode

---

[huiyunltd@hadoop-senior ~]$ /opt/modules/hbase-0.98.6-hadoop2/bin/stop-hbase.sh
[huiyunltd@hadoop-senior ~]$ jps
1984 NameNode
2522 NodeManager
3985 Jps
2261 SecondaryNameNode
2424 ResourceManager
2078 DataNode

--

[huiyunltd@hadoop-senior ~]$ /opt/modules/hbase-0.98.6-hadoop2/bin/hbase shell

--

find /opt/modules/hadoop-2/share/hadoop -name "$Line" | xargs -i cp {} ./  

done  

find /opt/modules/hadoop-2.5.0/share/hadoop -name "hadoop*.jar" | xargs -i cp {} /opt/softwares/jar/

hadoop-client

find /opt/modules/hadoop-2.5.0/hadoop-client


替換JAR包

[huiyunltd@hadoop-senior ~]$ rm -rf /opt/modules/hbase-0.98.6-hadoop2/lib/hadoop*.jar
[huiyunltd@hadoop-senior ~]$ cp /opt/softwares/hbjar/* /opt/modules/hbase-0.98.6-hadoop2/lib/

help

create 'user','info'



describe 'user'


help 'put'


put 'user','1001','info:name','grace'

put 'user','1001','info:age','32'



三種查詢方式

rowkey

hbase(main):008:0> get 'user','1001'

hbase(main):009:0> get 'user','1001','info:age'

范圍查詢

scan range

hbase(main):010:0> scan 'user'

全表掃描


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI