How to solve the Docker container startup failure

How to solve the Docker container startup failure

Question: After the computer restarts, the mysql container in docker cannot be restarted. I don’t know why

The above steps: If sudo docker start name can restart, that is, enter: docker ps and you can see that the service you need is already started, then you don’t need to do the following steps. If it’s just like the above, then continue reading below:

Solution: Delete the container that cannot be started, and then run the image again.

Note that the container name has changed to mysql at this time, and it is in a closed state. It still cannot run when running the image again, but it can be started when starting the image again.

Supplementary content

1. View the mount points occupied by Docker

cat /proc/mounts | grep "mapper/docker" | awk '{print $2}'

2. Manually unmount the occupied mount point

3. Restart

docker ps -aq | xargs -I {} docker start {}

This is the end of this article on how to solve the problem of docker container startup failure. For more information about solutions to docker container startup failure, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solution to the failure of entering the container due to full docker space
  • Solve the problem that some configuration files in /etc are reset after the docker container is restarted
  • Docker View the Mount Directory Operation of the Container
  • docker run -v mounts data volumes abnormally, and the container status is always restarting

<<:  A Brief Analysis on the Time Carrying Problem of MySQL

>>:  JavaScript implements the nine-grid mobile puzzle game

Recommend

Notes on Using Textarea

Why mention textarea specifically? Because the tex...

display:grid in CSS3, an introduction to grid layout

1. Grid layout (grid): It divides the web page in...

An article to quickly understand Angular and Ionic life cycle and hook functions

Table of contents Angular accomplish Calling orde...

Detailed process of decompressing and installing mysql5.7.17 zip

1. Download address https://dev.mysql.com/downloa...

The most convenient way to build a Zookeeper server in history (recommended)

What is ZooKeeper ZooKeeper is a top-level projec...

Detailed steps to build an NFS file sharing server in Linux

Linux builds NFS server In order to achieve data ...

Summary of Problems in Installing MySQL 5.7.19 under Linux

The first time I installed MySQL on my virtual ma...

Let's talk about the size and length limits of various objects in MySQL

Table of contents Identifier length limit Length ...

PHP-HTMLhtml important knowledge points notes (must read)

1. Use frameset, frame and iframe to realize mult...

No-nonsense quick start React routing development

Install Enter the following command to install it...

How to use html2canvas to convert HTML code into images

Convert code to image using html2canvas is a very...

Some common properties of CSS

CSS background: background:#00ffee; //Set the back...

Three ways to achieve text flashing effect in CSS3 Example code

1. Change the transparency to achieve the gradual...