optionsを公開する必要があるシステムサービスを作成しようとしていますstart|stop|status|restart
。
現在のスクリプトは次のとおりです。
[Unit]
Description=Daemon to start ark server
After=network.target
[Service]
ExecStart=/etc/init.d/arkdaemon start
ExecStop=/etc/init.d/arkdaemon stop
Type=forking
[Install]
WantedBy=multi-user.target
カスタム状態コマンドを指定する方法が見つかりません。
方法があるようですが、どうですか?
ベストアンサー1
Systemd はカスタム状態メッセージをサポートしていますが、以下は満たす必要があるいくつかの前提条件です。
- サービスの種類は次のとおりです。
notify
/run/systemd/notify
サービスはソケットまたはsystemd-notifyを呼び出して現在のサービス状態にsystemdを更新する必要があります。
参考までに、FedoraでApache HTTPDを確認できます(他のディストリビューションでも同じかもしれません)。
systemctl status httpd.service
● httpd.service - The Apache HTTP Server
Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
Active: active (running) since Fri 2017-10-06 15:21:07 CEST; 18h ago
Docs: man:httpd.service(8)
Process: 14424 ExecReload=/usr/sbin/httpd $OPTIONS -k graceful (code=exited, status=0/SUCCESS)
Main PID: 4105 (httpd)
Status: "Total requests: 8; Idle/Busy workers 100/0;Requests/sec: 0.000118; Bytes served/sec: 0 B/sec"
Apacheのステータスレポートは次のように表示されます。要求の総数:予定あり/なしワーカー100/0
したがって、pid 4105を添付すると、定期的strace
にステータスアップデートを次に送信することがわかりますsystemd
。
sudo strace -f -p 4105
wait4(-1, 0x7ffcfab4a25c, WNOHANG|WSTOPPED, NULL) = 0
select(0, NULL, NULL, NULL, {tv_sec=1, tv_usec=0}) = 0 (Timeout)
socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0) = 8
getsockopt(8, SOL_SOCKET, SO_SNDBUF, [212992], [4]) = 0
setsockopt(8, SOL_SOCKET, SO_SNDBUFFORCE, [8388608], 4) = 0
sendmsg(8, {msg_name={sa_family=AF_UNIX, sun_path="/run/systemd/notify"}, msg_namelen=21, msg_iov=[{iov_base="READY=1\nSTATUS=Total requests: 8"..., iov_len=110}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 110
close(8) = 0
wait4(-1, 0x7ffcfab4a25c, WNOHANG|WSTOPPED, NULL) = 0
転送されていることがわかります。準備=1\nSTATUS=総リクエスト数: 8...ソケットに接続/run/systemd/notify
おすすめブック
man systemd-notify
または公式文書。