Unable to start a node manager on master

前端 未结 2 1353
余生分开走
余生分开走 2020-12-17 04:23

I am setting up a Hadoop YARN cluster and I am using a machine as both a master and a slave. When I start the YARN using the following command, it starts the nodemanager on

相关标签:
2条回答
  • 2020-12-17 05:09

    Under the default configuration that Hadoop ships, port 8040 is the port that the NodeManager uses for the localizer. This is basically a server endpoint responsible for bringing the files required to run a container onto the local node. (For example, this can be a MapReduce job's jar file or distributed cache files.)

    Assuming that there is another server on the machine (here shown as Ampify) legitimately bound to port 8040, and you don't want to stop that service, then it is possible to reconfigure the port used by the NodeManager for the localizer. Set property yarn.nodemanager.localizer.address in your yarn-site.xml file. This is documented here:

    http://hadoop.apache.org/docs/r2.4.1/hadoop-yarn/hadoop-yarn-common/yarn-default.xml

    Pulling that from the XML source in the Hadoop tree, here is the documentation for the property:

    <property>
      <description>Address where the localizer IPC is.</description>
      <name>yarn.nodemanager.localizer.address</name>
      <value>${yarn.nodemanager.hostname}:8040</value>
    </property>
    
    0 讨论(0)
  • 2020-12-17 05:15

    Above error means, you are trying to start a process on 8040, which is already occupied by another instance.

    To get rid of this error, you need to kill the process which is currently listening to port 8040. Your lsof output says pid is 28021. kill the process using the following command and start again

    kill -9 28021
    
    0 讨论(0)
提交回复
热议问题