gpt4 book ai didi

ubuntu - 无法连接到服务器 : dial tcp: lookup MasterIP on 127. 0.0.53:53:服务器行为异常

转载 作者:行者123 更新时间:2023-12-04 18:29:41 29 4
gpt4 key购买 nike

我正在尝试使用“kubectl apply -f redis.yaml”启动 Kubernetes,我得到了

Unable to connect to the server: dial tcp: lookup MasterIP on 127.0.0.53:53: server misbehaving

之前,我正在接收

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

这个错误。我正在寻找解决方案,有人说要尝试使用此命令

export KUBERNETES_MASTER=http://MasterIP:8080

在那之后,我收到了上面的错误?我该如何解决这个问题?

kubectl cluster-info

Kubernetes master is running at 192.168.219.107:6443
KubeDNS is running at 192.168.219.107:6443/api/v1/namespaces/kube-system/services/

我的./kube/config

apiVersion: v1
clusters:
- cluster:
certificate-authority-data:
server: https://****:6443
name: kubernetes
contexts:
- context:
cluster: kubernetes
user: kubernetes-admin
name: kubernetes-admin@kubernetes
current-context: kubernetes-admin@kubernetes
kind: Config
preferences: {}
users:
- name: kubernetes-admin
user:
client-certificate-data:
client-key-data:

最佳答案

export KUBERNETES_MASTER=http://MasterIP:8080 不正确,因为端口应为 6443 并且外部协议(protocol)应为 https连接到 Kubernetes API 服务器。

export KUBERNETES_MASTER=https://MasterIP:6443`

你似乎有一个有效的 kubeconfig 文件,所以你真的不需要导出 KUBERNETES_MASTER 环境变量。

确保该文件位于 home 目录中的 .kube/config 路径。否则将 KUBECONFIG 环境变量指向 kubeconfig 文件所在的路径。

关于ubuntu - 无法连接到服务器 : dial tcp: lookup MasterIP on 127. 0.0.53:53:服务器行为异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63326973/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com