Changes between Version 25 and Version 26 of MR_manual


Ignore:
Timestamp:
Sep 2, 2008, 2:25:07 PM (16 years ago)
Author:
waue
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MR_manual

    v25 v26  
    171171  export JAVA_HOME=/usr/lib/jvm/java-6-sun
    172172}}}
    173     * 如果有要跑一個遠端的HDFS,而希望可以用hbase連接
     173    * 用hbase連接hadoop DFS
    174174      * 編輯 conf/hbase-site.xml檔案,如下
    175 {{{
    176 $ vi conf/hbase-site.xml
     175
     176{{{
    177177<configuration>
     178  <property>
     179      <name>hbase.master</name>
     180      <value>localhost:60000</value>
     181  </property>
     182  <property>
     183      <name>hbase.master.info.bindAddress</name>
     184      <value>localhost</value>
     185      <description>The address for the hbase master web UI</description>
     186  </property>
     187<property>
     188   <name>hbase.regionserver.info.bindAddress</name>
     189   <value>localhost</value>
     190   <description>The address for the hbase regionserver web UI
     191  </description>
     192</property>
    178193  <property>
    179194     <name>hbase.rootdir</name>
    180195     <value>file:///tmp/hbase-${user.home}/hbase</value>
    181      <value>hdfs://cloud1:9000/hbase</value>
     196     <value>hdfs://localhost:9000/hbase</value>
    182197     <description>
    183198         The directory shared by region servers.
     
    186201  </property>
    187202</configuration>
     203
    188204}}}
    189205      * 編輯 conf/hbase-site.xml檔案,如下