‘服务’部分中的未知键名称‘ExecRestart’

‘服务’部分中的未知键名称‘ExecRestart’

我有如下的 systemd 单元文件/etc/systemd/system/ei-integrator.service

[Unit]
Description=Integrator
After=network.target

[Service]
ExecStart=/tmp/ei-6.6.0/bin/integrator.sh start
ExecStop=/tmp/ei-6.6.0/bin/integrator.sh stop
ExecRestart=/tmp/ei-6.6.0/bin/integrator.sh restart
PIDFile=/tmp/ei-6.6.0/pid.pid
User=wso2user
Group=wso2
Type=forking
Restart=on-failure
RestartSec=5
StartLimitInterval=60s
StartLimitBurst=3

[Install]
WantedBy=multi-user.target

当我尝试时,systemctl start ei-integrator.service出现了以下错误:

/etc/systemd/system/ei-integrator.service:8: 部分“Service”中未知的键名称“ExecRestart”,忽略。

有人能帮我吗?

我在用Ubuntu 20.04.4 LTS

答案1

正确的语法是“ExecReload”。尝试使用“ExecReload”代替“ExecRestart”,看看是否有效。

您可以在以下文档中找到可用的 Exec 命令。 https://www.freedesktop.org/software/systemd/man/systemd.service.html

更多讨论可见此处: https://github.com/wso2/puppet-ei/issues/70 https://systemd-devel.freedesktop.narkive.com/Ln2Sc9Ot/execrestart

相关内容