Hadoopクラスタの起動設定

3 台のマシンが
hadoop01
から hadoop02
から hadoop03 をマスターします

1. Hadoop解凍パッケージ

  • 修正core-site.xml
    cd hadoop-2.7.4/etc/hadoop/
    vim core-site.xml
<configuration>
          <!-- 指定NameNode的地址 -->
          <property>
                  <name>fs.defaultFS</name>
                <value>hdfs://hadoop01:9000</value>
          </property>
          <!-- 指定hadoop数据的存储目录 -->
          <property>
                  <name>hadoop.tmp.dir</name>
                <value>/root/export/servers/hadoop-2.7.4/tmp</value>
          </property>
</configuration>
  • hdfs-site.xml を変更する
    vim hdfs-site.xml
<configuration>
	<!-- 指定副本数量 -->
	<property> 
          <name>dfs.replication</name>
          <value>3</value>
     </property>
	<!-- web端访问地址 -->
    <property>
           <name>dfs.namenode.secondary.http-address</name>
           <value>hadoop02:50090</value>
     </property>
</configuration>
  • 修正mapred-site.xml
    cp mapred-site.xml.template mapred-site.xml
    vim mapred-site.xml
<configuration>
        <!-- 指定MapReduce程序运行在Yarn上 -->
          <property>
                <name>mapreduce.framework.name</name>
                <value>yarn</value>
          </property>
</configuration>
  • 修正yarn-site.xml
    cp mapred-site.xml.template mapred-site.xml
    vim mapred-site.xml
<configuration>
        <!-- 指定MR走shuffle -->
        <property>
                  <name>yarn.nodemanager.aux-services</name>
                 <value>mapreduce_shuffle</value>
          </property>
        <!-- 指定ResourceManager的地址-->
          <property>
                  <name>yarn.resourcemanager.hostname</name>
                 <value>hadoop01</value>
          </property>
</configuration>

予防

  • ホスト名を追加
vim slaves
hadoop01
hadoop02
hadoop03
  • クラスターを初めて起動する前にフォーマットが必要です
 hdfs namenode -format

Hadoop の記事を継続的に更新するには、
Hadoop をダウンロードしてインストールします。

おすすめ

転載: blog.csdn.net/MortShi/article/details/131596110