How do I ssh into the VM for Minikube?

前端 未结 8 2287
予麋鹿
予麋鹿 2021-01-29 23:03

What is the username/password/keys to ssh into the Minikube VM?

8条回答
  •  忘掉有多难
    2021-01-29 23:21

    minikube ssh -v 7
    

    It will show you the output where you can see the full SSH command

    /usr/bin/ssh -F /dev/null -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none docker@127.0.0.1 -o IdentitiesOnly=yes -i ~/.minikube/machines/minikube/id_rsa -p 56290
    

提交回复
热议问题