定义了一个systemd服务:
[Unit]
Description=WebGPS
After=gpsd.service
[Service]
ExecStart=/usr/sbin/daemonize -p /run/gpsd/webgps.pid -o /var/log/webgps.log /usr/bin/python /var/www/gpsd/webgps.py c
TimeoutSec=1200
WorkingDirectory=/run/gpsd
Environment=PYTHONUNBUFFERED=1
RuntimeDirectory=gpsd
RuntimeDirectoryMode=0755
PermissionsStartOnly=true
Type=forking
PIDFile=/run/gpsd/webgps.pid
Restart=on-failure
GuessMainPID=true
#User=www-data
#Group=www-data
StateDirectory=gpsd
StateDirectoryMode=0755
PrivateTmp=true
ProtectSystem=full
ProtectHome=false
NoNewPrivileges=true
PrivateDevices=true
MemoryDenyWriteExecute=true
[Install]
WantedBy=default.target
然后执行systemctl daemon-reload
。到目前为止一切顺利。下一个:systemctl enable webgps
。也还好。从开始整个事情systemctl start webgps
就达到了预期的效果——但是:
WorkingDirectory=/run/gpsd
该工作目录仅包含
# ll /run/gpsd
insgesamt 4,0K
drwxr-xr-x 2 0 0 60 Feb 27 16:13 ./
drwxr-xr-x 25 0 0 880 Feb 27 16:13 ../
-rw-r--r-- 1 0 0 5 Feb 27 16:13 webgps.pid
搜索此启动的应用程序创建的文件,我可以在其中找到它们/
!这不是WorkingDirectory
让你假设的:
# ll /
insgesamt 99K
drwxr-xr-x 21 0 0 4,0K Feb 27 16:13 ./
drwxr-xr-x 21 0 0 4,0K Feb 27 16:13 ../
drwxr-xr-x 2 0 0 4,0K Sep 8 06:49 bin/
drwxr-xr-x 3 0 0 2,5K Jan 1 1970 boot/
drwxr-xr-x 16 0 0 3,7K Feb 27 14:35 dev/
drwxr-xr-x 128 0 0 12K Feb 16 06:48 etc/
-rw-r--r-- 1 0 0 2,6K Feb 27 16:15 gpsd-c.html
-rw-r--r-- 1 0 0 5,3K Feb 27 16:15 gpsd-c.js
drwxr-xr-x 4 0 0 4,0K Apr 8 2019 home/
drwxr-xr-x 16 0 0 4,0K Apr 8 2019 lib/
drwx------ 2 0 0 16K Apr 8 2019 lost+found/
drwxr-xr-x 3 0 0 4,0K Apr 8 2019 media/
drwxr-xr-x 2 0 0 4,0K Apr 8 2019 mnt/
drwxr-xr-x 7 0 0 4,0K Apr 8 2019 opt/
dr-xr-xr-x 131 0 0 0 Jan 1 1970 proc/
drwx------ 7 0 0 4,0K Feb 27 16:11 root/
drwxr-xr-x 25 0 0 880 Feb 27 16:13 run/
drwxr-xr-x 2 0 0 4,0K Sep 11 00:07 sbin/
drwxr-xr-x 2 0 0 4,0K Apr 8 2019 srv/
dr-xr-xr-x 12 0 0 0 Feb 27 16:08 sys/
drwxrwxrwt 11 0 0 4,0K Feb 27 16:15 tmp/
drwxr-xr-x 11 0 0 4,0K Apr 8 2019 usr/
drwxr-xr-x 12 0 0 4,0K Aug 20 2019 var/
我能找到的所有状态都是相同的:WorkingDirectory
是应用程序运行的目录。知道这是怎么回事吗?
答案1
daemonize
对于在服务管理器下使用摇摇欲坠且危险的 PID 文件机制以及完全不必要的程序的东西,“一切正常”并不是真正的描述。讽刺的是,daemonize
这就是你的问题的原因。它正在更改您的工作目录。
[Service]
ExecStart=/usr/bin/python /var/www/gpsd/webgps.py c
TimeoutSec=1200
WorkingDirectory=/run/gpsd
Environment=PYTHONUNBUFFERED=1
RuntimeDirectory=gpsd
RuntimeDirectoryMode=0755
PermissionsStartOnly=true
Type=simple
Restart=on-failure
#User=www-data
#Group=www-data
StateDirectory=gpsd
StateDirectoryMode=0755
PrivateTmp=true
ProtectSystem=full
ProtectHome=false
NoNewPrivileges=true
PrivateDevices=true
MemoryDenyWriteExecute=true
进一步阅读
- 乔纳森·德博因·波拉德 (2015)。您确实不需要守护进程。真的。。 systemd 恐怖屋。