首页 > Web开发 > 详细

Kubernets的DashBoard安装出现telnet connection refused的问题

时间:2019-02-13 19:12:59      阅读:561      评论:0      收藏:0      [点我收藏+]

Kubernetes官网上面的DashBoard安装是很简单的。问题是花了一天时间还没有搞完

kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v1.10.1/src/deploy/recommended/kubernetes-dashboard.yaml
kubectl proxy

当kubectl proxy启动后,奇怪是telnet localhost 8001是通的。 但是外网telnet x.x.x.x 8001,connection refused

一开始还以为是防火墙的原因。后面把防火墙关了,还是一样的。

后面花了很长时间,原来是

netstat –anpt 显示

技术分享图片

Local Address是 127.0.0.1:8001可以访问。

所有启动kubectl proxy用下面:

kubectl proxy --address=0.0.0.0 --accept-hosts=^*$&

说明:

--address=0.0.0.0‘: 让Local Address变成:::8001,所有ip都可以访问。

--accept-hosts=^*$‘: 让所有ip可以访问,不加这个会出现Forbidden。

&:后台运行


最后,终于出现这个界面了

技术分享图片



参考:

1)https://github.com/kubernetes/dashboard

2)https://kubernetes.io/docs/tasks/access-application-cluster/web-ui-dashboard/

3)https://www.cnblogs.com/lemon-flm/p/7396536.html

Kubernets的DashBoard安装出现telnet connection refused的问题

原文:https://www.cnblogs.com/cay914/p/10371439.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!