개발자 인생/Linux

MySQL, Apache 자동실행 설정

잘나가는개발자 2016. 7. 11. 14:02
728x90
반응형
SMALL

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 mysqld
Apache 자동실행 설정

MySQL 과 같이 /usr/local/apache/bin/apachectl 자동실행 스크립트를 /etc/init.d 디렉토리에 복사한다.

# cp /usr/local/apache/bin/apachectl /etc/init.d/httpd

Apache 의 자동 실행 스크립트 파일은 chkconfig 명령어를 이용하여 등록할 수 없다. chkconfig 명령어를 사용하기 위해서 다음과 같은 내용을 스크립트 파일의 주석부분에 추가한다.

# Comments to support chkconfig on RedHat Linux # chkconfig: 2345 90 90 # description: A very fast and reliable WebServer engine.

MySQL 과 같이 chkconfig 명령어를 이용하여 httpd 의 자동 실행을 등록한다.

# chkconfig --add httpd
자동 실행 설정 확인

다음과 같이 chkconfig 명령어를 사용하여 설정사항을 확인할 수 있다.

# chkconfig --list



728x90
반응형
LIST