Nginx-禁用自动启动


Answers:


92

试试这个命令:

sudo update-rc.d -f nginx disable

1
我试过了sudo update-rc.d -f nginx disable。它们之间有什么区别?
Alex Malex 2012年

1
区别在于disable更好!:)你得到了我。它有效地“ dpkg了解了您的偏好,以防止启动启动脚本被执行(因为也dpkg运行update-rc.d)”。感谢@Lekensteyn进行解释
沙洛爵士(SirCharlo)2012年

1
我已经跑了disable,然后remove。我该如何撤消呢?
Alex Malex 2012年

嗯。您要立即启用自动启动吗?
沙洛爵士(SirCharlo)2012年

4
sudo update-rc.d nginx defaults; sudo update-rc.d -f nginx disable
沙洛爵士(SirCharlo)2012年

24

用这个:

sudo systemctl disable nginx

它将禁用它,如果您想停止运行服务,请使用以下命令:

sudo service nginx stop

在Ubuntu 17.10上工作


它也适用于ububut 18.04
Amrit Shrestha
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.