Common considerations for building a Hadoop 3.2.0 cluster

Common considerations for building a Hadoop 3.2.0 cluster

One port changes

In version 3.2.0, the namenode page port is 9870 and the datanode management port is 8088, so these two ports need to be opened for web page access.

But there is no YARN_RESOURCEMANAGER_USER defined. Aborting operation

In hadoop-env.sh, you need to configure not only java-home but also the following user variables:

export JAVA_HOME=/usr/local/jdk/jdk1.8.0_191
export HDFS_NAMENODE_USER=root
export HDFS_DATANODE_USER=root
export HDFS_SECONDARYNAMENODE_USER=root
export YARN_RESOURCEMANAGER_USER=root
export YARN_NODEMANAGER_USER=root

3.2.0 version mapred-site.xml file configuration needs to add mapreduce.application.classpath attribute

<property> <name>mapreduce.application.classpath</name> <value> /usr/local/hadoop3/etc/hadoop, /usr/local/hadoop3/share/hadoop/common/*, /usr/local/hadoop3/share/hadoop/common/lib/*, /usr/local/hadoop3/share/hadoop/hdfs/*, /usr/local/hadoop3/share/hadoop/hdfs/lib/*, /usr/local/hadoop3/share/hadoop/mapreduce/*, /usr/local/hadoop3/share/hadoop/mapreduce/lib/*, /usr/local/hadoop3/share/hadoop/yarn/*, /usr/local/hadoop3/share/hadoop/yarn/lib/* </value> </property>

Four salave files are programmed into workers files, and the content configuration is the same

5. The startup is successful without error, but the most annoying problem is that the number of Live Nodes is 0

Solution steps:

First check the datanode log:

If this occurs, it means that there is a problem with the connection configuration. Check the core-site.xml configuration, which is used to configure the communication between datanode and namnode:

At a glance

There is a problem with the connection address configured here

hdfs should be configured as the address of namnode, not the address of datanode. All nodes have the same address. After configuration, restart is successful.

There are also reports online that /etc/hots resolution failed. This is also a reason. Just configure the domain name mapping. The important thing is to first look at the log analysis to find out what the problem is.

Last successful page

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Teach you how to build a Hadoop 3.x pseudo cluster on Tencent Cloud
  • Tutorial diagram of building a Hadoop high-availability cluster based on ZooKeeper
  • Methods and steps for building a Hadoop distributed cluster
  • How to build a Hadoop cluster environment with ubuntu docker
  • Detailed explanation of building hadoop and hbase cluster with docker
  • Detailed explanation of building Ubuntu version of Hadoop cluster
  • Detailed explanation of how to quickly build a Hadoop cluster environment using Docker from scratch
  • Detailed explanation of using docker to build a Hadoop distributed cluster

<<:  MySQL 8.0.22.0 download, installation and configuration method graphic tutorial

>>:  HTML basic structure_Powernode Java Academy

Recommend

jQuery implements navigation bar effect with expansion animation

I designed and customized a navigation bar with a...

Vue virtual Dom to real Dom conversion

There is another tree structure Javascript object...

How to build gitlab on centos6

Preface The original project was placed on the pu...

How to use type enhancement without typingscript

Preface Due to the weak typing of JS, loose writi...

MySQL 8.0.11 Installation Tutorial under Windows

This article records the installation tutorial of...

How to create a new user in CentOS and enable key login

Table of contents Create a new user Authorize new...

HTML (css style specification) must read

CSS style specifications 1. Class Selector 2. Tag...

In-depth understanding of the life cycle comparison between Vue2 and Vue3

Table of contents Cycle comparison usage Summariz...

One-click installation of MySQL 5.7 and password policy modification method

1. One-click installation of Mysql script [root@u...

How to modify port 3389 of Windows server 2008 R2 remote desktop

The default port number of the Windows server rem...

How to implement gzip compression in nginx to improve website speed

Table of contents Why use gzip compression? nginx...