「Systemd」:修訂間差異
跳至導覽
跳至搜尋
第20行: | 第20行: | ||
[Install] | [Install] | ||
WantedBy=multi-user.target | WantedBy=multi-user.target | ||
</syntaxhighlight> | |||
這是user模式下的(因為user模式下沒有multi-user.target,也不需要remote-fs.target): | |||
<syntaxhighlight lang="ini"> | |||
# | |||
[Unit] | |||
Description=Description | |||
[Service] | |||
ExecStart=/usr/bin/spawn-fcgi | |||
Restart=on-failure | |||
RestartSec=60 | |||
Type=simple | |||
[Install] | |||
WantedBy=default.target | |||
</syntaxhighlight> | </syntaxhighlight> | ||
於 2023年10月7日 (六) 05:04 的修訂
systemd是一個系統套件。
範例
這是一個不完整的範例:
#
[Unit]
Description=Description
After=remote-fs.target
[Service]
ExecStart=/usr/bin/spawn-fcgi
Restart=on-failure
RestartSec=60
Type=simple
[Install]
WantedBy=multi-user.target
這是user模式下的(因為user模式下沒有multi-user.target,也不需要remote-fs.target):
#
[Unit]
Description=Description
[Service]
ExecStart=/usr/bin/spawn-fcgi
Restart=on-failure
RestartSec=60
Type=simple
[Install]
WantedBy=default.target
外部連結
- 官方網站 (英文)