要启动或停止Docker守护程序,您需要使用systemctl
命令(适用于大多数Linux发行版)或者通过运行service docker start
和service docker stop
命令(针对较旧的Linux发行版)。
对于使用systemd的系统:
sudo systemctl start docker
sudo systemctl stop docker
sudo systemctl status docker
sudo systemctl enable docker
对于较旧的Linux发行版,您可能需要使用service
命令:
sudo service docker start
sudo service docker stop
sudo service docker status
sudo chkconfig docker on