源碼編譯nginx

參考連接 http://www.cnblogs.com/zhoulf... ;
一、系統環境 CentOS 6.8
二、安裝軟件nginx (nginx-1.12.2.tar.gz)
三、其餘所需軟件 openssl-1.1.0g.tar.gz pcre-8.41.tar.gz zlib-1.2.11.tar.gzhtml

在安裝以上軟件前,須要確保系統安裝了g++、gcc、gcc-c++!!!
在安裝以上軟件前,須要確保系統安裝了g++、gcc、gcc-c++!!!
在安裝以上軟件前,須要確保系統安裝了g++、gcc、gcc-c++!!!linux

yum -y install gcc g++
yum -y install gcc-c++

一、安裝openssl

(官網下載地址 http://www.openssl.org)nginx

//進入安裝目錄
cd /usr/local

//下載版本
wget https://www.openssl.org/source/openssl-1.1.0g.tar.gz

//解壓
tar -zxvf openssl-1.1.0g.tar.gz

//進入目錄
cd openssl-1.1.0g

//配置
./config --prefix=/usr/local/openssl  --openssldir=/usr/local/openssl/conf

//編譯安裝
make && make install

二、安裝pcre

(官網下載地址 http://www.pcre.org/)c++

//進入安裝目錄
cd /usr/local

//下載軟件版本
wget https://ftp.pcre.org/pub/pcre/pcre-8.41.tar.gz

//解壓
tar -zxvf pcre-8.41.tat.gz

//進入目錄
cd pcre-8.41

//配置
./configure --prefix=/usr/local/pcre/

//編譯安裝
make && make install

三、安裝zlib包

(官網下載地址 http://www.zlib.net/)網站

//進入安裝目錄
cd /usr/local

//下載版本
wget https://downloads.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.gz

//解壓
tar -zxvf zlib-1.2.11.tar.gz

//進入zlib目錄
cd zlib-1.2.11

//配置
./configure --prefix=/usr/local/zlib

//編譯安裝
make && make install

四、安裝nginx

(官網下載地址 https://nginx.org/en/download...ui

//添加www用戶和www用戶組
groupadd www
useradd -g www www          添加用戶www到www用戶組
 
//建立網站根目錄
mkdir -p /var/www/root/
chmod 775 /var/www/root/

//進入目錄
cd /usr/local

//下載版本
wget https://nginx.org/download/nginx-1.12.2.tar.gz

//解壓
tar -zxvf nginx-1.12.2.tar.gz

//進入nginx目錄文件呀
cd nginx-1.12.2

//配置  (使用openssl、pcre、zlib的源碼路徑)
./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_ssl_module --with-openssl=/usr/local/openssl-1.1.0g --with-pcre=/usr/local/pcre-8.41 --with-zlib=/usr/local/zlib-1.2.11 --with-http_stub_status_module --with-threads

//安裝編譯
make && make install

//驗證
/usr/local/nginx/sbin/nginx -V

//查詢nginx主進程號 
ps -ef | grep nginx

//設置軟鏈接
ln -s /usr/local/nginx/sbin/nginx /usr/local/bin/nginx

五、設置開機自動啓動nginx

參考連接 http://blog.csdn.net/u0138700...this

//首先,在linux系統的/etc/init.d/目錄下建立nginx文件,使用以下命令:.net

vi /etc/init.d/nginx

//複製一下代碼到 /etc/init.d/nginxrest

#!/bin/sh
#
# nginx - this script starts and stops the nginx daemon
#
# chkconfig:   - 85 15
# description:  NGINX is an HTTP(S) server, HTTP(S) reverse \
#               proxy and IMAP/POP3 proxy server
# processname: nginx
# config:      /etc/nginx/nginx.conf
# config:      /etc/sysconfig/nginx
# 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"
[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx
lockfile=/var/lock/subsys/nginx
make_dirs() {
   # make required directories
   user=`$nginx -V 2>&1 | grep "configure arguments:" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -`
   if [ -z "`grep $user /etc/passwd`" ]; then
       useradd -M -s /bin/nologin $user
   fi
   options=`$nginx -V 2>&1 | grep 'configure arguments:'`
   for opt in $options; do
       if [ `echo $opt | grep '.*-temp-path'` ]; then
           value=`echo $opt | cut -d "=" -f 2`
           if [ ! -d "$value" ]; then
               # echo "creating" $value
               mkdir -p $value && chown -R $user $value
           fi
       fi
   done
}
start() {
    [ -x $nginx ] || exit 5
    [ -f $NGINX_CONF_FILE ] || exit 6
    make_dirs
    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
    sleep 1
    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

//修改本身nginx的位置 按照上面一步一步來安裝已經已經配置好,複製直接可用,跳過此步code

nginx="/usr/local/nginx/sbin/nginx" //修改爲nginx執行程序的路徑。
NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf" //修改爲配置文件的路徑。

//保存腳本文件後設置文件的執行權限:

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

//加完這個以後,就能夠使用service對nginx進行啓動,重啓等操做了。

/etc/init.d/nginx start
/etc/init.d/nginx stop

//設置開機自動啓動nginx

chkconfig nginx on
相關文章
相關標籤/搜索