1. Docker 服务无法启动
- The detail exception as below:
systemctl status docker
......
unable to configure the Docker daemon with file /etc/docker/daemon.json: invalid chara...f value
......
Fixed method:
## 删除/etc/docker/daemon.json 中的insecure-registries设置即可,
## 然后执行如下命令启动docker
systemctl daemon-reload
systemctl start docker
- The detail exception as below:
Error starting daemon: error initializing graphdriver: driver not supported
Fixed method:
# rm -rf /var/lib/docker/*
# systemctl start docker.service