부팅시 서버 데몬 자동으로 띄우기
부팅시 apache 웹서버와 mysql DB서버 데몬을 자동으로 띄워주는
팁 입니다. 혹시 모르시는 분들을 위해 적어 놓습니다.
웹서버 와 mysql 모두 source 로 설치 하셨다는 과정아래 입니다.
apache 서버의 위치는 /usr/local/apache 이고 ,
mysql 서버의 위치는 /usr/local/mysql 이라고 가정하면
/etc/rc.d/rc.local 스크립트 파일에 다음을 추가 합니다.
if [ -f /usr/local/mysql/libexec/mysqld ]; then
/usr/local/mysql/bin/safe_mysqld &
fi
if [ -f /usr/local/apache/bin/httpd ]; then
/usr/local/apache/bin/apachectl start
fi
그럼 한번 부팅해 보실래요…^^
1 Response
… [Trackback]
[…] Info to that Topic: nblog.syszone.co.kr/archives/15 […]