如何制作systemd监视后台进程

时间:2015-07-27 08:18:07

标签: linux service systemd rhel7

单元文件

[root@myserver system]# cat /etc/systemd/system/thiru.service
[Unit]
Description=My service

[Service]
Type=forking
PIDFile=/var/run/thiru.pid
ExecStart=/tmp/thiru.sh start
ExecStop=/tmp/thiru.sh stop

我的剧本

[root@myserver system]# cat /tmp/thiru.sh
#!/bin/sh

loop()
{
    while true
    do
        sleep 5
    done
}

if [ "$1" = "start" ]; then
    loop &
    echo "$!" > /var/run/thiru.pid
fi

if [ "$1" = "stop" ]; then
    kill $(cat /var/run/thiru.pid)
    rm -f /var/run/thiru.pid
fi

现在,我systemctl start thiru.service时工作正常。但是当我通过直接调用脚本/tmp/thiru.sh start来启动服务时,systemctl不会检测到它。

[root@myserver system]# /tmp/thiru.sh start
[root@myserver system]# systemctl status thiru.service
thiru.service - My service
   Loaded: loaded (/etc/systemd/system/thiru.service; static)
   Active: inactive (dead)

Jul 27 04:14:08 myserver systemd[1]: Starting My service...
Jul 27 04:14:08 myserver systemd[1]: Started My service.
Jul 27 04:14:17 myserver systemd[1]: Stopping My service...
Jul 27 04:14:17 myserver systemd[1]: Stopped My service.

有没有办法让systemd检测到我的服务已经启动?使用PID文件可能吗?

1 个答案:

答案 0 :(得分:1)

systemd仅监控它自己启动的进程。

您不再需要在脚本中编写特定的启动/停止功能。只需在ExecStart=中调用脚本的主要部分。

您不再需要PID文件了。 systemd可以使用cgroup跟踪脚本生成的所有进程。如果systemctl stop thiru没有杀死所有进程,那么systemctl kill --signal=term thiru将会执行此操作。