2014년 12월 6일 토요일

[웹서버 설치하기] CentOS에 NginX 설치하기

Nginx란?

Nginx(엔진 x라 읽는다)는 웹 서버 소프트웨어로, 가벼움과 높은 성능을 목표로 한다. 웹 서버, 리버스 프록시 및 메일 프록시 기능을 가진다.

Netcraft의 2011년 1월 웹서버 설문조사에 따르면, nginx는 전체 도메인에서 4번째(7.50%)로 많이 쓰이는 웹서버이며, 활성화된 웹 사이트에 대한 통계에서도 역시 4번째(8.23%)로 많이 사용된다[1].

Nginx는 요청에 응답하기 위해 비동기 이벤트 기반 구조를 가진다. 이것은 아파치 HTTP 서버의 스레드/프로세스 기반 구조를 가지는 것과는 대조적이다. 이러한 구조는 서버에 많은 부하가 생길 경우의 성능을 예측하기 쉽게 해준다.


출처: http://ko.wikipedia.org/wiki/Nginx
  •  Nginx는 apache에 비해서 월등한 성능을 발휘한다는 특징이 있는데요. 특히 그림이 많은 웹서버에서 더 발군의 능력을 뽐낸다고 하네요.

Nginx 설치하기

저는 CentOS 6.5에 Nginx 1.7.8을 설치하기로 했습니다.

/usr/local/src에 다운을 받아 설치하겠습니다.

#cd /usr/local/src

#wget http://nginx.org/download/nginx-1.7.8.tar.gz

#tar zxvf nginx-1.7.8.tar.gz

#cd nginx-1.7.8

준비하기

#yum install -y gcc pcre-* zlib*

컴파일 하기

#./configure --prefix=/usr/local/nginx 

# make && make install

nginx 데몬 실행 파일 생성하기

#vi /etc/init.d/nginx  

밑의 내용을 입력하면 됩니다.

#!/bin/sh
#
# nginx - this script starts and stops the nginx daemin
#
# chkconfig:   - 85 15
# description:  Nginx is an HTTP(S) server, HTTP(S) reverse \
#               proxy and IMAP/POP3 proxy server
# processname: nginx
# config:      /usr/local/nginx/conf/nginx.conf
# pidfile:     /var/run/nginx.pid
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0
nginx="/usr/local/nginx/sbin/nginx"
prog=$(basename $nginx)
NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"
lockfile=/var/lock/subsys/nginx
start() {
    [ -x $nginx ] || exit 5
    [ -f $NGINX_CONF_FILE ] || exit 6
    echo -n $"Starting $prog: "
    daemon $nginx -c $NGINX_CONF_FILE
    retval=$?
    echo
    [ $retval -eq 0 ] && touch $lockfile
    return $retval
}
stop() {
    echo -n $"Stopping $prog: "
    killproc $prog -QUIT
    retval=$?
    echo
    [ $retval -eq 0 ] && rm -f $lockfile
    return $retval
}
restart() {
    configtest || return $?
    stop
    start
}
reload() {
    configtest || return $?
    echo -n $"Reloading $prog: "
    killproc $nginx -HUP
    RETVAL=$?
    echo
}
force_reload() {
    restart
}
configtest() {
  $nginx -t -c $NGINX_CONF_FILE
}
rh_status() {
    status $prog
}
rh_status_q() {
    rh_status >/dev/null 2>&1
}
case "$1" in
    start)
        rh_status_q && exit 0
        $1
        ;;
    stop)
        rh_status_q || exit 0
        $1
        ;;
    restart|configtest)
        $1
        ;;
    reload)
        rh_status_q || exit 7
        $1
        ;;
    force-reload)
        force_reload
        ;;
    status)
        rh_status
        ;;
    condrestart|try-restart)
        rh_status_q || exit 0
            ;;
    *)
        echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
        exit 2
esac

#chmod +x /etc/init.d/nginx

nginx 실행하기

#vi /etc/sysconfig/iptables  // 방화벽에 80 포트 추가

-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT

#/etc/init.d/iptables restart

#/etc/init.d/nginx start

nginx 작동 확인

#/etc/init.d/nginx status

웹 브라우저에서 해당 IP 또는 도메인 입력 후 환영 메시지 확인하면 완료입니다.

댓글 없음:

댓글 쓰기