unable to start minikube on centos 8 with multiple error. minikube start --driver=none

2/17/2022

I am trying to install minikube on centos 8 which is guest os on vmware. I tried with the following command for installation step by step followed everything but nothing seems working

  1. curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl
  2. chmod +x ./kubectl mv ./kubectl /usr/local/bin/kubectl 3.curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 4.chmod +x minikube 5.minikube start --driver=none

I also tried with minikube delete and removing related dir. also tried with swapoff but still unable to start minikube .

Following error is seen on the console

kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get http://localhost:10248/healthz: dial tcp [::1]:10248: connect: connection refused.
[kubelet-check] It seems like the kubelet isn't running or healthy.
-- ms20
kubernetes
minikube

0 Answers