0

my issue's screenshot

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:~$

  • 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 Answers2

0

have you tried kill docker process or restart?

lehanh
  • 569
  • 7
  • 22
0
  1. Delete the pid file
ps -ef | grep docker
kill -9 <PIDs>
  1. 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