PC 시작 시 Arch의 서비스가 시작되지 않습니다.

PC 시작 시 Arch의 서비스가 시작되지 않습니다.

저는 아치 리눅스를 사용하고 있습니다. /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

오류 메시지는 이미 (부분적으로) 답변을 제공합니다. 서비스에는 [설치] 섹션이 있습니다. 유일한 옵션은 "WantedBy="입니다. 서비스를 활성화하려면 대상에서 이를 요구해야 합니다.

예: NetworkManager에는 "WantedBy=network.target"이 있으므로 NetworkManager를 활성화하면 network.target으로 그룹화되고 systemd가 network.target을 시작하자마자 시작됩니다.

데몬을 삽입해야 하는 SysV-init의 런레벨과 같다고 생각하세요. 그렇지 않으면... 언제 시작해야 할까요?

안전한 기본값은 마지막으로 시작된 "WantedBy=multi-user.target"을 설정하는 것입니다.

관련 정보