Chkconfig替代Ubuntu Server?


144

我已经习惯了在Redhat / RHEL平台上管理服务启动,chkconfig尽管这似乎不是Debian / Ubuntu方式-如何在Ubuntu上更新系统服务的运行级别信息?

最终寻找的等效项:

chkconfig --add <service>
chkconfig --level 345 <service> on
chkconfig --del <service>

1
顺便说一句:您也可以apt-get install chkconfig在ubuntu上打包。但是,由于它多年来ln -s /usr/lib/insserv/insserv /sbin/insserv
已经失效

Answers:


125

相当于chkconfigupdate-rc.d

您寻找的等效项是

update-rc.d <service> defaults
update-rc.d <service> start 20 3 4 5
update-rc.d -f <service>  remove

有关更多信息,请参见此有用的页面,或查看man update-rc.d。


5
update-rc.d 用于打包脚本,不能用于人类。它还适用于Ubuntu不使用的初始化脚本。Ubuntu使用Upstart。
maco 2010年

11
“请注意,该程序是为在软件包维护程序脚本中使用而设计的,因此,仅具有此类脚本所需的功能非常有限。不建议系统管理员使用update-rc.d来管理运行级别。他们应该编辑链接直接或使用运行级别编辑器,例如sysv-rc-conf和bum代替。” 来自手册
maco 2010年

4
我接受此答案,因为更新的手册页已删除该警告。manpages.ubuntu.com/manpages/lucid/man8/update-rc.d.8.html
Marco Ceppi

4
仍然没有改变这样的事实,即,Ubuntu现在甚至不使用SysV初始化脚本,而update-rc.d仅适用于它们。
maco 2010年

1
仍然有一些sysv脚本被使用,特别是它们也可以与新贵一起使用。因此,如果您没有时间转换脚本,您可能仍会以这种方式使用它。
eckes 2015年

53

最好的替代IMHO是sysv-rc-conf要安装,只需运行以下命令:

sudo apt-get install sysv-rc-conf

安装完成后,运行以下命令:

sudo sysv-rc-conf

您可以选中或取消选中在任何执行级别上启动服务的选项,甚至可以从此控制台停止或启动服务。它是永久启用或禁用应用程序以启动ubuntu必不可少的工具。如果需要快速更改,则可以使用CLI界面:

例如,要在执行的第3级和第5级停止ssh:

sysv-rc-conf-off level 35 ssh

Atd从运行级别2、3、4和5开始:

sysv-rc-conf on atd

如果您想了解更多:

man sysv-rc-conf

这正是我需要的,但我确实sysv-rc-conf apache2 on/ sysv-rc-conf apache2 off
亚当ķ院长

这与比较update-rc.d的文件对我有用,后者在/etc/init.d/目录中寻找未安装某些程序(如vsftpd的程序)的脚本。
David Okwii 2014年

在Ubuntu 14.04上为我工作
Hashid Hameed 2015年

您有错别字:sysv-rc-conf-off level 35 ssh应该是sysv-rc-conf --level 35 ssh off
Slam 2016年

经过测试,可以在Ubuntu 16.04LTS运行update-rc.d但没有。
Sopalajo de Arrierez,2013年

10

目前,尚无一个稳定的发行版可以使用Upstart脚本进行处理。Jacob Peddicord为他的Google Summer of Code项目编写了jobservice(后端守护程序)和jobs-admin(与其交谈的GTK + GUI)。清醒的包裹在他的PPA中。它们也存在于小牛的宇宙中。尚无用于jobservice的命令行前端,仅是jobs-admin。


10

尝试这个:

apt-get install chkconfig

这至少在Ubuntu 12.04发行版中有效。


6
不适用于12.10
专家

具有12.04,并且apt-get install chkconfig给出:“ E:软件包'chkconfig'没有安装候选程序”。您的/etc/apt/sources.list文件中有什么?
约翰·利特尔(Little Little)

看起来是为精确而最新发布的:12.04:1.0-79.1-2 0 in http://us.archive.ubuntu.com/ubuntu/ precise/universe i386 Packages。一些修复程序从未将其打包。
eckes 2015年

2
Ubuntu 14.04上没有软件包。我们需要添加其他来源吗?
Hashid Hameed

5

让我们从零到目标-如何逐步实现。

第1步:编写一个Hello World

cat >> /var/tmp/python/server.py <<\EOF
#/usr/bin/python
import time
while True:
  print "hello> YES Bello"
  time.sleep(30)

EOF

步骤2:让我们的Hello World应用程序server.py自动化

cat >> /var/tmp/myserver.sh <<\EOF
#!/bin/sh
script='/var/tmp/python/server.py'
export DISPLAY=:0.0 && /usr/bin/python $script &

EOF
chmod +x /var/tmp/myserver.sh

cat >> /etc/init.d/myserver <<\EOF

#! /bin/sh
PATH=/bin:/usr/bin:/sbin:/usr/sbin
DAEMON=/var/tmp/myserver.sh
PIDFILE=/var/run/myserver.pid

test -x $DAEMON || exit 0

. /lib/lsb/init-functions

case "$1" in
  start)
     log_daemon_msg "Starting feedparser"
     start_daemon -p $PIDFILE $DAEMON
     log_end_msg $?
   ;;
  stop)
     log_daemon_msg "Stopping feedparser"
     killproc -p $PIDFILE $DAEMON
     PID=`ps x |grep server.py | head -1 | awk '{print $1}'`
     kill -9 $PID       
     log_end_msg $?
   ;;
  force-reload|restart)
     $0 stop
     $0 start
   ;;
  status)
     status_of_proc -p $PIDFILE $DAEMON atd && exit 0 || exit $?
   ;;
 *)
   echo "Usage: /etc/init.d/atd {start|stop|restart|force-reload|status}"
   exit 1
  ;;
esac

exit 0


EOF
chmod +x /etc/init.d/myserver
chmod -R 777 /etc/init.d/myserver

第三步:

$ update-rc.d myserver defaults
update-rc.d: warning: /etc/init.d/myserver missing LSB information
update-rc.d: see <http://wiki.debian.org/LSBInitScripts>
 Adding system startup for /etc/init.d/myserver ...
   /etc/rc0.d/K20myserver -> ../init.d/myserver
   /etc/rc1.d/K20myserver -> ../init.d/myserver
   /etc/rc6.d/K20myserver -> ../init.d/myserver
   /etc/rc2.d/S20myserver -> ../init.d/myserver
   /etc/rc3.d/S20myserver -> ../init.d/myserver
   /etc/rc4.d/S20myserver -> ../init.d/myserver
   /etc/rc5.d/S20myserver -> ../init.d/myserver
  • 因此,在第3步中,系统将在启动时自动将server.py作为守护程序执行,并使其易于自动化

希望能有所帮助。


2
+1:非常有用的答案,但我认为它附有错误的问题。
克拉丽丝2014年
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.