nginx可使用各平臺的默認包來安裝,本文是介紹使用源碼編譯安裝,包括具體的編譯參數信息。php
正式開始前,編譯環境gcc g++ 開發庫之類的須要提早裝好,這裏默認你已經裝好。html
ububtu平臺編譯環境可使用如下指令linux
apt-get install build-essential apt-get install libtool
centos平臺編譯環境使用以下指令nginx
安裝make:c++
yum -y install gcc automake autoconf libtool make
安裝g++:正則表達式
yum install gcc gcc-c++
下面正式開始
---------------------------------------------------------------------------
通常咱們都須要先裝pcre, zlib,前者爲了重寫rewrite,後者爲了gzip壓縮。
1.選定源碼目錄
能夠是任何目錄,本文選定的是/usr/local/srcshell
cd /usr/local/src
2.安裝PCRE庫ubuntu
首先去官網下載pcre的安裝包vim
若是經過FTP的方式,下載地址爲:ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/centos
若是經過http的方式,下載地址爲:http://sourceforge.net/projects/pcre/files/pcre/
目前最新的版本爲8.32,linux對應的安裝包名稱爲:pcre-8.32.tar.gz。
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ 下載最新的 PCRE 源碼包,使用下面命令下載編譯和安裝 PCRE 包:
1 cd /usr/local/src 2 wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.37.tar.gz 3 tar -zxvf pcre-8.37.tar.gz 4 cd pcre-8.34 5 ./configure 6 make 7 make install
3.安裝zlib庫
官網:http://zlib.net/
下載地址:http://prdownloads.sourceforge.net/libpng/zlib-1.2.8.tar.gz?download
http://zlib.net/zlib-1.2.8.tar.gz 下載最新的 zlib 源碼包,使用下面命令下載編譯和安裝 zlib包:
1 cd /usr/local/src 2 3 wget http://zlib.net/zlib-1.2.8.tar.gz 4 tar -zxvf zlib-1.2.8.tar.gz 5 cd zlib-1.2.8 6 ./configure 7 make 8 make install
4.安裝ssl(某些vps默認沒裝ssl)
1 cd /usr/local/src 2 wget https://www.openssl.org/source/openssl-1.0.1t.tar.gz 3 tar -zxvf openssl-1.0.1t.tar.gz
5.安裝nginx
下載地址:https://nginx.org/download/
Nginx 通常有兩個版本,分別是穩定版和開發版,您能夠根據您的目的來選擇這兩個版本的其中一個,下面是把 Nginx 安裝到 /usr/local/nginx 目錄下的詳細步驟:
cd /usr/local/src
wget http://nginx.org/download/nginx-1.4.2.tar.gz
tar -zxvf nginx-1.4.2.tar.gz
cd nginx-1.4.2
./configure --prefix=/usr/local/nginx \
--sbin-path=/usr/local/nginx/nginx \
--conf-path=/usr/local/nginx/nginx.conf \
--pid-path=/usr/local/nginx/nginx.pid \
--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.1t
make
make install
--with-pcre=/usr/src/pcre-8.34 指的是pcre-8.34 的源碼路徑。
--with-zlib=/usr/src/zlib-1.2.7 指的是zlib-1.2.7 的源碼路徑。
安裝成功後 /usr/local/nginx 目錄下以下
1 fastcgi.conf koi-win nginx.conf.default 2 fastcgi.conf.default logs scgi_params 3 fastcgi_params mime.types scgi_params.default 4 fastcgi_params.default mime.types.default uwsgi_params 5 html nginx uwsgi_params.default 6 koi-utf nginx.conf win-utf
6.啓動
確保系統的 80 端口沒被其餘程序佔用,運行/usr/local/nginx/nginx 命令來啓動 Nginx,
netstat -ano|grep 80
若是查不到結果後執行,有結果則忽略此步驟(ubuntu下必須用sudo啓動,否則只能在前臺運行)
sudo /usr/local/nginx/nginx
打開瀏覽器訪問此機器的 IP,若是瀏覽器出現 Welcome to nginx! 則表示 Nginx 已經安裝並運行成功。
-----------------------------------------------------
到這裏nginx就安裝完成了,若是隻是處理靜態html就不用繼續安裝了
若是你須要處理php腳本的話,還須要安裝php-fpm。
下面安裝排錯
附:可能遇到的錯誤和一些幫助信息
1.1編譯pcre錯誤
1 libtool: compile: unrecognized option `-DHAVE_CONFIG_H' 2 libtool: compile: Try `libtool --help' for more information. 3 make[1]: *** [pcrecpp.lo] Error 1 4 make[1]: Leaving directory `/usr/local/src/pcre-8.34' 5 make: *** [all] Error 2
解決辦法:安裝g++,別忘了從新configure
1 apt-get install g++ 2 apt-get install build-essential 3 make clean 4 ./configure 5 make
1.2 make出錯
1 make: *** No rule to make target `build', needed by `default'. Stop. 2 ./configure: error: SSL modules require the OpenSSL library. 3 You can either do not enable the modules, or install the OpenSSL library 4 into the system, or build the OpenSSL library statically from the source 5 with nginx by using --with-openssl=<path> option.
按照第4步的安裝方法或
ubuntu下
apt-get install openssl apt-get install libssl-dev
centos下
yum -y install openssl openssl-devel
2.nginx編譯選項
make是用來編譯的,它從Makefile中讀取指令,而後編譯。
make install是用來安裝的,它也從Makefile中讀取指令,安裝到指定的位置。
configure命令是用來檢測你的安裝平臺的目標特徵的。它定義了系統的各個方面,包括nginx的被容許使用的鏈接處理的方法,好比它會檢測你是否是有CC或GCC,並非須要CC或GCC,它是個shell腳本,執行結束時,它會建立一個Makefile文件。nginx的configure命令支持如下參數:
--prefix=path
定義一個目錄,存放服務器上的文件 ,也就是nginx的安裝目錄。默認使用 /usr/local/nginx。
--sbin-path=path
設置nginx的可執行文件的路徑,默認爲 prefix
/sbin/nginx
.--conf-path=path
設置在nginx.conf配置文件的路徑。nginx容許使用不一樣的配置文件啓動,經過命令行中的-c選項。默認爲prefix
/conf/nginx.conf
.--pid-path=path 設置nginx.pid文件,將存儲的主進程的進程號。安裝完成後,能夠隨時改變的文件名 , 在nginx.conf配置文件中使用 PID指令。默認狀況下,文件名 爲
prefix
/logs/nginx.pid
.--error-log-path=path
設置主錯誤,警告,和診斷文件的名稱。安裝完成後,能夠隨時改變的文件名 ,在nginx.conf配置文件中 使用 的error_log指令。默認狀況下,文件名 爲prefix
/logs/error.log
.--http-log-path=path
設置主請求的HTTP服務器的日誌文件的名稱。安裝完成後,能夠隨時改變的文件名 ,在nginx.conf配置文件中 使用 的access_log指令。默認狀況下,文件名 爲prefix
/logs/access.log
.--user=name
設置nginx工做進程的用戶。安裝完成後,能夠隨時更改的名稱在nginx.conf配置文件中 使用的 user指令。默認的用戶名是nobody。--group=name
設置nginx工做進程的用戶組。安裝完成後,能夠隨時更改的名稱在nginx.conf配置文件中 使用的 user指令。默認的爲非特權用戶。--with-select_module
--without-select_module 啓用或禁用構建一個模塊來容許服務器使用select()方法。該模塊將自動創建,若是平臺不支持的kqueue,epoll,rtsig或/dev/poll。
--with-poll_module
--without-poll_module
啓用或禁用構建一個模塊來容許服務器使用poll()方法。該模塊將自動創建,若是平臺不支持的kqueue,epoll,rtsig或/dev/poll。--without-http_gzip_module
— 不編譯壓縮的HTTP服務器的響應模塊。編譯並運行此模塊須要zlib庫。--without-http_rewrite_module
不編譯重寫模塊。編譯並運行此模塊須要PCRE庫支持。--without-http_proxy_module
— 不編譯http_proxy模塊。--with-http_ssl_module
— 使用https協議模塊。默認狀況下,該模塊沒有被構建。創建並運行此模塊的OpenSSL庫是必需的。--with-pcre=path
— 設置PCRE庫的源碼路徑。PCRE庫的源碼(版本4.4 - 8.30)須要從PCRE網站下載並解壓。其他的工做是Nginx的./ configure和make來完成。正則表達式使用在location指令和 ngx_http_rewrite_module 模塊中。--with-pcre-jit
—編譯PCRE包含「just-in-time compilation」(1.1.12中, pcre_jit指令)。--with-zlib=path
—設置的zlib庫的源碼路徑。要下載從 zlib(版本1.1.3 - 1.2.5)的並解壓。其他的工做是Nginx的./ configure和make完成。ngx_http_gzip_module模塊須要使用zlib 。--with-cc-opt=parameters
— 設置額外的參數將被添加到CFLAGS變量。例如,當你在FreeBSD上使用PCRE庫時須要使用:--with-cc-opt="-I /usr/local/include。
.如須要須要增長 select()支持的文件數量
:--with-cc-opt="-D FD_SETSIZE=2048".
--with-ld-opt=parameters
—設置附加的參數,將用於在連接期間。例如,當在FreeBSD下使用該系統的PCRE庫,應指定:--with-ld-opt="-L /usr/local/lib".
典型實例(下面爲了展現須要寫在多行,執行時內容須要在同一行)
1 ./configure 2 --sbin-path=/usr/local/nginx/nginx 3 --conf-path=/usr/local/nginx/nginx.conf 4 --pid-path=/usr/local/nginx/nginx.pid 5 --with-http_ssl_module 6 --with-pcre=../pcre-4.4 7 --with-zlib=../zlib-1.1.3
轉載:http://www.nginx.cn/install
最後補充:
關閉防火牆
setenforce 0 systemctl stop firewalld systemctl disable firewalld
進入到安裝目錄/usr/local/nginx
,查看目錄結構
cd /usr/local/nginx
pwd
ls
啓動Nginx
/usr/local/nginx/sbin/nginx
查看Nginx進程是否啓動
ps aux | grep nginx
查看Nginx佔用的端口號
netstat -tlnp
使用本地主機訪問虛擬機上的Nginx服務器
中止Nginx的三種方式
# 1. 當即中止Nginx服務 /usr/local/nginx/sbin/nginx -s stop # 2.完成當前任務後中止 /usr/local/nginx/sbin/nginx -s quit # 3.殺死Nginx進程 killall nginx
使用軟鏈接將nginx
連接到/usr/local/sbin
ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin ll /usr/local/sbin/ | grep "nginx"
顯示當前環境變量PATH
echo $PATH
編輯.bash_profile
文件
vim ~/.bash_profile
在.bash_profile
文件末尾加入如下內容
export PATH=$PATH:/usr/local/nginx/sbin
引用.bash_profile
文件
source ~/.bash_profile
使用nginx
命令
# 啓動nginx
nginx
# 中止nginx
nginx -s quit
nginx
命令添加到系統服務建立並編輯文件/root/service-nginx.sh
#!/bin/sh # # filename: service-nginx.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/sbin/nginx" nginx="/usr/local/sbin/nginx" prog=$(basename $nginx) #NGINX_CONF_FILE="/etc/nginx/nginx.conf" 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:.*--user=" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -` if [ -n "$user" ]; then 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 fi } 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 # END
用/root/service-nginx.sh
替換/etc/init.d/nginx
mv /root/service-nginx.sh /etc/init.d/nginx
賦予可執行限權
chmod 755 /etc/init.d/nginx
執行
systemctl start nginx
#!/bin/bash # installation configuration NGINX_VERSION=1.12.2 NGINX_SRC_PATH=/root NGINX_BIN_PATH=/usr/local/nginx # disable firewall systemctl stop firewalld setenforce 0 # installation dependence yum install -y pcre-devel zlib-devel openssl-devel wget gcc # download nginx source package cd ${NGINX_SRC_PATH} wget http://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz # unzip source package tar -xzvf nginx-${NGINX_VERSION}.tar.gz cd ./nginx-${NGINX_VERSION} # install nginx ./configure --prefix=${NGINX_BIN_PATH} --with-http_ssl_module make & make install # start nginx service cd ${NGINX_BIN_PATH}/sbin ./nginx # END