如何让 Apache 在 Ubuntu 上停止?

发布于 2024-12-02 04:31:58 字数 1459 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葬﹪忆之殇 2024-12-09 04:31:58

使用以下命令从运行级别中删除 apache“自动启动”:

sudo update-rc.d apache2 remove

使用以下命令创建一个脚本:

#!/bin/bash

gksudo /etc/init.d/apache2 start

使其可运行

chmod 0755 apache-starter-shell-script-name

并在您想要启动 apache 时运行它。

Remove apache "autostart" from runlevels with the following:

sudo update-rc.d apache2 remove

Make a script with the following:

#!/bin/bash

gksudo /etc/init.d/apache2 start

Make it runnable

chmod 0755 apache-starter-shell-script-name

And run it when you want to start apache.

满身野味 2024-12-09 04:31:58

我认为这更像是 serverfault.com 的问题。

不过,您可以修改运行级别配置(Ubuntu 使用 upstart 而不是 init),然后在需要时从控制台手动启动 apache。

不幸的是,我不知道暴发户的配置选项,但我认为一些谷歌搜索它的配置应该对你有帮助。

编辑:也许启动管理器就是您所需要的(http://www.marzocca.net/linux/bum.html)-我不使用Ubuntu作为桌面。

编辑2:尝试

sudo update-rc.d apache2 disable

I think this is more a serverfault.com question.

Nevertheless you could modify your runlevel configuration (Ubuntu uses upstart instead of init) and then start apache manually from the console when you need it.

Unfortunately I don't know the upstart configuration options by mind but I think some googling for it's configuration should help you.

Edit: Maybe Boot-Up Manager is what you need (http://www.marzocca.net/linux/bum.html) - I don't use Ubuntu as desktop.

Edit2: Try

sudo update-rc.d apache2 disable
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文