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

问题分析

环境变量
原因:kubernetes master没有与本机绑定,集群初始化的时候没有绑定,此时设置在本机的环境变量即可解决问题。

问题图片
在这里插入图片描述

解决方式

步骤一:设置环境变量

具体根据情况,此处记录linux设置该环境变量
方式一:编辑文件设置
	   vim /etc/profile
	   在底部增加新的环境变量 export KUBECONFIG=/etc/kubernetes/admin.conf
方式二:直接追加文件内容
	echo "export KUBECONFIG=/etc/kubernetes/admin.conf" >> /etc/profile

步骤二:使生效

	source /etc/profile

解决问题后截图:

The connection to the server localhost:8080 was refused - did you specify the right host or port?解决_第1张图片

kubernetes常见错误问题及解决办法<07>

你可能感兴趣的:(linux,kubernetes,kubernetes,k8s,linux)