永久禁用初始化服务


10

我刚刚配置了一个新的运行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年

Answers:


16

在几乎任何RedHat派生的分发中禁用服务的方式是使用以下chkconfig命令:

# chkconfig httpd off

并停止正在运行的服务:

# service httpd stop

无论您的系统是运行还是香草systemd,这些命令都会做正确的事。upstartSysVInit

就其价值而言,尽管upstart在CentOS 6中运行了大多数服务,但实际上仍使用init.d位于中的旧脚本/etc/rc.d/rc<RUNLEVEL>.d。对于这些服务,请chkconfig管理中的符号链接/etc/rc.d/init.d


我是通过从trillan的答案中搜索与update-rc.d等效的东西来发现此问题的。只是想回答我自己的问题,但您击败了我。非常感谢,幼虫。
Max Bucknell 2013年

4

使用chkconfig禁用系统启动过程中不想启动的服务。

列出可用服务及其状态

chkconfig --list

在运行级别2345中禁用服务htttpd

chkconfig --level 2345 httpd off

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.