在不同的機器上配置secondarynamenode
阿新 • • 發佈:2018-11-01
只需要修改namenode那臺主機的配置檔案即可:
修改hdfs-site.xml:
<configuration>
<property>
<name>dfs.replication</name>
<value>3</value>
</property>
<property>
<name>dfs.http.address</name>
<value>hadoop102:50070</value>
<description>The address and the base port where the dfs namenode web ui will listen on.If the port is 0 then the server will start on a free port.</description>
</property>
<property>
<name>dfs.namenode.secondary.http-address</name>
<value>hadoop104:50090</value>
</property>
</configuration>
其中hadoop102是namenode那臺主機,hadoop104是配置有secondarynamenode的那臺主機。
然後在配有namenode那臺主機上輸入start-dfs.sh,發現hadoop104的那臺機器上面的secondarynamenode也啟動了。