阅读量:0
要启动或停止Docker守护程序,您需要使用systemctl
命令(适用于大多数Linux发行版)或者通过运行service docker start
和service docker stop
命令(针对较旧的Linux发行版)。
对于使用systemd的系统:
- 启动Docker守护程序:
sudo systemctl start docker
- 停止Docker守护程序:
sudo systemctl stop docker
- 检查Docker守护程序的状态:
sudo systemctl status docker
- 若要使Docker在系统启动时自动启动,请运行以下命令:
sudo systemctl enable docker
对于较旧的Linux发行版,您可能需要使用service
命令:
- 启动Docker守护程序:
sudo service docker start
- 停止Docker守护程序:
sudo service docker stop
- 检查Docker守护程序的状态:
sudo service docker status
- 若要使Docker在系统启动时自动启动,请运行以下命令:
sudo chkconfig docker on