강좌 & 팁
ssh 설치와 rsync 설치가 필요합니다.
ssh 설치
$sudo apt-get install ssh
rsync 설치
sudo apt-get install rsync
하둡 폴더로 이동 합니다.
각 파일에 다음 구문을 추가 합니다.
$ vi conf/core-site.xml
<configuration>
<property>
<name>fs.default.name</name>
<value>hdfs://localhost:9000</value>
</property>
</configuration>
$ vi conf/hdfs-site.xml
< configuration>
< property>
< name>dfs.replication</name>
< value>1</value>
< /property>
< /configuration>
$ vi conf/mapred-site.xml
<configuration>
<property>
<name>mapred.job.tracker</name>
<value>localhost:9001</value>
</property>
</configuration>
웹에서 확인 할 수 있습니다.
NameNode - http://localhost:50070/
JobTracker - http://localhost:50030/
다음에는 MapReduce Tutorial 을 해 보겠습니다.