docker安装远程连接后的一个问题,提示服务启动不了

报错内容:

service docker restart
Redirecting to /bin/systemctl restart docker.service
Failed to restart docker.service: Unit is not loaded properly: Invalid argument.
See system logs and 'systemctl status docker.service' for details.

我的错误是把配置文件的内容给注掉了一行,在执行系统命令导入更新(systemctl daemon-reload)的时候没有报错,但是启动执行(systemctl restart docker.service)的时候提示报错了。

我的错误写法:

#ExecStart=/usr/bin/dockerd-current \
ExecStart=/usr/bin/dockerd-current -H tcp://0.0.0.0:2375 -H unix://var/run/docker.sock \
          --add-runtime docker-runc=/usr/libexec/docker/docker-runc-current \
          --default-runtime=docker-runc \
          --exec-opt native.cgroupdriver=systemd \
          --userland-proxy-path=/usr/libexec/docker/docker-proxy-current \
          --init-path=/usr/libexec/docker/docker-init-current \
          --seccomp-profile=/etc/docker/seccomp.json \
          $OPTIONS \
          $DOCKER_STORAGE_OPTIONS \
          $DOCKER_NETWORK_OPTIONS \
          $ADD_REGISTRY \
          $BLOCK_REGISTRY \
          $INSECURE_REGISTRY \
          $REGISTRIES

原始的写法是 # 号后面的内容,我担心改坏了,想加个注释保留一下原来的,但是这个注释可能没有生效。后来我把这个注释的一行删除后,重新加载一遍系统配置更新,再启动docker就好了。

 

你可能感兴趣的:(容器,docker,java,运维)