我需要在python中创建一个守护进程。我做了搜索,找到了一块code。应该在系统启动后自动启动守护程序,如果意外关闭它应该启动它。我在Advanced programming in the Unix environment中阅读了有关守护进程的章节,并提出了两个问题。
要在启动后自动运行脚本,我需要将我的守护程序脚本放到/etc/init.d。这是对的吗?
我该如何重建守护进程?根据本书,我需要在/ etc / inittab中添加一个respawn条目,但我的系统上没有/ etc / inittab。我应该自己创造吗?
答案 0 :(得分:5)
如果您使用的是Ubuntu,我建议您查看upstart。它比inittab
更好,但确实需要一些学习曲线。
编辑(布莱尔):这是我最近为自己的一个程序编写的新手脚本的改编示例。像这样的基本新贵脚本是相当可读/可理解的(尽管很多这样的事情),当你开始做一些奇特的东西时,它们会变得复杂。
description "mydaemon - my cool daemon"
# Start and stop conditions. Runlevels 2-5 are the
# multi-user (i.e, networked) levels. This means
# start the daemon when the system is booted into
# one of these runlevels and stop when it is moved
# out of them (e.g., when shut down).
start on runlevel [2345]
stop on runlevel [!2345]
# Allow the service to respawn automatically, but if
# crashes happen too often (10 times in 5 seconds)
# theres a real problem and we should stop trying.
respawn
respawn limit 10 5
# The program is going to daemonise (double-fork), and
# upstart needs to know this so it can track the change
# in PID.
expect daemon
# Set the mode the process should create files in.
umask 022
# Make sure the log folder exists.
pre-start script
mkdir -p -m0755 /var/log/mydaemon
end script
# Command to run it.
exec /usr/bin/python /path/to/mydaemon.py --logfile /var/log/mydaemon/mydaemon.log
答案 1 :(得分:2)
要创建守护程序,请使用双叉(),如您找到的代码所示。 然后你需要为你的守护进程编写一个init脚本并将其复制到/etc/init.d /.
http://www.novell.com/coolsolutions/feature/15380.html
有很多方法可以指定守护程序的自动启动方式,例如chkconfig。
http://linuxcommand.org/man_pages/chkconfig8.html
或者您可以手动为某些运行级别创建符号链接。
最后,您需要在意外退出时重新启动服务。您可以在/ etc / inittab中包含resvwn条目。