当前位置: 首页>>技术教程>>正文


ubuntu启动时禁用服务

问题描述

我在 Ubuntu 上安装了这些应用程序:

  • nginx

  • php5-fpm

  • mysql服务器

  • 雷迪斯

这些应用程序在每次计算机打开时运行。

如何防止这些应用程序在启动时运行?\n因此,这些应用程序仅在我执行“service nginx start”时运行。

最佳方法

使用:

systemctl disable <service>

如果您不使用 systemd(Ubuntu 14.10 及更早版本),请使用:

update-rc.d -f <service> remove

以下命令将为您提供计算机上所有服务的列表:

service --status-all

您应该能够在其中找到要禁用的服务的名称。

有关更多详细信息,请参阅 enabling-and-disabling-services,有关很长的答案,请参阅此 post (正如 @muru 已经提到的)。

有关更多详细信息,请参阅有关 systemctl 的 Digital Oceanman page 的这篇文章。

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/13975.html,未经允许,请勿转载。