我刚刚配置了一个新的运行CentOS 6的VPS,它随Apache一起提供。
我想禁用Apache,因为我将改用Nginx。
我知道我可以删除/etc/init.d/中的脚本,但是我不想这样做,因为这是系统附带的东西。我宁愿有一个优雅的方式来禁用该服务。
我以为我可以在/ etc / inittab中放一些东西,但是inittab包含:
# inittab is only used by upstart for the default runlevel.
#
# ADDING OTHER CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.
#
# System initialization is started by /etc/init/rcS.conf
#
# Individual runlevels are started by /etc/init/rc.conf
#
# Ctrl-Alt-Delete is handled by /etc/init/control-alt-delete.conf
#
# Terminal gettys are handled by /etc/init/tty.conf and /etc/init/serial.conf,
# with configuration in /etc/sysconfig/init.
#
# For information on how to write upstart event handlers, or how
# upstart works, see init(5), init(8), and initctl(8).
#
# Default runlevel. The runlevels used are:
# 0 - halt (Do NOT set initdefault to this)
# 1 - Single user mode
# 2 - Multiuser, without NFS (The same as 3, if you do not have networking)
# 3 - Full multiuser mode
# 4 - unused
# 5 - X11
# 6 - reboot (Do NOT set initdefault to this)
#
id:3:initdefault:
这使我相信系统正在运行新贵。好吧,我看了一下,在upstart中禁用服务的正确方法是添加替代文件。所以我跑:
% 'manual' > /etc/init/httpd.override
并重新启动我的服务器。但是httpd仍在运行!对此感到困惑,我决定通过运行以下命令来检查upstart是初始化服务
% readlink /proc/1/exe
/sbin/init
嗯,那不是我期望看到的。也许我毕竟不是新贵。有确定的检查方法吗?如果我正在运行init,建议的永久禁用服务的方法是什么?我对这一切都是陌生的,而且似乎有很多相互矛盾的意见。
谢谢大家的帮助。
如果不打算使用apache,为什么不删除它呢?
—
Frederik Nielsen 2013年
因为将来可能要使用它,所以可以用mod_wsgi代理Python应用程序或运行PHP。现在,我不想使用它。这似乎是我将来在使用不同服务时可能还会遇到的问题。
—
Max Bucknell 2013年