HDFS-5941. Merging change r1568019 from trunk to branch-2.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1568021 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a6b9cd9862
commit
27c9d8faa7
|
@ -94,6 +94,10 @@ Release 2.4.0 - UNRELEASED
|
||||||
(Haohui Mai via brandonli)
|
(Haohui Mai via brandonli)
|
||||||
|
|
||||||
HDFS-5904. TestFileStatus fails intermittently. (Mit Desai via kihwal)
|
HDFS-5904. TestFileStatus fails intermittently. (Mit Desai via kihwal)
|
||||||
|
|
||||||
|
HDFS-5941. add dfs.namenode.secondary.https-address and
|
||||||
|
dfs.namenode.secondary.https-address in hdfs-default.xml.
|
||||||
|
(Haohui Mai via cnauroth)
|
||||||
|
|
||||||
Release 2.3.1 - UNRELEASED
|
Release 2.3.1 - UNRELEASED
|
||||||
|
|
||||||
|
|
|
@ -96,6 +96,14 @@
|
||||||
</description>
|
</description>
|
||||||
</property>
|
</property>
|
||||||
|
|
||||||
|
<property>
|
||||||
|
<name>dfs.namenode.secondary.https-address</name>
|
||||||
|
<value>0.0.0.0:50091</value>
|
||||||
|
<description>
|
||||||
|
The secondary namenode HTTPS server address and port.
|
||||||
|
</description>
|
||||||
|
</property>
|
||||||
|
|
||||||
<property>
|
<property>
|
||||||
<name>dfs.datanode.address</name>
|
<name>dfs.datanode.address</name>
|
||||||
<value>0.0.0.0:50010</value>
|
<value>0.0.0.0:50010</value>
|
||||||
|
@ -1310,7 +1318,16 @@
|
||||||
<name>dfs.journalnode.http-address</name>
|
<name>dfs.journalnode.http-address</name>
|
||||||
<value>0.0.0.0:8480</value>
|
<value>0.0.0.0:8480</value>
|
||||||
<description>
|
<description>
|
||||||
The address and port the JournalNode web UI listens on.
|
The address and port the JournalNode HTTP server listens on.
|
||||||
|
If the port is 0 then the server will start on a free port.
|
||||||
|
</description>
|
||||||
|
</property>
|
||||||
|
|
||||||
|
<property>
|
||||||
|
<name>dfs.journalnode.https-address</name>
|
||||||
|
<value>0.0.0.0:8481</value>
|
||||||
|
<description>
|
||||||
|
The address and port the JournalNode HTTPS server listens on.
|
||||||
If the port is 0 then the server will start on a free port.
|
If the port is 0 then the server will start on a free port.
|
||||||
</description>
|
</description>
|
||||||
</property>
|
</property>
|
||||||
|
|
Loading…
Reference in New Issue