在raspbian stretch Lite中我创建了以下Systemd服务:
[Unit]
Description=Autostart
After=multi-user.target
[Service]
Type=forking
ExecStart=/home/pi/autostart.sh
User=pi
Group=pi
[Install]
WantedBy=multi-user.target
在这里autostart.sh的内容:
#!/bin/sh -ex
export TERM=linux
clear
mkdir -p /home/pi/logs
/home/pi/bin/./TestApp&
实际执行了脚本(我在文件中添加了调试回声),但是该应用程序未启动。这是QT5控制台应用程序,而不是GUI。
尝试手动启动脚本(即./autostart.sh
)按预期工作。相反,手动启动服务导致此输出:
$ sudo systemctl start autostart.service
$ systemctl status autostart.service
● autostart.service - Autostart
Loaded: loaded (/lib/systemd/system/autostart.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since Thu 2017-09-28 19:56:33 CEST; 9s ago
Process: 1351 ExecStart=/home/pi/autostart.sh (code=exited, status=0/SUCCESS)
Main PID: 1354 (code=exited, status=127)
Sep 28 19:56:33 localhost systemd[1]: Starting Autostart...
Sep 28 19:56:33 localhost autostart.sh[1351]: + export TERM=linux
Sep 28 19:56:33 localhost autostart.sh[1351]: + clear
Sep 28 19:56:33 localhost autostart.sh[1351]: [34B blob data]
Sep 28 19:56:33 localhost systemd[1]: Started Autostart.
Sep 28 19:56:33 localhost systemd[1]: autostart.service: Main process exited, code=exited, status=127/n/a
Sep 28 19:56:33 localhost systemd[1]: autostart.service: Unit entered failed state.
Sep 28 19:56:33 localhost systemd[1]: autostart.service: Failed with result 'exit-code'.
没关系,MKDIR命令未执行(目录已经存在),但是我不明白为什么未执行应用程序。
我该怎么做才能获得有关发生的事情的更多信息?
首先,在后台运行与分叉不同。
您可以摆脱AutoStart脚本,并制作一个更简单的systemd
配置文件。
- 删除
Type=forking
。默认值为Type=simple
,它将在您的后台处理您的应用程序。 - 直接在系统配置中设置
Environment="TERM=linux"
。 - 您可以拥有多个
ExecStart=
行。添加第一个是ExecStart=-/bin/mkdir -p /home/pi/logs
,即使已经制作了目录,额外的"破折号"即使命令也可以'成功'。 - 最后,使用
ExecStart=/home/pi/bin/TestApp
运行您的应用程序
相关的人页面是man systemd.service
,man systemd.exec
,或使用man systemd.directives
查找任何指令。