티스토리 뷰

*chkconfig 명령어

: 시스템 부팅시 실행 레벨 별로 자동 실행할 서비스 목록 보기, 설정하는 명령어

 

*사용법

 chkconfig --list[이름]

 chkconfig [--level 레벨(1-6)]이름

 chkconfig [--level 레벨(1-6)]이름 <on|off|reset>

 chkconfig --add 이름

 chkconfig --del 이름

 

 

 

 

 

 

 [root@devman~]# chkconfig --list | more

 

 

 [root@devman~]# chkconfig --level 5 mysqld on

 

 

 [root@devman~]# chkconfig --list mysqld

 

 

 [root@devman~]# chkconfig --del mysqld

 

 

 [root@devman~]# chkconfig --add mysqld

 

 

 

 

 

 

 

댓글