27

我正在尝试在 Ubuntu vm 中安装 minikube(在虚拟框中)。我为 vm 启用了 VT-X/AMD-v。但我收到以下错误。

# minikube start
Starting local Kubernetes cluster...
E0217 15:00:35.395801    3869 start.go:107] Error starting host: Error creating host: Error with pre-create check: "This computer doesn't have VT-X/AMD-v enabled. Enabling it in the BIOS is mandatory".

 Retrying.
E0217 15:00:35.396019    3869 start.go:113] Error starting host:  Error creating host: Error with pre-create check: "This computer doesn't have VT-X/AMD-v enabled. Enabling it in the BIOS is mandatory"
================================================================================
An error has occurred. Would you like to opt in to sending anonymized crash
information to minikube to help prevent future errors?
To opt out of these messages, run the command:
    minikube config set WantReportErrorPrompt false
================================================================================
Please enter your response [Y/n]:

我找到了一个参考,据此,我们不能在虚拟化中进行虚拟化。这是真的吗?我怎样才能解决这个问题?

4

7 回答 7

24

Virtual Box 不支持嵌套虚拟化中的 VT-X/AMD-v。请参阅virtualbox.org 上的此开放票证/功能请​​求。

这里还有一些关于 SO 讨论这个 话题的问题和答案。

可能的解决方案:

  1. 如前所述:在嵌套虚拟化(如 Xen、KVM 或 VMware)中使用支持 VT-X/AMD-v的不同管理程序。
  2. 在主机操作系统上安装 Minikube,而不是在虚拟机中。
  3. Tad Guskis answer中所述,使用 Docker 和“无”驱动程序选项直接运行 Minikube
于 2017-04-07T19:41:05.620 回答
24

使用 Docker 和不需要嵌套虚拟化的“无”驱动程序选项直接在 VM 上运行 Minikube。

设置无驱动选项:

[root@minikube ~]# minikube config set vm-driver none

按照您的 VM 操作系统版本的说明安装 Docker-ce。

最后运行 minikube start:

[root@minikube ~]# systemctl enable docker
Created symlink from /etc/systemd/system/multi-user.target.wants/docker.service to /usr/lib/systemd/system/docker.service.
[root@minikube ~]# systemctl start docker
[root@minikube ~]# minikube start
Starting local Kubernetes v1.10.0 cluster...
Starting VM...
Getting VM IP address...
Moving files into cluster...
Downloading kubeadm v1.10.0
Downloading kubelet v1.10.0
Finished Downloading kubelet v1.10.0
Finished Downloading kubeadm v1.10.0
Setting up certs...
Connecting to cluster...
Setting up kubeconfig...
Starting cluster components...
Kubectl is now configured to use the cluster.
===================
WARNING: IT IS RECOMMENDED NOT TO RUN THE NONE DRIVER ON PERSONAL WORKSTATIONS
        The 'none' driver will run an insecure kubernetes apiserver as root that may leave the host vulnerable to CSRF attacks

When using the none driver, the kubectl config and credentials generated will be root owned and will appear in the root home directory.
You will need to move the files to the appropriate location and then set the correct permissions.  An example of this is below:

        sudo mv /root/.kube $HOME/.kube # this will write over any previous configuration
        sudo chown -R $USER $HOME/.kube
        sudo chgrp -R $USER $HOME/.kube

        sudo mv /root/.minikube $HOME/.minikube # this will write over any previous configuration
        sudo chown -R $USER $HOME/.minikube
        sudo chgrp -R $USER $HOME/.minikube

This can also be done automatically by setting the env var CHANGE_MINIKUBE_NONE_USER=true
Loading cached images from config file.
于 2018-10-03T20:53:53.753 回答
7

尝试在没有嵌套虚拟化的情况下运行 minikube(应该安装 docker):

minikube start --vm-driver=none

来自 Kubernetes文档

Minikube 还支持 --vm-driver=none 选项,该选项在主机上而不是在 VM 中运行 Kubernetes 组件。使用此驱动程序需要 Docker 和 linux 环境,但不需要管理程序。

于 2018-11-30T13:22:23.953 回答
4

“在主机操作系统上而不是在虚拟机中安装 Minikube。”

这并不完全正确,实际上您可以在没有驱动程序选项的情况下将 minikube 安装在虚拟机或 vmware 之上的 Linux VM 中,它使用 localkube 直接处理 VM 主机 docker 中的 kubernetes。

你可以在 Linux VM 中使用这个小脚本在几分钟内启动 minikube。

https://github.com/robertluwang/docker-hands-on-guide/blob/master/minikube-none-installation.md

于 2017-12-13T21:11:34.927 回答
3

检查它是否为 VM 正确启用(在 VM 内运行):

egrep -i '^flags.*(svm|vmx)' /proc/cpuinfo

在 VM 内核中:

dmesg | egrep 'DMAR|IOMMU'

VirtualBox 仅适用于 32 位嵌套客户机,因此还要检查(它不支持嵌套客户机,但适用于 32 位):

uname -m
于 2017-02-17T09:52:40.067 回答
1

我安装了 VM ware 并在 VM 内安装了 Virtualbox。并在外部 VM 中启用了 VT-X/AMD-v。它工作正常。

于 2017-02-22T08:50:06.073 回答
0

在 virtualbox .vmx 文件中设置以下属性。

登录 esx 框并找到您的 vm 的 *.vmx 文件。

例如:

echo 'vhv.enable = "TRUE"' >> /vmfs/volumes/54183927-04f91918-a72a-6805ca147c55/ubun204_mk/ubun204_mk.vmx 

然后运行 ​​minikube start

祝你好运!

于 2020-08-05T07:20:49.213 回答