Docker安装报错Hardware assisted virtualization and data execution protection must be enabled in the BIOS

Docker for Windows error: "Hardware assisted virtualization and data execution protection must be enabled in the BIOS"

镜像:可以理解为软件安装包,可以方便的进行传播和安装。
容器:软件安装后的状态,每个软件运行环境都是独立的、隔离的,称之为容器。

桌面版:Docker Desktop for Mac and Windows | Docker
服务器版:Install Docker Engine | Docker Documentation

 错误信息

解决方法
控制面板->程序->启用或关闭 windows 功能,开启 Windows 虚拟化和 Linux 子系统(WSL2)

管理员执行

netsh winsock reset 

Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All

bcdedit /set hypervisorlaunchtype auto

测试安装mysql

docker run -p 3306:3306 --name mysql -e MYSQL_ROOT_PASSWORD=123456 -d mysql:5.7

成功地重置 Winsock 目录。 你必须重新启动计算机才能完成重置

命令行安装 Linux 子系统(这步可能不需要,因为 docker 安装时有说自动安装 wsl)
wsl --install -d Ubuntu

命令行安装可能太慢,你也可以打开微软商店 Microsoft Store 搜索 Linux 进行安装

设置开机启动 Hypervisor
bcdedit /set hypervisorlaunchtype auto

注意要用管理员权限打开 PowerShell

确保 BIOS 已开启虚拟化,下图检查是否已开启好

如果是已禁用,请在开机时按 F2 进入 BIOS 开启一下,不会设置的可以网上搜索下自己主板的设置方法,Intel 和 AMD 的设置可能稍有不同

出现下图错误,点击链接安装最新版本的 WSL2
https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi

镜像加速器镜像加速器地址
Docker 中国官方镜像https://registry.docker-cn.com
DaoCloud 镜像站http://f1361db2.m.daocloud.io
Azure 中国镜像https://dockerhub.azk8s.cn
科大镜像站https://docker.mirrors.ustc.edu.cn
阿里云https://<your_code>.mirror.aliyuncs.com
七牛云https://reg-mirror.qiniu.com
网易云https://hub-mirror.c.163.com
腾讯云https://mirror.ccs.tencentyun.com

posted @ 2022-02-28 08:25  JackieDYH  阅读(253)  评论(0编辑  收藏  举报  来源