-
Notifications
You must be signed in to change notification settings - Fork 154
부팅 시 Yona 자동 실행하기(리눅스)
JJ edited this page May 31, 2017
·
3 revisions
- $ sudo vi /lib/systemd/system/yona.service
[Unit]
Description=Yona service
After=multi-user.target
[Service]
Type=idle
ExecStart=/usr/local/yona/restart.sh
[Install]
WantedBy=multi-user.target
이 때 Yona 실행을 위해 사용할 restart.sh 스크립트는 링크 참조
- $ sudo chmod 664 /lib/systemd/system/yona.service
-
$ sudo systemctl daemon-reload
-
$ sudo systemctl enable yona.service
-
$ sudo systemctl stop yona
-
$ sudo systemctl restart yona
-
$ sudo systemctl status yona