chkconfig | systemctl | 설명 |
---|
chkconfig name on
| systemctl enable name.service
| 서비스 활성화(부팅시 자동 구동) |
chkconfig name off
| systemctl disable name.service
| 서비스 비활성화 |
chkconfig --list name
| systemctl status name.service
systemctl is-enabled name.service
| 서비스의 활성화 여부 표시 |
chkconfig --list
| systemctl list-unit-files --type service
| 모든 서비스의 현재 활성화 여부 표시 |
chkconfig --list
| systemctl list-dependencies --after
| 지정한 target 이후에 시작하는 서비스를 표시 |
chkconfig --list
| systemctl list-dependencies --before
| 지정한 target 이전에 시작하는 서비스를 표시 |