我有一个在 ubuntu 主机上执行的 Python 脚本screen
,我想使用 Chef 配方将其转换为适当的后台服务。python 脚本只是启动一个丢弃所有电子邮件的 SMTP 服务器(“黑洞”服务器,可用于测试),然后调用 pythonasyncore.loop()
永远运行。
我如何将其变成厨师食谱?我正在使用资源cookbook_file
上传我的python脚本,我知道我需要使用service
资源启动服务,但我不知道如何实际创造服务开始。我是否需要在操作系统级别写入文件/etc/init.d
或/etc/systemd
创建服务,或者是否有一些 Chef 配方/资源可以调用来使用给定的命令为我创建后台服务?
我正在使用 Chef11.18.12并且无法升级,因此排除了一些食谱(例如运行) 需要 12+。主机操作系统是 Ubuntu 14.04.3
。
以下是我目前得到的信息:
include_recipe 'apt'
include_recipe 'python'
# the python script to run as a background service
cookbook_file '/usr/local/bin/smtp_server_blackhole.py' do
source 'smtp_blackhole_server.py'
owner 'root'
group 'root'
mode '0755'
end
# the init.d file which defines the service? Not sure about this part...
cookbook_file "init.d_smtp_server_blackhole" do
path "/etc/init.d/smtp_server_blackhole.py"
source "init.d_smtp_server_blackhole"
owner "root"
group "root"
mode "0755"
end
service "smtp_blackhole_server.py" do
# this doesn't work, because the command doesn't reference an existing service?
start_command 'python /usr/local/bin/smtp_blackhole_server.py -c bounce'
action [ :enable, :start ]
# I think I need to do something like this, to wait for the init.d file to be written
subscribes :restart, "cookbook_file[init.d_smtp_server_blackhole]", :immediately
end
潜在解决方案
- 守护进程工具是一个 LWRP,它允许您使用运行命令的模板文件创建服务。但是,它已经有几年没有更新了,并且它要求您
svscan
为“适当的初始化系统”设置服务。 - 这个问题对于如何使用各种代码示例和 Python 库编写 Python 守护进程服务有一些很好的答案(例如python 守护进程和守护进程),但它没有介绍如何在 Chef 菜谱中以幂等方式执行 OS 命令。
- https://github.com/poise/poise-service看起来像我需要的,但它不支持 Chef 11.18,因为 poise 2.0 需要 chef 12+。
答案1
对于 Ubuntu 14.04,您很可能希望从 Upstart 开始,因为这是系统初始化框架。查看 poise-service 中的 upstart Erb 模板以了解如何设置,或查看 Canonical 的 Upstart Cookbook。如果您想使用 Upstary 以外的其他东西,我建议您使用 Supervisord,因为它既简单又在 Python 社区中很受欢迎。