记一次docker问题解决
某天运行docker ps,突然报:
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
百度很多后,仍无法解决,最后找到解决方式:
systemctl stop docker.service
systemctl stop docker.socket
systemctl start docker.service
依次运行三个命令,即解决了问题