在不同的机器上配置secondarynamenode

只需要修改namenode那台主机的配置文件即可:

修改hdfs-site.xml:



    dfs.replication
    3


    dfs.http.address
    hadoop102:50070
    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.


    dfs.namenode.secondary.http-address
    hadoop104:50090

其中hadoop102是namenode那台主机,hadoop104是配置有secondarynamenode的那台主机。

然后在配有namenode那台主机上输入start-dfs.sh,发现hadoop104的那台机器上面的secondarynamenode也启动了。

你可能感兴趣的:(hadoop,s)