操做系統:CentOS6.5 64bitlinux
Nginx: 1.9.3nginx
一、下載Nginxc++
[root@iZ94jj63a3sZ softs]# wget http://nginx.org/download/nginx-1.9.3.tar.gz
二、安裝依賴的庫web
[root@iZ94jj63a3sZ softs]# yum -y install gcc automake autoconf libtool make libxml2-devel libxslt-devel perl-devel perl-ExtUtils-Embed
[root@iZ94jj63a3sZ softs]# yum install gcc gcc-c++
三、安裝pcre,用於重寫rewritebash
[root@iZ94jj63a3sZ softs]# wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.37.tar.gz
將pcre安裝到 /usr/local/srcspa
[root@iZ94jj63a3sZ softs]# cd /usr/local/src/
[root@iZ94jj63a3sZ src]# tar -zxvf pcre-8.37.tar.gz [root@iZ94jj63a3sZ src]# cd pcre-8.37
[root@iZ94jj63a3sZ pcre-8.37]# ./configure [root@iZ94jj63a3sZ pcre-8.37]# make [root@iZ94jj63a3sZ pcre-8.37]# make install
四、安裝zlib,用於gzip壓縮操作系統
安裝到/usr/local/src.net
[root@iZ94jj63a3sZ src]# wget http://zlib.net/zlib-1.2.8.tar.gz
[root@iZ94jj63a3sZ src]# tar -zxvf zlib-1.2.8.tar.gz
[root@iZ94jj63a3sZ src]# cd zlib-1.2.8
[root@iZ94jj63a3sZ zlib-1.2.8]# ./configure [root@iZ94jj63a3sZ zlib-1.2.8]# make [root@iZ94jj63a3sZ zlib-1.2.8]# make install
五、安裝openssl,用於sslrest
安裝到/usr/local/src 解壓便可code
[root@iZ94jj63a3sZ src]# wget ftp://ftp.openssl.org/source/old/1.0.2/openssl-1.0.2d.tar.gz
[root@iZ94jj63a3sZ src]# tar -zxvf openssl-1.0.2d.tar.gz
六、安裝Nginx
安裝到/usr/local/nginx
[root@iZ94jj63a3sZ softs]# cd /usr/local [root@iZ94jj63a3sZ local]# pwd /usr/local [root@iZ94jj63a3sZ local]#
[root@iZ94jj63a3sZ local]# cd nginx-1.9.3
[root@iZ94jj63a3sZ nginx-1.9.3]# ./configure \ --prefix=/usr/local/nginx \ --with-http_ssl_module \ --with-pcre=/usr/local/src/pcre-8.37 \ --with-zlib=/usr/local/src/zlib-1.2.8 \ --with-openssl=/usr/local/src/openssl-1.0.2d
[root@iZ94jj63a3sZ nginx-1.9.3]# make [root@iZ94jj63a3sZ nginx-1.9.3]# make install
七、設置開機自啓動
在/etc/init.d/下創建nginx文件
[root@iZ94jj63a3sZ init.d]# vi nginx
寫入如下內容:
#!/bin/bash # nginx Startup script for the Nginx HTTP Server # chkconfig: - 85 15 # description: Nginx is a high-performance web and proxy server. # It has a lot of features, but it's not for everyone. # processname: nginx # pidfile: /usr/local/nginx/logs/nginx.pid # config: /usr/local/nginx/conf/nginx.conf nginxd=/usr/local/nginx/sbin/nginx nginx_config=/usr/local/nginx/conf/nginx.conf nginx_pid=/usr/local/nginx/logs/nginx.pid RETVAL=0 prog="nginx" # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ ${NETWORKING} = "no" ] && exit 0 [ -x $nginxd ] || exit 0 # Start nginx daemons functions. start() { if [ -e $nginx_pid ];then echo "nginx already running...." exit 1 fi echo -n $"Starting $prog: " daemon $nginxd -c ${nginx_config} RETVAL=$? echo [ $RETVAL = 0 ] && touch /var/lock/subsys/nginx return $RETVAL } # Stop nginx daemons functions. stop() { echo -n $"Stopping $prog: " killproc $nginxd RETVAL=$? echo [ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /var/run/nginx.pid } # reload nginx service functions. reload() { echo -n $"Reloading $prog: " #kill -HUP `cat ${nginx_pid}` killproc $nginxd -HUP RETVAL=$? echo } # See how we were called. case "$1" in start) start ;; stop) stop ;; reload) reload ;; restart) stop start ;; status) status $prog RETVAL=$? ;; *) echo $"Usage: $prog {start|stop|restart|reload|status|help}" exit 1 esac exit $RETVAL
賦予可執行權限
[root@iZ94jj63a3sZ init.d]# chmod a+x /etc/init.d/nginx
設置開機啓動
[root@iZ94jj63a3sZ init.d]# chkconfig --add /etc/init.d/nginx
[root@iZ94jj63a3sZ init.d]# chkconfig nginx on
啓動:
[root@iZ94jj63a3sZ lib64]# service nginx start
Starting nginx: [ OK ]
[root@iZ94jj63a3sZ lib64]#
八、啓動報錯處理
[root@iZ94jj63a3sZ init.d]# service nginx start Starting nginx: /usr/local/nginx/sbin/nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory [FAILED]
使用ldd看nginx包含的動態函式庫
[root@iZ94jj63a3sZ src]# ldd $(which /usr/local/nginx/sbin/nginx) linux-vdso.so.1 => (0x00007fff89fff000) libpthread.so.0 => /lib64/libpthread.so.0 (0x0000003978400000) libcrypt.so.1 => /lib64/libcrypt.so.1 (0x000000397b800000) libpcre.so.1 => not found libcrypto.so.10 => /usr/lib64/libcrypto.so.10 (0x00007ffd9a115000) libz.so.1 => /lib64/libz.so.1 (0x0000003977c00000) libc.so.6 => /lib64/libc.so.6 (0x0000003978000000) /lib64/ld-linux-x86-64.so.2 (0x0000003977800000) libfreebl3.so => /lib64/libfreebl3.so (0x000000397ac00000) libdl.so.2 => /lib64/libdl.so.2 (0x0000003978800000) [root@iZ94jj63a3sZ src]# cd /
能夠看到 libpcre.so.1 => not found
解決方法:
進入/lib64目錄中手動連接下
[root@iZ94jj63a3sZ init.d]# cd /lib64/
[root@iZ94jj63a3sZ lib64]# ln -s libpcre.so.0.0.1 libpcre.so.1
而後再啓動.