Systemd hiện chạy trong phần lớn các bản phân phối
Bước 1:
Tìm dịch vụ do người dùng xác định của bạn, dịch vụ của tôi đã ở /usr/lib/systemd/system/
Bước 2:
Tạo tệp văn bản với tên trình soạn thảo văn bản yêu thích của bạn whatever_you_want.service
Bước 3:
Đặt Mẫu sau
vào tệpwhatever_you_want.service
[Unit]
Description=webserver Daemon
[Service]
ExecStart=/usr/bin/java -jar /web/server.jar
User=user
[Install]
WantedBy=multi-user.target
Bước 4:
Chạy dịch vụ của bạn
với tư cách là siêu người dùng
$ 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