diff --git a/hadoop-yarn-project/CHANGES.txt b/hadoop-yarn-project/CHANGES.txt
index 5256a5d461..8713ca9c10 100644
--- a/hadoop-yarn-project/CHANGES.txt
+++ b/hadoop-yarn-project/CHANGES.txt
@@ -117,6 +117,9 @@ Release 2.0.5-beta - UNRELEASED
YARN-381. Improve fair scheduler docs. (Sandy Ryza via tomwhite)
+ YARN-458. YARN daemon addresses must be placed in many different configs.
+ (sandyr via tucu)
+
OPTIMIZATIONS
BUG FIXES
diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml
index ed99f9a799..f873ff9d05 100644
--- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml
+++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml
@@ -58,10 +58,16 @@
+
+ The hostname of the RM.
+ yarn.resourcemanager.hostname
+ 0.0.0.0
+
+
The address of the applications manager interface in the RM.
yarn.resourcemanager.address
- 0.0.0.0:8032
+ ${yarn.resourcemanager.hostname}:8032
@@ -84,7 +90,7 @@
The address of the scheduler interface.
yarn.resourcemanager.scheduler.address
- 0.0.0.0:8030
+ ${yarn.resourcemanager.hostname}:8030
@@ -96,12 +102,12 @@
The address of the RM web application.
yarn.resourcemanager.webapp.address
- 0.0.0.0:8088
+ ${yarn.resourcemanager.hostname}:8088
yarn.resourcemanager.resource-tracker.address
- 0.0.0.0:8031
+ ${yarn.resourcemanager.hostname}:8031
@@ -119,7 +125,7 @@
The address of the RM admin interface.
yarn.resourcemanager.admin.address
- 0.0.0.0:8033
+ ${yarn.resourcemanager.hostname}:8033
@@ -285,10 +291,16 @@
+
+ The hostname of the NM.
+ yarn.nodemanager.hostname
+ 0.0.0.0
+
+
The address of the container manager in the NM.
yarn.nodemanager.address
- 0.0.0.0:0
+ ${yarn.nodemanager.hostname}:0
@@ -381,7 +393,7 @@
Address where the localizer IPC is.
yarn.nodemanager.localizer.address
- 0.0.0.0:8040
+ ${yarn.nodemanager.hostname}:8040
@@ -512,7 +524,7 @@
NM Webapp address.
yarn.nodemanager.webapp.address
- 0.0.0.0:8042
+ ${yarn.nodemanager.hostname}:8042