Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

SERVICE PORTS NUMBER DESCRIPTION

NameNode WebUI 50070 Web UI to look at


current status of
HDFS, explore file
system
DataNode 50075 DataNode WebUI to
access the status, logs,
etc, and file data
operations when using
webhdfs or hftp
Secondary 50090 Checkpoint for
NameNode NameNode metadata

All hdfs-related configuration is done by adding and updating the properties in


the hdfs_ste.xml
File that is found in the conf folder under the Hadoop installation folder
The following are the different properties that are part of the hdfs-site.xml file:
1) dfs.namenode.servicerpc-addresss:

Code: <property>
<name>dfs.namenode.servicercp-addresss</name>
<value>node1.hcluster:8022</value>
</property>
2) dfs.namenode.http-address:
Code: <property>
<name>dfs.namenode.http-address</name>
<value>node1.hcluster:50070</value>
</property>
3) dfs.replication:
Code: <property>
<name>dfs.replication</name>
<value>3</value>
</property>
Dfs.blocksize:
Code: <property>
<name>dfs.blocksize</name>
<value>134217728</value>
</property>

You might also like