Solve the conflict between docker and vmware

Solve the conflict between docker and vmware

1. Docker startup problem:

Problem Solved:

You need to turn on Hyper-V (to do this: Control Panel->Programs->Programs and Features->Turn Windows features on or off, then restart your computer)

2. However, problems will occur when you restart vmware.

Solution:

Disable Hyper-V as described above.

However, this method requires restarting the computer every time, which is a bit troublesome. Fortunately, virtual machines are rarely used now.

Supplement: Docker and VMware conflict: VMware Workstation and Device/Credential Guard are not compatible error solution

After Docker and VMware are installed locally, they cannot be started at the same time. Because Docker and VMware are both equivalent to Hypervisors, and based on the properties of the virtual machine, they need to gain control over hardware such as the CPU, so they cannot run simultaneously on the same machine.

VMware error

VMware Workstation and Device/Credential Guard are not compatible. VMware Workstation can be run after disabling Device/Credential Guard. Please visit http://www.vmware.com/go/turnoff_CG_DG for more details.

Windows features on or off

By switching the windows features option, you can turn on or off the Hyper - H option. When selected, you can start the docker application

Error code 0x80073701 is encountered during the shutdown process

Virtualization Based Security

WIN+R to open Run

Type gpedit.msc to open the Group Policy Editor

Computer Configuration -> Administrative Templates -> System -> Device Guard

Double-click to open the configuration option Turn on Virtualization Based Security and select disable

PowerShell command

Start - Windows PowerShell (Admin)

The opening command is

bcdedit /set hypervisorlaunchtype auto

The shutdown command is

bcdedit /set hypervisorlaunchtype off

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • Solve the problem that Docker pulls MySQL image too slowly
  • Solve the problem of the container showing Exited (0) after docker run
  • docker run -v mounts data volumes abnormally, and the container status is always restarting
  • Docker removes abnormal container operations
  • Solution to the Docker container cannot be stopped and deleted
  • Solution for multiple Docker containers not having the same port number

<<:  Writing a rock-paper-scissors game in JavaScript

>>:  How to open MySQL binlog log

Recommend

Detailed explanation of CSS animation attribute keyframes

How long has it been since I updated my column? H...

How to add interface listening mask in Vue project

1. Business Background Using a mask layer to shie...

MySQL cross-table query and cross-table update

Friends who have some basic knowledge of SQL must...

React introduces antd-mobile+postcss to build mobile terminal

Install antd-mobile Global import npm install ant...

Discuss the application of mixin in Vue

Mixins provide a very flexible way to distribute ...

Detailed explanation of the simple use of MySQL query cache

Table of contents 1. Implementation process of qu...

How to use time as a judgment condition in MySQL

Background: During the development process, we of...

Solution to incomplete text display in el-tree

Table of contents Method 1: The simplest way to s...

Basic knowledge of MySQL learning notes

View Database show databases; Create a database c...

react-beautiful-dnd implements component drag and drop function

Table of contents 1. Installation 2.APi 3. react-...

CentOS7 64-bit installation mysql graphic tutorial

Prerequisites for installing MySQL: Install CentO...

Example of creating circular scrolling progress bar animation using CSS3

theme Today I will teach you how to create a circ...