无法启动 docker 守护进程
Unable to launch docker daemon
我已经下载了 docker,当我尝试使用命令启动 docker 守护程序时,
服务 docker 守护进程
我收到以下错误消息,
Rather than invoking init scripts through /etc/init.d, use the
service(8) utility, e.g. service docker daemon
Since the script you are attempting to invoke has been converted to an
Upstart job
我已经在使用服务命令了。但是错误消息仍然指向我使用 "service docker dameon" 命令,就好像我正在使用不同的命令
您不需要添加 daemon
尝试:
sudo service docker start
如果你的平台支持systemctl,你也可以运行
sudo systemctl start docker
我已经下载了 docker,当我尝试使用命令启动 docker 守护程序时, 服务 docker 守护进程 我收到以下错误消息,
Rather than invoking init scripts through /etc/init.d, use the service(8) utility, e.g. service docker daemon
Since the script you are attempting to invoke has been converted to an Upstart job
我已经在使用服务命令了。但是错误消息仍然指向我使用 "service docker dameon" 命令,就好像我正在使用不同的命令
您不需要添加 daemon
尝试:
sudo service docker start
如果你的平台支持systemctl,你也可以运行
sudo systemctl start docker