[ Apache ]
- 아파치 소스컴파일을 모두 마치시면 해당 prefix 의 bin 디렉토리 (아무 옵션없이 설치했을 경우 /usr/local/apache/bin)에 보시면 apachectl 이라는 파일이 있습니다.
이 파일 또한 /etc/rc.d/init.d/apachectl 로 복사하시고 chkconfig 를 위하여 파일을 열어 상단 부분에 다음을 추가합니다.
--- /etc/rc.d/init.d/apachectl ---
# chkconfig: - 92 92
# description: Apache Web Server Version 1.3.27
저장하시고 나오신 후
root@localhost # chkconfig --add apachectl
root@localhost # chkconfig --level 2345 apachectl on
[ Mysql ]
- 소스컴파일이 끝나고 mysql 소스디렉토리로 가셔서 support-files 의 mysql.server 라는 파일이 있습니다.
이 파일을 /etc/rc.d/init.d 에 mysqld 로 복사하시고 다음을 실행시킵니다.
root@localhost # chkconfig --add mysqld
root@localhost # chkconfig --level 2345 mysqld on
- 아파치 소스컴파일을 모두 마치시면 해당 prefix 의 bin 디렉토리 (아무 옵션없이 설치했을 경우 /usr/local/apache/bin)에 보시면 apachectl 이라는 파일이 있습니다.
이 파일 또한 /etc/rc.d/init.d/apachectl 로 복사하시고 chkconfig 를 위하여 파일을 열어 상단 부분에 다음을 추가합니다.
--- /etc/rc.d/init.d/apachectl ---
# chkconfig: - 92 92
# description: Apache Web Server Version 1.3.27
저장하시고 나오신 후
root@localhost # chkconfig --add apachectl
root@localhost # chkconfig --level 2345 apachectl on
[ Mysql ]
- 소스컴파일이 끝나고 mysql 소스디렉토리로 가셔서 support-files 의 mysql.server 라는 파일이 있습니다.
이 파일을 /etc/rc.d/init.d 에 mysqld 로 복사하시고 다음을 실행시킵니다.
root@localhost # chkconfig --add mysqld
root@localhost # chkconfig --level 2345 mysqld on