zoukankan      html  css  js  c++  java
  • The connection to the server localhost:8080 was refused

    Kubernetes-kubectl命令出现错误

    【The connection to the server localhost:8080 was refused - did you specify the right host or port?】

    [root@docker001 yum.repos.d]# kubectl get pods --all-namespaces
    The connection to the server localhost:8080 was refused - did you specify the right host or port?
    
    [root@docker001 yum.repos.d]# ll /etc/kubernetes/admin.conf
    -rw------- 1 root root 5450 Oct 23 14:10 /etc/kubernetes/admin.conf
    [root@docker001 yum.repos.d]# echo "export KUBECONFIG=/etc/kubernetes/admin.conf" >> ~/.bash_profile
    
    [root@docker001 yum.repos.d]# source ~/.bash_profile
    
    [root@docker001 yum.repos.d]# source ~/.bash_profile
    [root@docker001 yum.repos.d]# kubectl get pods --all-namespaces
    NAMESPACE NAME READY STATUS RESTARTS AGE
    kube-system coredns-5644d7b6d9-8vbs4 0/1 Pending 0 5m39s
    kube-system coredns-5644d7b6d9-jc4zk 0/1 Pending 0 5m39s
    kube-system etcd-docker001 1/1 Running 0 4m47s
    kube-system kube-apiserver-docker001 1/1 Running 0 4m22s
    kube-system kube-controller-manager-docker001 1/1 Running 0 4m42s
    kube-system kube-proxy-bxhpn 1/1 Running 0 5m39s
    kube-system kube-scheduler-docker001 1/1 Running 0 4m33s
    [root@docker001 yum.repos.d]#

    如果以上的步骤并不能解决你的问题,你可以试一下下面的这个方法,这个方法适用于关机重启以后出现的报错!!!

    The connection to the server IP:6443 was refused - did you specify the right host or port?

    在安装配置好 Kubernetes 后,正常情况下服务器关机重启,kubelet 也会自动启动的。但最近配置的一台服务器重启后,输入命令 kubectl get nodes 查看节点报如下错误:

    输入 systemctl status kubelet 命令查看 kubelet 的情况,发现 kubelet 确实没有启动

    2,问题原因

        由于 K8s 必须保持全程关闭交换内存,之前我安装是只是使用 swapoff -a 命令暂时关闭 swap。而机器重启后,swap 还是会自动启用,从而导致 kubelet 无法启动。
     

    3,解决办法

    (1)首先执行如下命令关闭 swap。

    swapoff -a

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

    vi /etc/fstab
    (3)将 /dev/mapper/centos-swap swap swap default 0 0 这一行前面加个 # 号将其注释掉。

    (4)编辑完毕后保存退出。这样机器重启后 kubelet 也可以正常自动启动了。
    原文出自:www.hangge.com  转载请保留原文链接:https://www.hangge.com/blog/cache/detail_2419.html

  • 相关阅读:
    全局函数和静态函数
    C语言变量总结
    #ifdef、#ifndef 与 #endif
    #include与#define的意义
    exit
    字符常量
    void *:万能指针
    算法(Algorithms)第4版 练习 链表类 1.3.19~1.3.29
    算法(Algorithms)第4版 练习 1.3.219
    算法(Algorithms)第4版 练习 1.3.20
  • 原文地址:https://www.cnblogs.com/xuziyu/p/11726068.html
Copyright © 2011-2022 走看看