Solution to the problem that Docker container cannot be stopped or killed

Solution to the problem that Docker container cannot be stopped or killed

Docker version 1.13.1

Problem Process

A MySQL container in a certain environment cannot be stopped, killed, or rm

sudo docker ps | grep mysql to view the container

7844250860f8 mysql:5.7.22 "/.r/r docker-entr..." 41 minutes ago Up 8 minutes r-dlrel-mysql-1-66df8f33

After using docker stop / docker kill / docker rm -f and other commands, the container will automatically restart immediately

Check the container immediately. The running time is: Up Less than a second, indicating that the container started immediately.

7844250860f8 mysql:5.7.22 "/.r/r docker-entr..." 42 minutes ago Up Less than a second r-dlrel-mysql-1-66df8f33

Kill the physical process corresponding to the container and restart it automatically

How to get the physical process: 1. The State.Pid field in docker inspect is the physical process ID; 2. ps command

Check the container restart policy. The policy is no, which means it will not restart automatically.

If you need to update the restart policy of a running container, you can use this command: docker update –restart=no my-container

"RestartPolicy": {
  "Name": "no",
  "MaximumRetryCount": 0
},

The magical way programmers solve problems

Have you ever encountered this scenario:

  • I was puzzled by a problem, but as soon as I walked in front of my colleague and explained the problem clearly, I suddenly understood it.
  • The problem was obviously very simple, but there was a problem when the program was running. Then I asked a colleague to help check the basic configuration, and I suddenly realized the answer.

This time I belong to the first type. As soon as I finished asking the question, I immediately remembered: Damn, it was the container orchestration tool Rancher that was doing the scheduling, and the container would automatically restart after it crashed.

I logged into Rancher and saw that it was indeed the case, a "wrong" problem. Although this is not a problem this time, Docker does have the problem of not being able to stop, and there is a lot of information about it.

Further reading: Docker Restart Policy

During the solution process, I learned a lot about Docker Restart Policy and Bugs. This article is easy to understand: Ensuring Containers Are Always Running with Docker's Restart Policy

Here we just make a record and learn about the four Restart Policies of Docker.

no

No is the default policy, and the container will not be restarted under any circumstances

on-failure

on-failure means that if the container exit code is abnormal, it will be restarted, and if the container exit code is normal, no processing will be performed.

sudo docker run -d --name testing_restarts --restart on-failure:5 testing_restarts
85ff2f096bac9965a9b8cffbb73c1642bf7b64a2173bbd145961231861b95819

on-failure[:max-retries], max-retries indicates the maximum number of restarts.

The benefit of on-failure is that if the container terminates with a normal exit code, it will not restart.

always

Regardless of the container exit code, it will automatically restart. Here are a few scenarios:

  1. The container terminates with an abnormal status code (such as the application terminating due to insufficient memory)
  2. The container is stopped normally, and then the machine is restarted or the Docker service is restarted
  3. The container is running normally after it crashes, and then the machine is restarted or the Docker service is restarted

In the above cases, the container will always be restarted. However, if the on-failure and no policies are used, the container will not be restarted after the machine is restarted.

unless-stopped

Unless-stopped is basically the same as always, except for one scenario where unless-stopped is a little special:

If the container is stopped normally, and then the machine is restarted or the Docker service is restarted, the container will not be restarted in this case

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Solution to the problem that the docker container cannot be stopped

<<:  Vue implements adding, displaying and deleting multiple images

>>:  vue-cropper plug-in realizes the encapsulation of image capture and upload component

Recommend

Analysis of the Neglected DOCTYPE Description

doctype is one of them: <!DOCTYPE HTML PUBLIC &...

How to use Linux to calculate the disk space occupied by timed files

Open the scheduled task editor. Cent uses vim to ...

How to use MySQL covering index and table return

Two major categories of indexes Storage engine us...

Detailed analysis of the MySQL slow log opening method and storage format

In development projects, we can monitor SQL with ...

TypeScript learning notes: type narrowing

Table of contents Preface Type Inference Truth va...

How to create your own image using Dockerfile

1. Create an empty directory $ cd /home/xm6f/dev ...

Vue realizes click flip effect

Use vue to simply implement a click flip effect f...

Tutorial on installing mysql8 on linux centos7

1. RPM version installation Check if there are ot...

How to insert 10 million records into a MySQL database table in 88 seconds

The database I use is MySQL database version 5.7 ...

Summary of Git commit log modification methods

Case 1: Last submission and no push Execute the f...

Instance method for mysql string concatenation and setting null value

#String concatenation concat(s1,s2); concatenate ...

How to set up Referer in Nginx to prevent image theft

If the server's images are hotlinked by other...

Detailed explanation of how to use Node.js to implement hot reload page

Preface Not long ago, I combined browser-sync+gul...