ubuntu16.04源碼方式安裝配置nginx


一:官方下載nginx源包

官方下載地址:http://nginx.org/en/download.html

下載最新版本:目前最新版本是 nginx 1.11.4  下載地址是:http://nginx.org/download/nginx-1.11.4.tar.gz

可以先點擊CHANGES 查看一下改動,查看一些新版本的新特性,尋找最適合自己的nginx版本

二:編譯安裝

2.1:解壓縮

tar zxvf nginx-1.11.4.tar.gz

2.2:編譯安裝

2.2.1 編譯

編譯選項官方提供的有:

--prefix=path   定義一個目錄來保存你的nginx的提供功能的文件夾,就這好比我們安裝軟件的時候軟件存放的目錄,如果我們在編譯的不指定安裝位置,那么默認的位置/usr/local/nginx 目錄

--sbin-path=path 設置nginx執行腳本的位置,這里如果設置在path變量里面,就可以在bash環境下,任意使用nginx命令,默認位置prefix/sbin/nginx  注意這里的prefix是

在配置文件里面配置的路徑

--conf-path=path 配置nginx配置文件的路徑,如果不指定這個選項,那么配置文件的默認路徑就會是 prefix/conf/nginx.conf

--pid-path =path 配置nginx.pid file的路徑,一般來說,進程在運行的時候的時候有一個進程id,這個id會保存在pid file里面,默認的pid file的放置位置是prefix/logs/nginx.pid

--error-log-path=path 設置錯誤日志的存放路徑,如果不指定,就默認 prefix/logs/error.log

--http-log-path= path 設置http訪問日志的路徑,如果不指定,就默認 prefix/logs/access.log

--user=name  設置默認啟動進程的用戶,如果不指定,就默認 nobody

--group=name 設置這個用戶所在的用戶組,如果不指定,依然是nobody

這些是我們常用的編譯選項,其他的可以均保持默認,如需特殊指定,可上nginx官網查閱 http://nginx.org/en/docs/configure.html

下面是一些不常用的選項

--with-http_ssl_module -開啟HTTP SSL模塊,使NGINX可以支持HTTPS請求。需要安裝了OPENSSL   

 --with-http_flv_module   

 --with-http_stub_status_module - 啟用 "server status" 頁(可有可無)   

 --without-http_gzip_module - 禁用 ngx_http_gzip_module. 如果啟用,需要 zlib 。   

 --without-http_ssi_module - 禁用 ngx_http_ssi_module   

--without-http_referer_module - 禁用 ngx_http_referer_module   

 --without-http_rewrite_module - 禁用 ngx_http_rewrite_module. 如果啟用需要 PCRE 。   

 --without-http_proxy_module - 禁用 ngx_http_proxy_module   

 --without-http_fastcgi_module - 禁用 ngx_http_fastcgi_module   

 --without-http_memcached_module - 禁用 ngx_http_memcached_module   

 --without-http_browser_module - 禁用 ngx_http_browser_module   

 --http-proxy-temp-path=PATH - Set path to the http proxy temporary files   

 --http-fastcgi-temp-path=PATH - Set path to the http fastcgi temporary files   

 --without-http - 禁用 HTTP server(用作代理或反向代理)   

 --with-mail - 啟用 IMAP4/POP3/SMTP 代理模塊   

 --with-mail_ssl_module - 啟用 ngx_mail_ssl_module   

 --with-openssl=DIR - Set path to OpenSSL library sources   

編譯安裝步驟如下:

①:sudo ./configure --prefix=/usr --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx/nginx.pid --lock-path=/var/lock/nginx.lock

②:make  

③:sudo make install 

 

如果編譯過程出現the HTTP rewrite module requires the PCRE library.的錯誤

安裝  

sudo apt install libpcre3-dev

ssl擴展模塊出現錯誤,就安裝

sudo apt install libssl-dev

2.3:使用sysv-rc-conf(chkconfig)的方式管理nginx服務

2.3.1首先添加nginx服務管理的腳本

 1 #!/bin/sh
 2 #
 3 # nginx Start up the nginx server daemon
 4 #
 5 # chkconfig: 2345 55 25
 6 # Description: starts and stops the nginx web server
 7 #
 8 ### BEGIN INIT INFO
 9 # Provides: nginx
10 # Required-Start: $all
11 # Required-Stop: $all
12 # Default-Start: 2 3 4 5
13 # Default-Stop: 0 1 6
14 # Description: starts and stops the nginx web server
15 ### END INIT INFO
16 # To install:
17 # copy this file to /etc/init.d/nginx
18 # shell> chkconfig --add nginx (RedHat)
19 # shell> update-rc.d -f nginx defaults (debian)
20 # To uninstall:
21 # shell> chkconfig --del nginx (RedHat)
22 # shell> update-rc.d -f nginx remove
23 PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin
24 NAME=nginx
25 DAEMON=/usr/sbin/$NAME
26 LOCKFILE=/var/lock/subsys/nginx
27 CONFIGFILE=/etc/nginx/$NAME.conf
28 PIDFILE=/var/run/${NAME}.pid
29 ULIMIT=10240
30 set -e
31 [ -x "$DAEMON" ] || exit 0
32 
33 do_start() {
34 echo "Starting $NAME ..."
35 ulimit -SHn $ULIMIT
36 
37 $DAEMON -c $CONFIGFILE
38 }
39 
40 do_stop() {
41 echo "Shutting down $NAME ..."
42 $DAEMON -s stop
43 }
44 
45 do_reload() {
46 echo "Reloading $NAME ..."
47 $DAEMON -s reload
48 }
49 
50 case "$1" in
51 start)
52 [ ! -f "$PIDFILE" ] && do_start || echo "nginx already running"
53 echo -e ".\ndone"
54 ;;
55 
56 stop)
57 do_stop || echo "nginx not running"
58 echo -e ".\ndone"
59 ;;
60 
61 reload)
62 do_reload || echo "nginx not running"
63 echo -e ".\ndone"
64 ;;
65 
66 *)
67 N=/etc/init.d/$NAME
68 echo "Usage: $N {start|stop|restart|reload}" >&2
69 exit 1
70 ;;
71 
72 esac
73 
74 exit 0

2.3.2:給腳本添加執行權限

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

2.3.3:添加到開機自啟動

sudo sysv-rc-conf nginx on(這一步實際上就是實現了一個鏈接)

2.3.4:加載安裝服務

sudo systemctl enable nginx(如果不願意重啟的話)

2.3.5:啟動nginx服務

sudo service nginx start

2.4:測試nginx

curl localhost

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM