Changes between Version 21 and Version 22 of jazz/Hadoop_Lab1
- Timestamp:
- Mar 24, 2009, 9:34:26 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
jazz/Hadoop_Lab1
v21 v22 17 17 18 18 * Hadooper 擁有sudoer 的權限 19 20 -----21 * 寫給我看的:22 23 每台電腦都要增加此使用者24 {{{25 $ sudo addgroup hadoop26 $ sudo adduser --ingroup hadoop hadooper27 }}}28 測試不設定.bashrc 的java home有無關係29 -------30 19 31 20 == step 1. 安裝java == … … 89 78 90 79 {{{ 91 /opt/hadoop #cat > conf/hadoop-site.xml << EOF80 /opt/hadoop$ cat > conf/hadoop-site.xml << EOF 92 81 }}} 93 82 … … 100 89 <name>fs.default.name</name> 101 90 <value>hdfs://localhost:9000</value> 102 <description> 103 The name of the default file system. Either the literal string 104 "local" or a host:port for NDFS. 105 </description> 91 <description> default file system for NDFS </description> 106 92 </property> 107 93 <property> 108 94 <name>mapred.job.tracker</name> 109 95 <value>localhost:9001</value> 110 <description> 111 The host and port that the MapReduce job tracker runs at. If 112 "local", then jobs are run in-process as a single map and 113 reduce task. 114 </description> 96 <description>The host:port that job tracker runs at.</description> 115 97 </property> 116 98 </configuration> … … 169 151 * [[Image(hadoop_task_tracker.png)]] 170 152 * [[Image(hadoop_dfs_status.png)]] 171 172