Cannot stop or restart a docker container

前端 未结 10 1085
别跟我提以往
别跟我提以往 2021-01-30 01:54

When trying to stop or restart a docker container I\'m getting the following error message:

$ docker restart 5ba0a86f36ea
Error response from daemon: Cannot rest         


        
10条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-30 02:54

    Check if there is any zombie process using "top" command.

    docker ps | grep <> 
    

    Get the container id.

    ps -ef | grep <>
    
    ps -ef|grep defunct | grep java
    

    And kill the container by Parent PID .

提交回复
热议问题