소스 설치한 아파치를 부팅시 자동 구동되게 하기

리눅스/APACHE|2015. 1. 16. 16:48
반응형
[root@sysdocu ~]# cp -arp /usr/local/apache/bin/apachectl /etc/init.d/httpd

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

#!/bin/sh

#
# chkconfig: - 85 15 
# description: Apache is a World Wide Web server. 

# It is used to serve HTML files and CGI. 

#

(생략)


위 내용 추가


[root@sysdocu ~]chkconfig --add httpd
[root@sysdocu ~]chkconfig --level 2345 httpd on


반응형

댓글()