Changes between Version 25 and Version 26 of MR_manual
- Timestamp:
- Sep 2, 2008, 2:25:07 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MR_manual
v25 v26 171 171 export JAVA_HOME=/usr/lib/jvm/java-6-sun 172 172 }}} 173 * 如果有要跑一個遠端的HDFS,而希望可以用hbase連接173 * 用hbase連接hadoop DFS 174 174 * 編輯 conf/hbase-site.xml檔案,如下 175 {{{ 176 $ vi conf/hbase-site.xml 175 176 {{{ 177 177 <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> 178 193 <property> 179 194 <name>hbase.rootdir</name> 180 195 <value>file:///tmp/hbase-${user.home}/hbase</value> 181 <value>hdfs:// cloud1:9000/hbase</value>196 <value>hdfs://localhost:9000/hbase</value> 182 197 <description> 183 198 The directory shared by region servers. … … 186 201 </property> 187 202 </configuration> 203 188 204 }}} 189 205 * 編輯 conf/hbase-site.xml檔案,如下