From c734fca715a40ec916f8a6192f8ddb793700216f Mon Sep 17 00:00:00 2001 From: Kirill Kolyshkin Date: Tue, 2 Feb 2016 18:25:56 -0800 Subject: [PATCH] centos_manual_config.md: fix etcd client port As per https://github.com/coreos/etcd/blob/master/Documentation/configuration.md > The official etcd ports are 2379 for client requests, and 2380 for peer > communication. Some legacy code and documentation still references > ports 4001 and 7001, but all new etcd use and discussion should > adopt the assigned ports. Indeed, etcd-2.1.1-2.el7.x86_64 as comes in centos 7 "extras" repo is configured to listen to clients at port 2379, not 4001. --- docs/getting-started-guides/centos/centos_manual_config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started-guides/centos/centos_manual_config.md b/docs/getting-started-guides/centos/centos_manual_config.md index 8a0a575ffce..1a946c056cf 100644 --- a/docs/getting-started-guides/centos/centos_manual_config.md +++ b/docs/getting-started-guides/centos/centos_manual_config.md @@ -88,7 +88,7 @@ echo "192.168.121.9 centos-master ```sh # Comma separated list of nodes in the etcd cluster -KUBE_ETCD_SERVERS="--etcd-servers=http://centos-master:4001" +KUBE_ETCD_SERVERS="--etcd-servers=http://centos-master:2379" # logging to stderr means we get it in the systemd journal KUBE_LOGTOSTDERR="--logtostderr=true"