Arch-Linux

Arch 中的服務未在 PC 啟動時啟動

  • September 18, 2020

我正在執行 Arch Linux。我有/etc/systemd/system/以下描述的服務

[Unit]
After=network.target

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

我將其設置為在建立網路後啟動,因為它取決於網路連接。

當我啟動 PC 時,該服務始終處於非活動狀態。如果我手動啟動它,它會完美執行。如果出現內部錯誤,它也會重新啟動。為什麼開機不啟動?

編輯

啟用該服務時,我收到此消息:

➜  ~ 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

錯誤消息已經(部分)為您提供了答案。服務有一個

$$ Install $$部分。那裡唯一的選擇是“WantedBy =”。要啟用服務,目標必須需要它。 範例:NetworkManager 有“WantedBy=network.target”,所以當你啟用 NetworkManager 時,它會被分組到 network.target 中,並在 systemd 啟動 network.target 時立即啟動

可以把它想像成 SysV-init 中的執行級別,必須將守護程序插入執行級別,否則……它應該何時啟動?

一個安全的預設設置是設置“WantedBy=multi-user.target”,它是最後一個啟動的。

引用自:https://unix.stackexchange.com/questions/337860