Systemdซึ่งตอนนี้ทำงานใน distros ส่วนใหญ่
ขั้นตอนที่ 1:
ค้นหาบริการที่กำหนดโดยผู้ใช้ของคุณของฉันอยู่ที่ /usr/lib/systemd/system/
ขั้นตอนที่ 2:
สร้างไฟล์ข้อความด้วยโปรแกรมแก้ไขข้อความที่คุณชื่นชอบ whatever_you_want.service
ขั้นตอนที่ 3:
ใส่เทมเพลตต่อไปนี้
ลงในไฟล์whatever_you_want.service
[Unit]
Description=webserver Daemon
[Service]
ExecStart=/usr/bin/java -jar /web/server.jar
User=user
[Install]
WantedBy=multi-user.target
ขั้นตอนที่ 4:
เรียกใช้บริการของคุณ
ในฐานะผู้ใช้ขั้นสูง
$ systemctl start whatever_you_want.service # starts the service
$ systemctl enable whatever_you_want.service # auto starts the service
$ systemctl disable whatever_you_want.service # stops autostart
$ systemctl stop whatever_you_want.service # stops the service
$ systemctl restart whatever_you_want.service # restarts the service