我是靠谱客的博主 疯狂白开水,最近开发中收集的这篇文章主要介绍执行kubectl错误The connection to the server localhost:8080 was refused,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
今天在node上执行kubectl get pod结果出现报错
[root@cm-server ~]# kubectl get pod
The connection to the server localhost:8080 was refused - did you specify the right host or port?
查阅资料后才知道kubectl命令需要使用kubernetes-admin来运行,而node上并没有admin.conf文件。将master上的admin.conf文件拷贝到node,然后执行一下命令
[root@cm-server ~]# cd /etc/kubernetes/
[root@cm-server kubernetes]# ls
bootstrap-kubelet.conf
kubelet.conf
manifests
pki
[root@cm-server kubernetes]# echo "export KUBECONFIG=/etc/kubernetes/admin.conf" >> ~/.bash_profile
[root@cm-server kubernetes]# source ~/.bash_profile
再次执行kubectl get pod命令就可以使用了。
最后
以上就是疯狂白开水为你收集整理的执行kubectl错误The connection to the server localhost:8080 was refused的全部内容,希望文章能够帮你解决执行kubectl错误The connection to the server localhost:8080 was refused所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复