MySQL 자동실행 설정먼저 /usr/local/mysql/share/mysql/mysql.server 파일을 /etc/init.d 디렉토리에 복사한다.# cp /usr/local/mysql/share/mysql/mysql.server /etc/init.d/mysqld다음과 같이 chkconfig 명령어를 이용하여 mysqld 의 자동 실행을 등록한다.# chkconfig --add mysqldApache 자동실행 설정MySQL 과 같이 /usr/local/apache/bin/apachectl 자동실행 스크립트를 /etc/init.d 디렉토리에 복사한다.# cp /usr/local/apache/bin/apachectl /etc/init.d/httpdApache 의 자동 실행 스크립트 파일은 chkconf..