Apache 服务器在系统启动时自动在本地计算机上启动。如何禁用它?
答案1
通常,Ubuntu 默认不安装 Apache 服务器。但是,如果以某种方式安装了它,而您决定不再需要 Apache 服务器,则可以使用以下命令将其从系统中完全删除:
sudo apt purge apache2
如果您需要暂时禁用 Apache(而不从系统中删除它),您可以使用:
sudo systemctl stop apache2.service
sudo systemctl disable apache2.service
因此,如果您稍后决定重新启用它,您可以运行:
sudo systemctl enable apache2.service
sudo systemctl start apache2.service
可以通过以下方式获取Apache服务器当前运行状态的信息:
systemctl status apache2.service
答案2
要在系统重启时停止服务自动重启,您需要运行
sudo systemctl disable service
在你的情况下
sudo systemctl disable apache2
如果您的用户具有 sudo 权限并且属于 sudo 组,则可以从命令中删除 sudo 部分。如果没有,则系统将要求您输入系统密码。