1. 서비스 제거 방법
1-1. service명령어 사용
1-2. chkconfig 명령어 사용법
1-3. ntsysv 명령어 사용법
2. 서비스 소개
<작성중>
1-1. service명령어 사용
[root@localhost ~]# service SERVICE_NAME(/etc/rc.d/init.d/아래에 있는) stop
부팅시 시작하지 않도록 할려면 해당 파일(/etc/rc.d/init.d/아래에 있는)을 삭제한다1-2. chkconfig 명령어 사용법
[root@localhost ~]#chkconfig --list
[root@localhost ~]#chkconfig --level 0123456 SERVICE_DAEMON off
[root@localhost ~]#chkconfig XINETD_BASED_SERVICE on
[root@localhost ~]#chkconfig --del SERVICE_DAEMON
//실행중인 데몬 확인
[root@localhost ~]#chkconfig --level 0123456 SERVICE_DAEMON on[root@localhost ~]#chkconfig --level 0123456 SERVICE_DAEMON off
//런레벨 0~6중 SERVICE_DAEMON을 구동/정지
[root@localhost ~]#chkconfig XINETD_BASED_SERVICE off[root@localhost ~]#chkconfig XINETD_BASED_SERVICE on
//런레벨 XINETD_BASED_SERVICE 구동/정지
[root@localhost ~]#chkconfig --add SERVICE_DAEMON[root@localhost ~]#chkconfig --del SERVICE_DAEMON
// SERVICE_DAEMON을 서비스로 추가 제거
1-3. ntsysv 명령어 사용법
*를 이용해 체크되어 손쉽게 지정/
[root@localhost ~]# ntsysv lqqqqqqqqqqqqqqqqqqqqu 서비스 tqqqqqqqqqqqqqqqqqqqqk
x x
x 어떤 서비스를 자동으로 시작하도록 하시겠습니까? x
x x
x [ ] NetworkManager x
x [ ] NetworkManagerDispatcher x
x [ ] acpid a x
x [*] anacron a x
x [ ] apmd a x
x [*] atd a x
x [ ] auditd a x
x [*] autofs x
x x
x lqqqqqqk lqqqqqqk x
x x 확인 x x 취소 x x
x mqqqqqqj mqqqqqqj x
x x
x x
mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj
x x
x 어떤 서비스를 자동으로 시작하도록 하시겠습니까? x
x x
x [ ] NetworkManager x
x [ ] NetworkManagerDispatcher x
x [ ] acpid a x
x [*] anacron a x
x [ ] apmd a x
x [*] atd a x
x [ ] auditd a x
x [*] autofs x
x x
x lqqqqqqk lqqqqqqk x
x x 확인 x x 취소 x x
x mqqqqqqj mqqqqqqj x
x x
x x
mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj
2. 서비스 소개
<작성중>