Author: cnauroth Date: Thu Feb 13 19:55:47 2014 New Revision: 1568021 URL: http://svn.apache.org/r1568021 Log: HDFS-5941. Merging change r1568019 from trunk to branch-2.
Modified: hadoop/common/branches/branch-2/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt hadoop/common/branches/branch-2/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/hdfs-default.xml Modified: hadoop/common/branches/branch-2/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt?rev=1568021&r1=1568020&r2=1568021&view=diff ============================================================================== --- hadoop/common/branches/branch-2/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt (original) +++ hadoop/common/branches/branch-2/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt Thu Feb 13 19:55:47 2014 @@ -94,6 +94,10 @@ Release 2.4.0 - UNRELEASED (Haohui Mai via brandonli) 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 Modified: hadoop/common/branches/branch-2/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/hdfs-default.xml URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/hdfs-default.xml?rev=1568021&r1=1568020&r2=1568021&view=diff ============================================================================== --- hadoop/common/branches/branch-2/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/hdfs-default.xml (original) +++ hadoop/common/branches/branch-2/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/hdfs-default.xml Thu Feb 13 19:55:47 2014 @@ -97,6 +97,14 @@ </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> <name>dfs.datanode.address</name> <value>0.0.0.0:50010</value> <description> @@ -1310,7 +1318,16 @@ <name>dfs.journalnode.http-address</name> <value>0.0.0.0:8480</value> <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. </description> </property>