问题--Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
上班后发现服务不在线,docker 也无法启动,检查 daemon.json 配置文件出问题了 。
检查:
# 查看 docker 内全部进程 docker ps
提示错误:Cannot connect to the Docker daemon at unix:///var/run/docker.sock.TSthedockerdaemon running?
# 查看 docker 状态
systemctl status docker
# 检查 daemon.json 配置文件 cat /etc/docker/daemon.json
发现确实有改动,多了点 “奇怪” 的内容,重新编辑保存。
# 启动 docker 容器
systemctl start docker
# 查看 docker 状态
systemctl status docker.service
解决。