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

The difference between z-index: 0 and z-index: auto in CSS

I've been learning about stacking contexts re...

Sample code for implementing history in vuex

I have recently been developing a visual operatio...

Detailed troubleshooting of docker.service startup errors

Execute the following command to report an error ...

Summary of MySQL common functions

Preface: The MySQL database provides a wide range...

Research on Web Page Size

<br />According to statistics, the average s...

Element Plus implements Affix

Table of contents 1. Component Introduction 2. So...

The specific use and difference between attribute and property in Vue

Table of contents As attribute and property value...

Google Translate Tool: Quickly implement multilingual websites

Google China has released a translation tool that ...

JavaScript Function Currying

Table of contents 1 What is function currying? 2 ...

Solve the cross-domain problem of Vue+SpringBoot+Shiro

Table of contents 1. Configure Vue front end 1. D...

Detailed explanation of CocosCreator project structure mechanism

Table of contents 1. Project folder structure 1. ...

Detailed tutorial for installing mysql5.7.18 on centos7.3

1 Check the Linux distribution version [root@type...

In-depth analysis of MySQL indexes

Preface We know that index selection is the work ...