PrefaceToday, a developer gave me feedback that a container service cannot be stopped, rm (docker rm -f), or killed. In other words, the container service cannot be terminated. Procedure(1) The docker directory cannot be deleted by executing the delete command: # ll /var/lib/docker/containers | grep caf8ef20f3c1 # cd /var/lib/docker/containers # rm -rf caf8ef20f3c1c78f03a5844ee23abc1d7e44246f242292040f1ef288899d0cb8 At this time we will receive an error like this:
(2) From the above error, we can see that the "secrets" and "shm" shared mounts cannot be deleted. First find the mount location, then cancel the mount, and then delete it: # cat /proc/mounts |grep "docker" |grep "caf8ef20f3c1" (3) Unmount: # umount /data/sys/var/docker/containers/caf8ef20f3c1c78f03a5844ee23abc1d7e44246f242292040f1ef288899d0cb8/secrets # umount /data/sys/var/docker/containers/caf8ef20f3c1c78f03a5844ee23abc1d7e44246f242292040f1ef288899d0cb8/shm (4) Check again: # cat /proc/mounts |grep "docker" |grep "caf8ef20f3c1" // no longer exists (5) Now delete the docker directory: # cd /var/lib/docker/containers # rm -rf caf8ef20f3c1c78f03a5844ee23abc1d7e44246f242292040f1ef288899d0cb8 (6) Delete container service Now we use rm or kill to remove the container service: # docker rm -f caf8ef20f3c1c or # docker kill --signal=SIGINT caf8ef20f3c1 If the above command hangs after running, please restart the Docker service: # systemctl restart docker After completing the above steps, the problem you encountered can basically be solved~ Supplement: Docker container cannot be stopped or killed Problem ProcessA 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 problemsHave 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. 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:
|
<<: How to implement Vue binding class and binding inline style
>>: HTML code analysis of text conversion effects for left and right movement
The following code introduces MySQL to update som...
Tip: In MySQL, we often need to create and delete...
Many times when learning web page development, th...
Table of contents 1. Introduction 2. What is func...
The floating-point types supported in MySQL are F...
Table of contents 1. Use the "rpm -ivh insta...
Table of contents 1. Overview 2. Parameters for c...
In tomcat, jsp is not garbled, but html Chinese i...
1. Why does nginx use gzip? 1. The role of compre...
About Nginx, a high-performance, lightweight web ...
Preface After deploying the server, I visited my ...
In the previous article, we talked about MySQL tr...
1. Usage of instanceof instanceof operator is use...
Record the installation and configuration method ...
The frame and rules attributes of the table tag c...