smusumeche Asked: 2010-02-03 12:17:54 +0800 CST2010-02-03 12:17:54 +0800 CST 2010-02-03 12:17:54 +0800 CST 在 Linux 上禁用 Apache 自动启动 772 我正在运行安装了 Apache 的 CentOS。它会自动启动(脚本在 /etc/init.d 中)。由于这是一个独立的数据库服务器,我不需要运行 Apache。如何禁用启动?只需删除 /etc/init.d 中的文件? linux centos apache-2.2 2 个回答 Voted Best Answer Kyle Brandt 2010-02-03T12:20:27+08:002010-02-03T12:20:27+08:00 # chkconfig <servicename> off 然后验证: chkconfig --list | grep <servicename> 因此chkconfig httpd off,您可能想阅读man init. 验证应该返回httpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off。如果你想停止它而不重新启动 run /etc/init.d/httpd stop。所有这些都需要使用 root 权限来完成。 Ali Mezgani 2010-02-03T12:26:28+08:002010-02-03T12:26:28+08:00 对,你也可以使用设置配置工具来做到这一点: sudo setup
# chkconfig <servicename> off
然后验证:
chkconfig --list | grep <servicename>
因此
chkconfig httpd off
,您可能想阅读man init
. 验证应该返回httpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off
。如果你想停止它而不重新启动 run/etc/init.d/httpd stop
。所有这些都需要使用 root 权限来完成。对,你也可以使用设置配置工具来做到这一点: