Raspberry Pi'mde yer kontrolüne başlamak için bir systemd servisi yazdım.
[Unit]
Description=Groundcontrol status monitor
[Service]
ExecStart=/opt/groundcontrol/groundcontrol/start.sh
Type=forking
[Install]
WantedBy=multi-user.target
Komut dosyasını kullanıyorum, çünkü yer denetimi bin dizininden başlatılmadıkça düzgün çalışmayacak. İşte script:
cd /opt/groundcontrol/groundcontrol
./groundcontrol &
Bu, manuel olarak başlattığımda mükemmel çalışıyor, ancak Pi'imi başlatıp çalıştırdığımda systemctl
başarısız olduğunu söylüyor. systemctl status groundcontrol.service
baskılar
groundcontrol.service - Groundcontrol status monitor
Loaded: loaded (/etc/systemd/system/groundcontrol.service; enabled)
Active: failed (Result: exit-code) since Wed 1969-12-31 17:00:14 MST; 43 years 11 months ago
Process: 111 ExecStart=/opt/groundcontrol/groundcontrol/start.sh (code=exited, status=0/SUCCESS)
Main PID: 116 (code=exited, status=2)
Dec 31 17:00:11 waldo systemd[1]: Starting Groundcontrol status monitor...
Dec 31 17:00:12 waldo systemd[1]: Started Groundcontrol status monitor.
Dec 31 17:00:14 waldo systemd[1]: groundcontrol.service: main process exited, code=exited, status=2/INVALIDARGUMENT
Dec 31 17:00:14 waldo systemd[1]: Unit groundcontrol.service entered failed state.
Manuel olarak çalıştırdığımda durum
groundcontrol.service - Groundcontrol status monitor
Loaded: loaded (/etc/systemd/system/groundcontrol.service; enabled)
Active: active (running) since Thu 2013-12-26 15:38:02 MST; 1s ago
Process: 296 ExecStart=/opt/groundcontrol/groundcontrol/start.sh (code=exited, status=0/SUCCESS)
Main PID: 297 (groundcontrol)
CGroup: /system.slice/groundcontrol.service
`-297 ./groundcontrol
Dec 26 15:38:02 waldo systemd[1]: Started Groundcontrol status monitor.
Groundcontrol ile sağlanan bir System V init betiği vardı ancak bunu systemd ile nasıl kullanacağımı bilmiyordum - bu mümkün mü ve hizmetimden daha iyi çalışacak mı? Değilse, bu servisi nasıl düzeltebilirim? Teşekkürler.
groundcontrol
Önyükleme işleminde doğru şekilde sipariş verebilmeniz için gereksinimlerini ve gereksinimlerini anlamanız gerekir .