我正在运行安装了 Apache 的 CentOS。它会自动启动(脚本位于 /etc/init.d 中)。由于这是一个独立的数据库服务器,我不需要运行 Apache。如何禁用启动?只需删除 /etc/init.d 中的文件即可?
答案1
# 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
。如果您想在不重新启动的情况下停止它,请运行/etc/init.d/httpd stop
。所有这些都需要使用 root 权限完成。
答案2
是的,您也可以使用安装配置工具来完成此操作:
sudo setup