harivinu01@penguin:~$ sudo dockerd
INFO[2022-10-11T11:09:00.045076001+05:30] Starting up
failed to start daemon: pid file found, ensure docker is not running or delete /var/run/docker.pid
harivinu01@penguin:~$
Asked
Active
Viewed 206 times
0

Hari Prabhu
- 1
- 2
-
docker is a service and should be started and stopped accordingly: https://www.ibm.com/docs/en/spectrum-discover/2.0.3?topic=ni-multi-node-network-settings-get-stuck-while-checking-docker-run-status – A. Herlas Oct 11 '22 at 05:51
2 Answers
0
have you tried kill docker process or restart?

lehanh
- 569
- 7
- 22
-
how to do that, can you please write command for kill and restart. I'm beginner to docker – Hari Prabhu Oct 11 '22 at 05:50
-
0
- Delete the pid file
ps -ef | grep docker
kill -9 <PIDs>
- Kill the docker service and start it again
sudo systemctl start docker.service

Ashok
- 3,190
- 15
- 31
-
it's not working, still i'm facing the same problem. harivinu01@penguin:~$ sudo dockerd INFO[2022-10-11T12:27:31.785688981+05:30] Starting up failed to start daemon: pid file found, ensure docker is not running or delete /var/run/docker.pid – Hari Prabhu Oct 11 '22 at 06:58