./categories/os
systemd unit 등록
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/
관련 링크: https://victorydntmd.tistory.com/215
./comments