can't start minikube in ec2 shows "X Sorry, Kubernetes v1.18.0 requires conntrack to be installed in root's path"

Mir IT picture Mir IT · Apr 15, 2020 · Viewed 6.9k times · Source

Hi I am trying to start minikube that's why I ran

minikube start --vm-driver=none

But it shows in the console the below lines:

minikube v1.9.2 on Amazon 2 (Xen/amd64) Using the none driver based on user configuration X Sorry, Kubernetes v1.18.0 requires conntrack to be installed in root's path

Note that i have installed kubectl minikube and docker.

Please help me to sort out this issues.

Answer

A'Joel Udu picture A'Joel Udu · May 12, 2020

I had the same issue. Install 'conntrack' with

sudo apt install conntrack

Then continue to start your minikube:

sudo minikube start --vm-driver=none