2017-10-25 11 views
1

저는 Dell XPS 13 (3854MB의 RAM 및 Intel Core i5-5200U CPU @ 2.20GHz)에서 우분투 17.04 (제스티)를 실행 중이며 Minikube를 시작하려고합니다. 내가 시작할 때 몇 가지 오류가 발생합니다.Minikube가 우분투에서 시작하지 않고 오류가 발생했습니다

➜ minikube version 
minikube version: v0.22.3 

➜ kubectl version 
Client Version: version.Info{Major:"1", Minor:"7", GitVersion:"v1.7.5", GitCommit:"17d7182a7ccbb167074be7a87f0a68bd00d58d97", GitTreeState:"clean", BuildDate:"2017-08-31T09:14:02Z", GoVersion:"go1.8.3", Compiler:"gc", Platform:"linux/amd64"} 
The connection to the server localhost:8080 was refused - did you specify the right host or port? 

나는 VM VirtualBox 버전 5.2.0 r118431 (Qt5.7.1)을 가지고 있습니다. BIOS 설정을 확인하고 가상화를 활성화했습니다.

➜ minikube start 
Starting local Kubernetes v1.7.5 cluster... 
Starting VM... 
E1025 09:49:40.206594 22972 start.go:146] Error starting host: Error starting stopped host: Unable to start the VM: /usr/bin/VBoxManage startvm minikube --type headless failed: 
VBoxManage: error: The virtual machine 'minikube' has terminated unexpectedly during startup with exit code 1 (0x1) 
VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component MachineWrap, interface IMachine 
. 

Retrying. 
E1025 09:49:40.207051 22972 start.go:152] Error starting host: Error starting stopped host: Unable to start the VM: /usr/bin/VBoxManage startvm minikube --type headless failed: 
VBoxManage: error: The virtual machine 'minikube' has terminated unexpectedly during startup with exit code 1 (0x1) 
VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component MachineWrap, interface IMachine 

는 좀 내가 ~/rm -rf .minikube/을 실행하고 다시 minikube을 시작하려고처럼, 온라인 찾은 것을 제안 시도했습니다. 나는 minikube stop을 실행하고 minikube delete을 시도한 다음 다시 minikube를 시작하려고 시도했습니다. minikube start --vm-driver=virtualbox도 시작할 때 virtualbox 드라이버를 지정하려고했습니다. 이들은 작동하지 않습니다, 나는 여전히 같은 오류가 발생합니다.

답변

0

Virtualbox 설치에 문제가있는 것 같습니다. 다시 설치해 보셨습니까?

sudo apt-get purge virtualbox virtualbox-dkms 
sudo apt-get install virtualbox-5.1 
+0

그래, 미니 쿠브와 버추얼 박스를 완전히 제거하고 각각의 최신 버전을 설치 했으므로 작동 중입니다. 처음 시도했을 때 무언가가 손상되었거나 잘못 설치되었을 것입니다. – Attila