LNMP 설치 및 시작 스 크 립 트 작성

1. mysql 설치
cd /usr/local/src/

mysql 다운로드:
wget http://mirrors.sohu.com/mysql/MySQL-5.1/mysql-5.1.72-linux-x86_64-glibc23.tar.gz

압축 풀기:
tar zxvf/usr/local/src/mysql-5.1.72-linux-x86_64-glibc23.tar.gz

이름 변경:
mv mysql-5.1.72-linux-x86_64-glibc23  /usr/local/mysql

mysql 사용자 설정:
useradd -s /sbin/nologin mysql

디 렉 터 리 와 디 렉 터 리 소속 만 들 기:
mkdir -p /data/mysql
chown -R mysql:mysql /data/mysql

컴 파일:
cd /usr/local/mysql
./scripts/mysql_install_db --user=mysql  --datadir=/data/mysql

프로필 복사:
cp support-files/my-large.cnf /etc/my.cnf

시작 스 크 립 트 설정:
cp support-files/mysql.server  /etc/init.d/mysqld
chmod 755 /etc/init.d/mysqld
vim /etc/init.d/mysqld   #  datadir
         {basedir=/usr/local/mysql
         {datadir=/data/mysql
chkconfig --add mysqld
chkconfig mysqld on
service mysqld start

 
2. php 설치
다운로드:
wget http://cn2.php.net/distributions/php-5.4.37.tar.bz2

압축 풀기:
tar jxf php-5.4.37.tar.bz2

계 정 만 들 기:
useradd -s /sbin/nologin php-fpm

컴 파일:
cd php-5.4.37
./configure \
--prefix=/usr/local/php \
--with-config-file-path=/usr/local/php/etc \
--enable-fpm \
--with-fpm-user=php-fpm \
--with-fpm-group=php-fpm \
--with-mysql=/usr/local/mysql \
--with-mysql-sock=/tmp/mysql.sock \
--with-libxml-dir --with-gd \
--with-jpeg-dir --with-png-dir \
--with-freetype-dir --with-iconv-dir \
--with-zlib-dir --with-mcrypt \
--enable-soap --enable-gd-native-ttf \
--enable-ftp --enable-mbstring \
--enable-exif --disable-ipv6 --with-curl
make && make install

프로필 복사:
cp php.ini-production/usr/local/php  /etc/php.ini

시작 설정:
cp /usr/local/src/php-5.4.37/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
chmod 755 /etc/init.d/php-fpm
chkconfig --add php-fpm
service php-fpm start
chkconfig php-fpm on

php - fpm 프로필 설정:
mv /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf

 
3. nginx 설치
다운로드:
wget http://nginx.org/download/nginx-1.6.3.tar.gz

압축 풀기:
tar zxvf nginx-1.6.3.tar.gz

컴 파일:
cd nginx-1.6.3
./configure   --prefix=/usr/local/nginx   --with-pcre
make
make install

시작 nginx: 
/usr/local/nginx/sbin/nginx

nginx 시작 스 크 립 트 작성
vim/etc/init.d/nginx
#!/bin/bash
# chkconfig: - 30 21
# description: http service.
# Source Function Library
. /etc/init.d/functions
# Nginx Settings
 
NGINX_SBIN="/usr/local/nginx/sbin/nginx"
NGINX_CONF="/usr/local/nginx/conf/nginx.conf"
NGINX_PID="/usr/local/nginx/logs/nginx.pid"
RETVAL=0
prog="Nginx"
 
start() {
       echo -n $"Starting $prog: "
       mkdir -p /dev/shm/nginx_temp
       daemon $NGINX_SBIN -c $NGINX_CONF
       RETVAL=$?
       echo
       return $RETVAL
}
 
stop() {
       echo -n $"Stopping $prog: "
       killproc -p $NGINX_PID $NGINX_SBIN -TERM
       rm -rf /dev/shm/nginx_temp
       RETVAL=$?
       echo
       return $RETVAL
}
 
reload(){
       echo -n $"Reloading $prog: "
       killproc -p $NGINX_PID $NGINX_SBIN -HUP
       RETVAL=$?
       echo
       return $RETVAL
}
 
restart(){
       stop
       start
}
 
configtest(){
   $NGINX_SBIN -c $NGINX_CONF -t
   return 0
}
 
case "$1" in
 start)
       start
       ;;
 stop)
       stop
       ;;
 reload)
       reload
       ;;
 restart)
       restart
       ;;
 configtest)
       configtest
       ;;
  *)
       echo $"Usage: $0 {start|stop|reload|restart|configtest}"
       RETVAL=1
esac
 
exit $RETVAL

 
저장 후:
chmod 755 /etc/init.d/nginx
chkconfig --add nginx
chkconfig nginx on

좋은 웹페이지 즐겨찾기