我有一个脚本,我想在我的 Ubuntu Server 11.04 无头机上作为服务运行。也就是说,我希望在/etc/init.d/并能够通过service
命令来控制它。
是否有任何指南可以告诉我如何做到这一点?
答案1
答案2
这是一个关于如何创建 upstart 脚本的非常简单的示例: https://wiki.frugalware.org/index.php/Upstart_Job_HOWTO
更新:以上链接已损坏。以下是脚本示例:
description "My startup service"
author "You or someone else"
version "3.14"
pre-start script
echo 'Starting my service ...'
end script
start on net-device-up
stop on runlevel [!2345]
console output
respawn
exec /path/to/your/custom/script
根据需要进行调整。
你应该把脚本放在/etc/init/yourfilename.conf
然后使用以下命令重新加载配置:
sudo initctl reload-configuration
如果一切正常,你应该能够使用以下命令启动它:
sudo start yourfilename