04: Job for docker.service failed because the control process exited with error code解决
Job for docker.service failed because the control process exited with error code
这个一般是由于/etc/docker/daemon.json里面配置有误
正确配置例子
[root@k8s129 v2]# cat /etc/docker/daemon.json
{
"registry-mirrors": ["https://aeckruos.mirror.aliyuncs.com"],
"insecure-registries": ["192.168.6.129:5000"]
}
逗号不能漏
切记切记。。。。。每行是有一个,号作为分隔符。
运维