자꾸만 까먹어서..
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 [서비스명]
[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 [서비스명]
이상.
'Linux > Apache' 카테고리의 다른 글
리눅스 가상 디렉터리만들기 (0) | 2013.07.24 |
---|---|
리눅스 아파치 특정 IP만 접속 허용 (0) | 2013.04.03 |
[SSH] 터미널 프롬프트에서 절대 경로 표시 (0) | 2012.11.07 |