nugawiki

./categories/os

systemd unit 등록

업데이트 2026-07-21 조회수

systemd unit 등록 (CentOS 7+)

파일: /usr/lib/systemd/system/이름.service (또는 /etc/systemd/system/)

[Unit]
Description=My App
After=network.target

[Service]
Type=forking
ExecStart=/path/to/start.sh
ExecStop=/path/to/stop.sh
Restart=on-failure

[Install]
WantedBy=multi-user.target
systemctl daemon-reload
systemctl enable --now 이름
systemctl status 이름
journalctl -u 이름 -e

CentOS 6: chkconfig / /etc/rc.d/init.d/

./comments