Linux/Apache2013. 10. 21. 10:42

자꾸만 까먹어서..

chkconfig levels 2345 [서비스명] on

ex) chkconfig --levels 2345 httpd on 


각 레벨(숫자)의 의미는 아래와 같다

1: halt (종료모드)

2: single user mode (단일 사용자 모드, 시스템 복구시)

3: multiuser, without NFS (The same as 3, if you do not have networking)

4: unused

5: X11 (다중사용자 모드 X window mode login)

6: reboot (재부팅)


추가할때는 

chkconfig --add [서비스명]


/************
httpd 서비스는 chkconfig 를 지원하지 않습니다 라고 출력시 

 [root@localhost /]# vi /etc/init.d/httpd

#!/bin/sh 밑에 추가 5줄

# chkconfig: 2345 90 90
# description: init file for Apache server daemon
# processname: /usr/local/server/apache/bin/apachectl
# config: /usr/local/server/apache/conf/httpd.conf
# pidfile: /usr/local/server/apache/logs/httpd.pid

*************/


확인 할때

chkconfig --list [서비스명]


삭제 할때

chkconfig --del [서비스명]


이상.




Posted by E.No