22 lines
442 B
Markdown
22 lines
442 B
Markdown
```bash
|
|
|
|
```
|
|
|
|
##### 서비스 삭제
|
|
```bash
|
|
|
|
systemctl stop [servicename].service
|
|
systemctl disable [servicename].service
|
|
rm /etc/systemd/system/[servicename].service
|
|
rm /etc/systemd/system/[servicename].service # and symlinks that might be related
|
|
rm /usr/lib/systemd/system/[servicename].service
|
|
rm /usr/lib/systemd/system/[servicename].service # and symlinks that might be related
|
|
systemctl daemon-reload
|
|
systemctl reset-failed
|
|
|
|
|
|
|
|
|
|
|
|
|
|
``` |