Datanode process not running in Hadoop

前端 未结 30 2302
慢半拍i
慢半拍i 2020-12-04 09:02

I set up and configured a multi-node Hadoop cluster using this tutorial.

When I type in the start-all.sh command, it shows all the processes initializing properly as

30条回答
  •  南方客
    南方客 (楼主)
    2020-12-04 09:08

    Run Below Commands in Line:-

    1. stop-all.sh (Run Stop All to Stop all the hadoop process)
    2. rm -r /usr/local/hadoop/tmp/ (Your Hadoop tmp directory which you configured in hadoop/conf/core-site.xml)
    3. sudo mkdir /usr/local/hadoop/tmp (Make the same directory again)
    4. hadoop namenode -format (Format your namenode)
    5. start-all.sh (Run Start All to start all the hadoop process)
    6. JPS (It will show the running processes)

提交回复
热议问题