did you run below commands after kubeadm init To start using your cluster, you need to run (as a regular user): sudo cp /etc/kubernetes/admin.conf $HOME/ sudo chown $(id -u):$(id -g) $HOME/admin.conf export KUBECONFIG=$HOME/admin.conf ref: https://gi…
解决思路: kubectl 默认从 ~/.kube/config 配置文件获取访问 kube-apiserver 地址.证书.用户名等信息,如果没有配置该文件,或者该文件个别参数配置出错,执行命令时出错:The connection to the server localhost:8080 was refused - did you specify the right host or port? 解决办法: 1 查看该文件是否存在,若不存在则生成 2 查看该文件内容是否有缺,尤其是server字…
今天在Kubernetes的从节点上运行命令[kubectl]出现了如下错误: [root@k8snode1 kubernetes]# kubectl get pod The connection to the server localhost:8080 was refused - did you specify the right host or port? 出现这个问题的原因是kubectl命令需要使用kubernetes-admin来运行,解决方法如下,将主节点中的[/etc/kubern…
The connection to the server localhost:8080 was refused - did you specify the right host or port? 解决方法:kube-apiserver启动失败,重启即可!!![root@master ~]# systemctl status kube-apiserver● kube-apiserver.service - Kubernetes API Server   Loaded: loaded (/usr/l…
首先是按照二进制方式安装的k8s. [root@ht22 calico]# cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) [root@ht22 calico]# uname -r 3.10.0-1160.45.1.el7.x…
在模拟器上上启动ionic4.6版本 打包成的android APK,启动了很久结果弹出这个问题: Application Error - The connection to the server was unsuccessful 问题分析: PhoneGap某些版本的BUG,尤其在index.html加载的内容较多时容易出现   解决方法: 启动时间默认超时默认是20s,现可以延长时间等待:如下操作 在项目目录下的config.xml文件里添加这句,设置一个超时的时间,再重新编译启动:如果还是…
在真机上启动ionic3打包成的android APK,启动了很久结果弹出这个问题: Application Error - The connection to the server was unsuccessful 可能是我项目资源太多东西了,启动的时间太久了,导致超时了. 解决方案是在项目目录下的config.xml文件里添加这句,设置一个超时的时间,再重新编译启动,ok完美解决. <preference name=" />…
最近在更新App的时候,发现在华为手机上报这个错误,有点困惑,查找资料分析,大概原因是程序在加载index.html网页时,加载的资源过多,造成时间超时, 这个时原因分析https://stackoverflow.com/questions/12319809/application-error-the-connection-to-the-server-was-unsuccessful-file-andr 具体的解决方案是在config.xml文件中添加如下延时设置: <!--解决程序启动问题:A…
问题描述: PhoneGap+Sencha Touch开发的应用,打包后的APP或者调试期间,在启动的时候提示如下信息: Application Error - The connection to the server was unsuccessful. (file:///android_asset/www/index.html)    问题分析: 这个应该是PhoneGap某些版本的BUG,尤其在index.html加载的内容较多时容易出现.   解决方法: 方法1:更新到PhoneGap的最…
不知道怎么用着用着,使用kubectl 时报错,错误如下: root@R740--:~# kubectl get pod The connection to the server 107.105.136.28: was refused - did you specify the right host or port? $systemctl status kubeletMar :: server1 kubelet[]: E0307 :: reflector.go:] k8s.io/kubernet…