Default Namenode port of HDFS is 50070.But I have

2019-01-10 08:05发布

问题:

When I setup the hadoop cluster, I read the namenode runs on 50070 and I set up accordingly and it's running fine.

But in some books I have come across name node address :

hdfs://localhost:9000/

or

hdfs://localhost:8020

What exactly is the proper number to set the port of namenode?

回答1:

The default address of namenode web UI is http://localhost:50070/. You can open this address in your browser and check the namenode information.

The default address of namenode server is hdfs://localhost:8020/. You can connect to it to access HDFS by HDFS api. The is the real service address.



回答2:

The default Hadoop ports are as follows: (HTTP ports, they have WEB UI):

Daemon                   Default Port  Configuration Parameter
-----------------------  ------------ ----------------------------------
Namenode                 50070        dfs.http.address
Datanodes                50075        dfs.datanode.http.address
Secondarynamenode        50090        dfs.secondary.http.address
Backup/Checkpoint node?  50105        dfs.backup.http.address
Jobracker                50030        mapred.job.tracker.http.address
Tasktrackers             50060        mapred.task.tracker.http.address

Internally, Hadoop mostly uses Hadoop IPC, which stands for Inter Process Communicator, to communicate amongst servers. The following table presents the ports and protocols that Hadoop uses. This table does not include the HTTP ports mentioned above.

Daemon      Default Port        Configuration Parameter     
------------------------------------------------------------
Namenode    8020                fs.default.name         
Datanode    50010               dfs.datanode.address        
Datanode    50020               dfs.datanode.ipc.address                                    
Backupnode  50100               dfs.backup.address          

check out this link For more info: http://blog.cloudera.com/blog/2009/08/hadoop-default-ports-quick-reference/



回答3:

That is because default is different for different hadoop configurations and distributions. We can always configure port by changing fs.default.name or fs.defaultFS properties as below in core-site.xml

<configuration>
 <property>
     <name>fs.default.name</name>
     <value>hdfs://localhost:9000</value>
 </property>
</configuration>

For Hadoop 1.0.4 if I dont mention port number like below

<value>hdfs://localhost</value>

then default port taken is 8020. But for some of the version like .20 i read it is 9000. So it is dependent on the version of hadoop you are using.

But all the configuration and distributation are using 50070 as standard port number for HDFS ui.



回答4:

To access Hadoop WEB UI , you need to type http://localhost:50075/ though your core-site.xml is having http://localhost:9000 because it is for hdfs requests and 50075 is the default port for WEB UI.



回答5:

50070 is the default UI port for namenode . while 8020/9000 is the Inter Process Communicator port (IPC) for namenode.

Reference to IPC port : https://en.wikipedia.org/wiki/Inter-process_communication



回答6:

50070 is default UI port of Namenode for http. for https its 50470. 9000 is the IPC port(Inter Process Communicator). If you click on localhost:50070, you can see namenode configurations with an overview 9000 (active) and on localhost:9000 you will get message: "It looks like you are making an HTTP request to a Hadoop IPC port. This is not the correct port for the web interface on this daemon." required for file system metadata operations.



回答7:

9000 is the default HDFS service port.This does not have a web UI.50070 is the default NameNode web UI port (Although, in hadoop 3.0 onwards 50070 is updated to 9870)



标签: hadoop hdfs