我是靠谱客的博主 糊涂彩虹,最近开发中收集的这篇文章主要介绍[云原生专题-27]:K8S - 问题解决 - The connection to the server localhost:8080 was refused - did you specify,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
1. 现象:
安装K8S mananger后,执行kubectl get nodes始终出错
[root@k8s-master1 sysctl.d]# kubectl get nodes
The connection to the server localhost:8080 was refused - did you specify the right host or port?
2. 原因分析
kubernetes master没有与本机绑定,集群初始化的时候没有绑定,导致kubectl 无法识别master是自身。
3. 解决之道
此时设置在本机的环境变量即可解决问题。
4. 解决过程
步骤一:设置环境变量
具体根据情况,此处记录linux设置该环境变量
方式一:编辑文件设置
vim /etc/profile
在底部增加新的环境变量 export KUBECONFIG=/etc/kubernetes/admin.conf
方式二:直接追加文件内容
echo "export KUBECONFIG=/etc/kubernetes/admin.conf" >> /etc/profile
步骤二:使生效
source /etc/profile
步骤三:验证
[root@k8s-master1 sysctl.d]# kubectl get nodes
NAME
STATUS
ROLES
AGE
VERSION
k8s-master1
Ready
control-plane,master
4m35s
v1.23.3
最后
以上就是糊涂彩虹为你收集整理的[云原生专题-27]:K8S - 问题解决 - The connection to the server localhost:8080 was refused - did you specify的全部内容,希望文章能够帮你解决[云原生专题-27]:K8S - 问题解决 - The connection to the server localhost:8080 was refused - did you specify所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复