Próbuję wykonać skrypt powłoki z systemd. Skrypt działa poprawnie z wiersza poleceń.
Skrypt (runServer.sh) uruchamia proces Java i wygląda następująco:
#!/bin/bash
java -jar -Dresources=/home/pruss/dev/ServerDeploy5-4.1/Server/resources/MyServer.jar "0" "Test"
Wewnątrz /usr/lib/systemd/system
(lub /lib/systemd/system/
w innych systemach operacyjnych) utworzyłem plik usługi (myService.service):
[Unit]
Description=My Servers service
[Service]
ExecStart=/home/pruss/dev/ServerDeploy5-4.1/Server/runServer.sh
User=root
Type=oneshot
[Install]
WantedBy=multi-user.target
Wynik
Job for myService.service failed. See "systemctl status myService.service" and "journalctl -xn" for details.
Próbuję:
systemctl status myService.service
Loaded: loaded (/usr/lib/systemd/system/myService.service; disabled)
Active: failed (Result: exit-code) since Thu 2015-07-23 12:27:38 BST; 26s ago
Main PID: 28413 (code=exited, status=203/EXEC)