摘要:本文主要記錄如何在中編譯安裝官方最新的版本。允許使用不同的配置文件啟動,通過在命令行參數(shù)中指定它。安裝完成后,可以隨時在配置文件更改。默認(rèn)情況下,組名稱設(shè)置為非用戶的名稱。
本文主要記錄如何在CentOS 7.5中編譯安裝Nginx官方最新的1.15.3版本。由于像Nginx、Mysql和PHP的的源碼都是用C/C++寫的,所以自己的CentOS 7.5服務(wù)器上必須要安裝gcc和g++軟件。安裝環(huán)境搭建LNMP環(huán)境一般是先安裝Mysql/MariaDB, 再安裝Nginx, 其次是安裝PHP
系統(tǒng):CentOS 7.5.1804
軟件:Nginx 1.15.3
依賴軟件:Pcre、Zlib、Openssl
創(chuàng)建用戶及用戶組先創(chuàng)建一個名為nginx且沒有登錄權(quán)限的用戶和一個名為nginx的用戶組,然后安裝nginx所需的依賴庫和依賴包,最后通過.configure進行安裝的詳細(xì)配置。
創(chuàng)建Nginx用戶組
> 創(chuàng)建`nginx`用戶組(`-r`選項是創(chuàng)建一個系統(tǒng)用戶組的意思) [root@lightserver ~]$ groupadd -r nginx
創(chuàng)建用戶并加入到nginx系統(tǒng)用戶組
> 添加新用戶 > -r: 添加系統(tǒng)用戶( 這里指將要被創(chuàng)建的系統(tǒng)用戶`nginx`) > -g: 指定要創(chuàng)建的用戶所屬組( 這里指添加到新系統(tǒng)用戶`nginx`到`nginx`系統(tǒng)用戶組 ) > -s: 新帳戶的登錄`shell`( `/sbin/nologin` 這里設(shè)置為將要被創(chuàng)建系統(tǒng)用戶`nginx`不能用來登錄系統(tǒng) ) > -d: 新帳戶的主目錄( 這里指定將要被創(chuàng)建的系統(tǒng)用戶`nginx`的家目錄為 `/usr/local/nginx` ) > -M: 不要創(chuàng)建用戶的主目錄( 也就是說將要被創(chuàng)建的系統(tǒng)用戶`nginx`不會在 `/home` 目錄下創(chuàng)建 `nginx` 家目錄 ) [root@lightserver ~]$ useradd -r -g nginx -s /sbin/nologin -d /usr/local/nginx -M nginx創(chuàng)建相關(guān)目錄
> 在`/var/tmp/nginx/`創(chuàng)建緩存目錄 [root@lightserver ~]$ mkdir -pv /var/tmp/nginx/{client_body,proxy,fastcgi,uwsgi,scgi} > 賦予`nginx`用戶權(quán)限 [root@lightserver ~]$ chown -R nginx:nginx /var/tmp/nginx/ > 在`/usr/local/nginx/`創(chuàng)建`logs`目錄 [root@lightserver ~]$ mkdir -pv /usr/local/nginx/logs/ > 賦予`nginx`用戶權(quán)限 [root@lightserver ~]$ chown -R nginx:nginx /usr/local/nginx/安裝依賴庫
> 安裝`gcc`、`gcc-c++`、`C/C++`語言編譯環(huán)境 [root@lightserver ~]$ yum -y install gcc gcc-c++ autoconf automake make > `yum`安裝`nginx`必須的依賴庫 [root@lightserver ~]$ yum -y install openssl openssl-devel libxml2-devel libxslt-devel perl-devel perl-ExtUtils-Embed libtool zlib zlib-devel pcre pcre-devel patch創(chuàng)建家目錄存放軟件包目錄
> 創(chuàng)建目錄存放軟件包目錄 [root@lightserver ~]$ mkdir soft && cd soft下載解壓源碼包
> 官網(wǎng)下載`Nginx1.15.3`的`tar`包,然后解壓到服務(wù)器上 [root@lightserver soft]$ wget http://nginx.org/download/nginx-1.15.3.tar.gz [root@lightserver soft]$ tar -zxvf nginx-1.15.3.tar.gz
pcre: Nginx的Rewrite功能
> 下載 [root@lightserver soft]$ wget https://ftp.pcre.org/pub/pcre/pcre-8.42.tar.gz > 解壓 # tar -zxvf pcre-8.42.tar.gz > 進入解壓后的源碼目錄編譯并安裝 # cd pcre-8.42/ # ./configure # make && make install # cd ~/soft/
zlib: Nginx的Gzip壓縮功能
> 下載 [root@lightserver soft]$ wget http://www.zlib.net/fossils/zlib-1.2.11.tar.gz > 解壓 # tar -zxvf zlib-1.2.11.tar.gz > 進入解壓后的源碼目錄編譯并安裝 # cd zlib-1.2.11 # ./configure # make && make install # cd ~/soft/
openssl: nginx第三方模塊—nginx-sticky-module的使用(基于cookie的會話保持)
> 下載 [root@lightserver soft]$ wget https://www.openssl.org/source/openssl-1.1.1-pre8.tar.gz > 解壓 # tar -zxvf openssl-1.1.1-pre8.tar.gz > 進入解壓后的源碼目錄編譯并安裝 # cd openssl-1.1.1 # ./configure # make && make install # cd ~/soft/
nginx-sticky-module
> 下載 [root@lightserver soft]$ wget https://bitbucket.org/nginx-goodies/nginx-sticky-module-ng/get/master.tar.gz > 解壓 # tar -zxvf /master.tar.gz # mv nginx-goodies-nginx-sticky-module-ng-08a395c66e42/ nginx-sticky-module/nginx編譯參數(shù)
> 進入`nginx`目錄 [root@lightserver ~]$ cd ~/soft/nginx-1.15.3 > 編譯安裝 > > 編譯時,復(fù)制一下代碼,末尾不能有空格,不能有注釋 [root@lightserver nginx-1.15.3]$ ./configure --prefix=/usr/local/nginx --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.pid --lock-path=/var/lock/nginx.lock --user=nginx --group=nginx --with-http_ssl_module --with-http_v2_module --with-http_dav_module --with-http_flv_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module --with-http_stub_status_module --with-http_sub_module --with-http_random_index_module --with-http_degradation_module --with-http_secure_link_module --with-http_gzip_static_module --with-http_perl_module --add-module=../nginx-sticky-module --with-pcre=../pcre-8.42 --with-zlib=../zlib-1.2.11 --with-openssl=../openssl-1.1.1-pre8 --with-debug --with-file-aio --with-mail --with-mail_ssl_module --http-client-body-temp-path=/var/tmp/nginx/client_body --http-proxy-temp-path=/var/tmp/nginx/proxy --http-fastcgi-temp-path=/var/tmp/nginx/fastcgi --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --http-scgi-temp-path=/var/tmp/nginx/scgi --with-stream --with-ld-opt="-Wl,-E"
編譯選項說明
--prefix=PATH: 指定nginx的安裝目錄。默認(rèn) /usr/local/nginx
--sbin-path=PATH:設(shè)置nginx可執(zhí)行文件的名稱。默認(rèn)情況下,文件指向 安裝目錄/sbin/nginx
--conf-path=PATH:設(shè)置nginx.conf配置文件的名稱。nginx允許使用不同的配置文件啟動,通過在命令行參數(shù)中指定它 。默認(rèn)情況下,文件指向 安裝目錄/conf/nginx.conf
--pid-path=PATH:設(shè)置存儲主進程ID文件nginx.pid的名稱。默認(rèn)情況下,文件指向 安裝目錄/logs/nginx.pid
--error-log-path=PATH:設(shè)置錯誤,警告和診斷文件的名稱。默認(rèn)情況下,文件指向 安裝目錄/logs/error.log
--http-log-path=PATH:設(shè)置HTTP服務(wù)器的請求日志文件的名稱。默認(rèn)情況下,文件指向 安裝目錄/logs/access.log
--lock-path=PATH:安裝文件鎖定,防止安裝文件被別人利用,或自己誤操作。
--user=nginx:指定程序運行時的非特權(quán)用戶。安裝完成后,可以隨時在nginx.conf配置文件更改user。默認(rèn)用戶名為nobody
--group=nginx:指定程序運行時的非特權(quán)用戶所在組名稱。默認(rèn)情況下,組名稱設(shè)置為非root用戶的名稱。
--with-http_realip_module 啟用ngx_http_realip_module支持(這個模塊允許從請求標(biāo)頭更改客戶端的IP地址值,默認(rèn)為關(guān))
--with-http_ssl_module :啟用ngx_http_ssl_module支持(使支持https請求,需已安裝openssl)
--with-http_stub_status_module :啟用ngx_http_stub_status_module支持(獲取nginx自上次啟動以來的工作狀態(tài))
--with-http_gzip_static_module :啟用ngx_http_gzip_module支持(該模塊同–without-http_gzip_module功能一樣)
--http-client-body-temp-path=PATH :設(shè)定http客戶端請求臨時文件路徑
--http-proxy-temp-path=PATH:設(shè)定http代理臨時文件路徑
--http-fastcgi-temp-path=PATH:設(shè)定http fastcgi臨時文件路徑
--http-uwsgi-temp-path=PATH:設(shè)定http scgi臨時文件路徑
--with-pcre:設(shè)置pcre庫的源碼路徑,如果已通過yum方式安裝,使用–with-pcre自動找到庫文件。使用--with-pcre=PATH時,需要從PCRE網(wǎng)站下載pcre庫的源碼(版本8.4)并解壓,剩下的就交給Nginx的./configure和make來完成。perl正則表達(dá)式使用在location指令和 ngx_http_rewrite_module模塊中。
--with-zlib=PATH:指定 zlib(版本1.2.11)的源碼解壓目錄。在默認(rèn)就啟用的網(wǎng)絡(luò)傳輸壓縮模塊ngx_http_gzip_module時需要使用zlib
--with-http_ssl_module:使用https協(xié)議模塊。默認(rèn)情況下,該模塊沒有被構(gòu)建。前提是openssl已安裝
--add-module=PATH : 添加第三方外部模塊,如nginx-sticky-module-ng或緩存模塊。每次添加新的模塊都要重新編譯(Tengine可以在新加入module時無需重新編譯)
注釋版
./configure --prefix=/usr/local/nginx [Nginx安裝目錄] --sbin-path=/usr/sbin/nginx . [Nginx的sbin目錄] --conf-path=/etc/nginx/nginx.conf [Nginx的配置文件] --error-log-path=/var/log/nginx/error.log [Nginx的錯誤日志] --http-log-path=/var/log/nginx/access.log [Nginx的訪問日志] --pid-path=/var/run/nginx.pid [Nginx的進程ID] --lock-path=/var/lock/nginx.lock [Nginx的進程鎖] --user=nginx [Nginx所屬用戶] --group=nginx [Nginx所屬用戶組] --with-http_ssl_module [Nginx的ssl模塊] --with-http_v2_module --with-http_dav_module --with-http_flv_module --with-http_realip_module [記錄原始客戶端的IP地址] --with-http_addition_module --with-http_xslt_module --with-http_stub_status_module [監(jiān)控 Nginx 的當(dāng)前狀態(tài)] --with-http_sub_module --with-http_random_index_module --with-http_degradation_module --with-http_secure_link_module --with-http_gzip_static_module [Nginx的gzip壓縮模塊] --with-http_perl_module --with-pcre=../pcre-8.42 [pcre的安裝目錄] --with-zlib=../zlib-1.2.11 [zlib的安裝目錄] --with-openssl=../openssl-1.1.1-pre8 [openssl的安裝目錄] --with-debug [允許DEBUG] --with-file-aio --with-mail --with-mail_ssl_module --http-client-body-temp-path=/var/tmp/nginx/client_body --http-proxy-temp-path=/var/tmp/nginx/proxy --http-fastcgi-temp-path=/var/tmp/nginx/fastcgi --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --http-scgi-temp-path=/var/tmp/nginx/scgi --with-stream [Nginx特有的stream模塊] --with-ld-opt="-Wl,-E" [gcc的編譯優(yōu)化]
配置過程大概需要5分鐘左右
配置完后,編譯安裝[root@lightserver ~]$ make && make install配置Nginx
[root@lightserver ~]$ vim /etc/init.d/nginx > 編寫腳本文件 #! /bin/bash # # 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 # 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" prog=$(basename $nginx) NGINX_CONF_FILE="/etc/nginx/nginx.conf" [ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx lockfile=/var/lock/nginx.lock 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 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啟動腳本
> 改變文件權(quán)限 [root@lightserver ~]$ chmod +x /etc/init.d/nginx > 添加到系統(tǒng)服務(wù) [root@lightserver.cn ~]$ chkconfig --add nginx > 設(shè)置系統(tǒng)為開機啟動 [root@lightserver ~]$ chkconfig nginx on啟動Nginx服務(wù)器
[root@lightserver ~]$ systemctl start nginx查看Nginx服務(wù)啟動狀態(tài)
[root@lightserver ~]$ systemctl status nginx修改Nginx配置文件
> 修改nginx配置文件 [root@lightserver ~]$ vi /etc/nginx/nginx.conf # 運行用戶 #user nobody; # 啟動進程, 通常設(shè)置成和cpu的數(shù)據(jù)相等 worker_processes 1; # 全局錯誤日志及PID文件 #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; # 工作模式及連接數(shù)上限 events { use epoll; worker_connections 1024; } http { include mime.types; default_type application/octet-stream; log_format main "$remote_addr - $remote_user [$time_local] "$request" " "$status $body_bytes_sent "$http_referer" " ""$http_user_agent" "$http_x_forwarded_for""; access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; tcp_nodelay on; gzip on; gzip_disable "MSIE [1-6]"; client_header_buffer_size 128k; large_client_header_buffers 4 128k; server { listen 80; server_name www.nginx.dev; #charset koi8-r; access_log logs/nginx.dev.access.log main; location / { root /data/www/html; index index.php index.html index.htm; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root /data/www/html; } location ~ ^/(images|javascript|js|css|flash|media|static)/ { expires 30d; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ .php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # location ~ .php$ { # root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } # deny access to .htaccess files, if Apache"s document root # concurs with nginx"s one # location ~ /.ht { deny all; } } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} # HTTPS server # #server { # listen 443 ssl; # server_name localhost; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_cache shared:SSL:1m; # ssl_session_timeout 5m; # ssl_ciphers HIGH:!aNULL:!MD5; # ssl_prefer_server_ciphers on; # location / { # root html; # index index.html index.htm; # } #} }CentOS 添加開放TCP 80端口
> 加入開放端口到配置文件 [root@lightserver ~]$ firewall-cmd --zone=public --add-port=80/tcp --permanent > 添加時區(qū) --zone=public > 添加端口 --add-port=80/tcp > 永久生效 --permanent > 加載防火墻新配置文件( 以 `root`身份輸入以下命令,重新加載防火墻,并不中斷用戶連接,即不丟失狀態(tài)信息. ) [root@lightserver.cn ~]$ firewall-cmd --reload
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/40135.html
摘要:服務(wù)器上部署項目說白了就是讓你的項目在這臺服務(wù)器上運行并且做到可以在公網(wǎng)上訪問你的項目。可以解決項目與項目之間對同一個包的不同版本的依賴問題。有可能會報的錯是項目相關(guān)模塊的引入路徑不對,修改一下便可。 前一陣自己用flask框架寫了一個博客程序,寫完之后想部署到服務(wù)器上,因為是小白,所以自己google了好些資料,講的零零碎碎而且有些地方只是告訴你怎么配置,但具體為什么這樣配卻沒有說明...
摘要:服務(wù)器上部署項目說白了就是讓你的項目在這臺服務(wù)器上運行并且做到可以在公網(wǎng)上訪問你的項目。可以解決項目與項目之間對同一個包的不同版本的依賴問題。有可能會報的錯是項目相關(guān)模塊的引入路徑不對,修改一下便可。 前一陣自己用flask框架寫了一個博客程序,寫完之后想部署到服務(wù)器上,因為是小白,所以自己google了好些資料,講的零零碎碎而且有些地方只是告訴你怎么配置,但具體為什么這樣配卻沒有說明...
摘要:服務(wù)器上部署項目說白了就是讓你的項目在這臺服務(wù)器上運行并且做到可以在公網(wǎng)上訪問你的項目。可以解決項目與項目之間對同一個包的不同版本的依賴問題。有可能會報的錯是項目相關(guān)模塊的引入路徑不對,修改一下便可。 前一陣自己用flask框架寫了一個博客程序,寫完之后想部署到服務(wù)器上,因為是小白,所以自己google了好些資料,講的零零碎碎而且有些地方只是告訴你怎么配置,但具體為什么這樣配卻沒有說明...
閱讀 2778·2021-11-23 09:51
閱讀 3534·2021-10-08 10:17
閱讀 1269·2021-10-08 10:05
閱讀 1321·2021-09-28 09:36
閱讀 1841·2021-09-13 10:30
閱讀 2183·2021-08-17 10:12
閱讀 1678·2019-08-30 15:54
閱讀 2009·2019-08-30 15:53