Arch 中的服务未在 PC 启动时启动

Arch 中的服务未在 PC 启动时启动

我正在运行 Arch Linux。我有一个服务,/etc/systemd/system/描述如下

[Unit]
After=network.target

[Service]
Type=simple
ExecStart=(...)service.py
ExecReload=(...)service.py
Restart=always

我将其设置为在网络建立后启动,因为它取决于网络连接。

当我启动电脑时,该服务始终处于非活动状态。如果我手动启动它,它会完美运行。如果出现一些内部错误,它也会重新启动。为什么开机时不启动?

编辑

启用该服务时,我收到以下消息:

➜  ~ systemctl enable py_service.service                                                                                                                     
The unit files have no installation config (WantedBy, RequiredBy, Also, Alias
settings in the [Install] section, and DefaultInstance for template units).
This means they are not meant to be enabled using systemctl.
Possible reasons for having this kind of units are:
1) A unit may be statically enabled by being symlinked from another unit's
   .wants/ or .requires/ directory.
2) A unit's purpose may be to act as a helper for some other unit which has
   a requirement dependency on it.
3) A unit may be started when needed via activation (socket, path, timer,
   D-Bus, udev, scripted systemctl call, ...).
4) In case of template units, the unit is meant to be enabled with some
   instance name specified.`

关于这几点:

  1. 它没有符号链接

  2. 它不是一个帮手

  3. 我以为这已被涵盖After=network...

  4. 我不知道这是什么意思

编辑2根据@dustball的建议,我编辑为:

cat /etc/systemd/system/py_service.service 
[Install]
WantedBy=multi-user.target

[Unit]
After=network.target

[Service]
Type=simple
ExecStart=(...)service.py
ExecReload=(...)service.py
Restart=always

但它没有在启动时启动:(

编辑3 上面的配置有效,我忘记启用它(感谢@Daniel H)使用重新加载服务

sudo systemctl daemon-reload

然后使用启用它

systemctl enable py_service.service

答案1

错误消息已经给了你答案(部分)。服务有一个 [Install] 部分。那里唯一的选项是“WantedBy=”。对于要启用的服务,目标必须需要它。

示例:NetworkManager 有“WantedBy=network.target”,因此当您启用 NetworkManager 时,它会分组到 network.target 中,并在 systemd 启动 network.target 时立即启动

可以把它想象成 SysV-init 中的运行级别,必须将守护进程插入到运行级别中,否则......它应该什么时候启动?

一个安全的默认设置是设置“WantedBy=multi-user.target”,它是最后一个启动的。

相关内容