我刚刚将服务器从Ubuntu 14.10升级到15.04,并且通过自定义upstart脚本启动的一些服务不再运行。
我的理解是我需要将它们重新编写为systemd
服务,但是systemd
一夜之间学习整个系统的想法有些令人生畏。
upstart脚本只是autossh
在启动时启动,而我还有其他两个类似的脚本,它们可以启动长时间运行的进程。
#/etc/init/autossh.conf
description "Maintain a permanent SSH tunnel to <other_server>"
start on started mountall
stop on shutdown
exec autossh -N other_server
如何将其重写为systemd
服务?
3
为Upstart用户使用Systemd是一个很好的起点。
—
muru