Upgrading HDP Manually
Also available as:
PDF
loading table of contents...

Start YARN/MapReduce Services

To start YARN, run commands as a YARN user. To start MapReduce, run commands as a MapReduce user.

  1. Start the ResourceManager on all your ResourceManager hosts.

    su -l yarn -c "/usr/hdp/current/hadoop-yarn-resourcemanager/sbin/yarn-daemon.sh start resourcemanager" 
                    
    ps -ef | grep -i resourcemanager
  2. Start the TimelineServer on your TimelineServer host.

    su - yarn -c "/usr/hdp/current/hadoop-yarn-tinelineserver/sbin/yarn-daemon.sh start timelineserver"
    ps -ef | grep -i timelineserver
  3. Start the NodeManager on all your NodeManager hosts.

    su -l yarn -c "/usr/hdp/current/hadoop-yarn-nodemanager/sbin/yarn-daemon.sh start nodemanager"
                    
    ps -ef | grep -i nodemanager
  4. To start MapReduce, run the following commands:

    su -l mapred -c "/usr/hdp/current/hadoop-mapreduce-historyserver/sbin/mr-jobhistory-daemon.sh start historyserver"
                    
    ps -ef | grep -i jobhistoryserver