นอกเหนือจากโซลูชันของ@ Michael Daffinคุณยังสามารถใช้เครื่องมือdaemonizeเพื่อทำให้การใช้งานforking
เป็นไปตามที่แสดงในตัวอย่างต่อไปนี้
รับเชลล์สคริปต์เล็กน้อยที่ฉันต้องการ daemonize และที่ฉันต้องการควบคุม systemd ฉันบันทึกเป็น/home/pi/testscript.sh
:
#!/bin/bash
while true;
do
sleep 1
echo -n "."
done
หากคุณยังไม่มีให้ติดตั้ง daemonize ดังนี้:
sudo apt install daemonize
ตอนนี้สร้างไฟล์นิยามบริการไฟล์:
sudo vi /etc/systemd/system/testomat.service
# It is not recommended to modify this file in-place, because it will
# be overwritten during package upgrades. If you want to add further
# options or overwrite existing ones then use
# $ systemctl edit testomat.service
# See "man systemd.service" for details.
# copied from https://github.com/bitcoin/bitcoin/blob/master/contrib/init/bitcoind.service and modified by Michael
[Unit]
Description=Test service
After=network.target
[Service]
ExecStart=daemonize -p /run/testomat/testomat.pid -o /home/pi/testscript.log /home/pi/testscript.sh
TimeoutSec=1200
# Make sure the config directory is readable by the service user
PermissionsStartOnly=true
# Process management
####################
Type=forking
PIDFile=/run/testomat/testomat.pid
Restart=on-failure
GuessMainPID = true
# Directory creation and permissions
####################################
# Run as pi:pi
User=pi
Group=pi
# /run/testomat
RuntimeDirectory=testomat
RuntimeDirectoryMode=0710
# /var/lib/testomat
StateDirectory=testomat
StateDirectoryMode=0710
# Hardening measures
####################
# Provide a private /tmp and /var/tmp.
PrivateTmp=true
# Mount /usr, /boot/ and /etc read-only for the process.
ProtectSystem=full
# Allow access to /home, /root and /run/user
# Chosing "false" is actually no hardening, this is just to demonstrate the usage of a service. Well, I could have omitted it. True. :)
ProtectHome=false
# Disallow the process and all of its children to gain
# new privileges through execve().
NoNewPrivileges=true
# Use a new /dev namespace only populated with API pseudo devices
# such as /dev/null, /dev/zero and /dev/random.
PrivateDevices=true
# Deny the creation of writable and executable memory mappings.
MemoryDenyWriteExecute=true
[Install]
WantedBy=multi-user.target
บริการที่เพิ่งสร้างใหม่จะต้องประกาศให้ systemd:
systemctl daemon-reload
ตอนนี้คุณสามารถเริ่มบริการและสคริปต์ส้อม ตามที่คาดไว้การเริ่มต้นบริการจะกลับมาที่เชลล์ทันที ผลลัพธ์ชัดเจน:
$ tail -f testscript.log
.....................
Type=forking
จะเริ่มต้นกระบวนการของคุณและคาดว่าจะแยกกระบวนการอื่นถ้าคุณกำลังใช้ นอกจากนี้มันจะไม่ทำงานexecStart
เป็นการขยายตัวของเชลล์ดังนั้น&
ในตอนท้ายจะไม่ถูกเข้าใจว่าเป็นแฟล็กพื้นหลัง