From 5282be9a86124051b304bc840e48de00efe3b033 Mon Sep 17 00:00:00 2001 From: Andrew Smith Date: Sun, 30 Nov 2014 11:14:24 +0000 Subject: [PATCH] Change nginx bind port so it doesn't conflict Currently if you follow this guide when it comes to starting nginx you get this error: Error starting userland proxy: listen tcp 0.0.0.0:8080 Because Kubernetes is already listening on :8080, so you can't bind nginx to :8080, so I've changed it to :8081 --- docs/getting-started-guides/locally.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started-guides/locally.md b/docs/getting-started-guides/locally.md index 87867226cc4..6a910b6323d 100644 --- a/docs/getting-started-guides/locally.md +++ b/docs/getting-started-guides/locally.md @@ -45,7 +45,7 @@ You can now use any of the cluster/kubecfg.sh commands to interact with your loc cluster/kubecfg.sh list /pods cluster/kubecfg.sh list /services cluster/kubecfg.sh list /replicationControllers -cluster/kubecfg.sh -p 8080:80 run dockerfile/nginx 1 myNginx +cluster/kubecfg.sh -p 8081:80 run dockerfile/nginx 1 myNginx ## begin wait for provision to complete, you can monitor the docker pull by opening a new terminal