kubectl命令出现错误“The connection to the server localhost:8080 was refused”

kubectl命令报错 “The connection to the server localhost:8080 was refused - did you specify the right host or port?”

解决方法:
1.将主节点(master)中的“/etc/kubernetes/admin.conf”文件拷贝到从节点相同目录下
2.配置环境变量

echo "export KUBECONFIG=/etc/kubernetes/admin.conf" >> ~/.bash_profile

3.立即生效

source ~/.bash_profile

如果以上方法还不行,可以试一下下面的这个方法,这个方法适用于关机重启以后出现的报错:
输入 systemctl status kubelet 命令查看 kubelet 的情况,发现 kubelet 确实没有启动
kubectl命令出现错误“The connection to the server localhost:8080 was refused”_第1张图片
问题原因:
由于 K8s 必须保持全程关闭交换内存,之前我安装是只是使用 swapoff -a 命令暂时关闭 swap。而机器重启后,swap 还是会自动启用,从而导致 kubelet 无法启动。

解决办法:
(1)首先执行如下命令关闭 swap。

 swapoff -a

(2)接着编辑 /etc/fstab 文件。

vi /etc/fstab

将 /swapfile none swap defaults 0 0 这一行前面加个 # 号将其注释掉。
kubectl命令出现错误“The connection to the server localhost:8080 was refused”_第2张图片
(3)编辑完毕后保存退出。查看kubelet运行状态,显示正常运行。这样机器重启后 kubelet 也可以正常自动启动了。

kubectl命令出现错误“The connection to the server localhost:8080 was refused”_第3张图片
在这里插入图片描述
转载自(https://www.cnblogs.com/xuziyu/p/11726068.html)

你可能感兴趣的:(vagrant,linux,运维,k8s)