39

I have simple example from official guide at docker website.

I run the following:

sudo docker run -d ubuntu:latest /bin/sh -c "while true; do echo hello world; sleep 1; done"
a66asdasdhqie123...

Then take some output from created container:

sudo docker logs a66
hello
hello
hello
...

Then I lookup the running processes of a container:

sudo docker top a66
UID                 PID                 PPID                C                   STIME               TTY                 TIME                CMD
root                25055               15152               0                   20:07               ?                   00:00:00            /bin/sh -c while true; do echo hello world; sleep 1; done
root                25295               25055               0                   20:10               ?                   00:00:00            sleep 1

Next I try to kill the first process of container:

sudo docker exec a66 kill -9 25055

However after I make it nothing changes. Process still works and output "hello" every second. What do I wrong?

Timur Fayzrakhmanov
  • 17,967
  • 20
  • 64
  • 95

5 Answers5

37

When I reproduce your situation I see different PIDs between docker top <container> and docker exec -it <container> ps -aux. When you do docker exec the command is executed inside the container => should use container's pid. Otherwise you could do the kill without docker straight from the host, in your case: sudo kill -9 25055.

Mykola Gurov
  • 8,517
  • 4
  • 29
  • 27
2

check this:

ps | grep -i a66 | tr -s ' '|cut -f2 -d' '|
{
    while read line;
    do kill -9 $line;
    done
}

to understand this start from executing commands from left till end of each pipe (|)

Simpler option:

kill $(pidof a66) 
0

Took me a while to find the right answer, but you will have to manage this process from within the container. When you run docker top a66 from the host, the PIDs are from your host, although that's not quite the case if using Cygwin. Regardless, you will need to bash or what-have-you back into your container and use commands like ps aux and kill while in the container to find and manage the different PIDs for the same processes there.

Spencer Williams
  • 821
  • 10
  • 20
  • 1
    Because the way Docker works the PID is always the HOST ( it is not a full VM like VirtualBox ). The container just "think" it owns the process. If you want to kill just use the PID from the host. – Magno C Feb 24 '23 at 11:53
0

i was looking for something like this, but i couldn't find and then i did this:

[root@notebook ~]# docker exec -it tadeu_debian ps aux | grep ping | awk '{ print $2 }' | xargs -I{} docker exec -i tadeu_debian kill -9

It was two "execs" from Docker e one xargs.

Well, i hope this helps someone!

-1

when you build Docker, use this command :

RUN apt-get install lsof

then in py file you can use:

os.system("lsof /dev/nvidia* | awk '{print $2}' | xargs -I {} kill {}")

REMEMBER: this command kill all process on GPU

Ali Ganjbakhsh
  • 541
  • 7
  • 13