centos7編譯安裝nginx的方法步驟
安裝nginx編譯所需的lib庫
yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel yum -y install pcre pcre-devel
查看pcre(正則庫)版本
pcre-config --version
進入編譯目錄
cd /usr/local/src
從官網(wǎng)下載最新的nginx(stable version穩(wěn)定版)
wget http://nginx.org/download/nginx-1.14.0.tar.gz
解壓nginx壓縮包
tar -zxvf nginx-1.14.0.tar.gz
進入解壓目錄
cd nginx-1.14.0
運行配置腳本(--prefix參數(shù)指定nginx安裝的目錄,默認安裝在/usr/local/nginx )
./configure --prefix=/usr/local/nginx
編譯安裝nginx
make && make install
將nginx執(zhí)行命令軟鏈接到/usr/bin
ln -s /usr/local/nginx/sbin/nginx /usr/bin
啟動nginx
nginx
設置開機自啟動
echo "/usr/local/nginx/sbin/nginx" >> /etc/rc.d/rc.local chmod +x /etc/rc.d/rc.local
以上就是整個安裝過程...
執(zhí)行nginx -h查看相關命令
[root@localhost ~]# nginx -h nginx version: nginx/1.14.0 Usage: nginx [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g directives] Options: -?,-h : this help -v : show version and exit -V : show version and configure options then exit -t : test configuration and exit -T : test configuration, dump it and exit -q : suppress non-error messages during configuration testing -s signal : send signal to a master process: stop, quit, reopen, reload -p prefix : set prefix path (default: /usr/local/nginx/) -c filename : set configuration file (default: conf/nginx.conf) -g directives : set global directives out of configuration file
查看nginx安裝目錄
whereis nginx
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
SpringBoot前端后端分離之Nginx服務器下載安裝過程
Nginx是一款輕量級的Web服務器/反向代理服務器及電子郵件(IMAP/POP3)代理服務器,這篇文章主要介紹了SpringBoot前端后端分離之Nginx服務器,需要的朋友可以參考下2022-08-08
nginx如何實現(xiàn)配置靜態(tài)資源服務器及防盜鏈
這篇文章主要為大家介紹了nginx實現(xiàn)配置靜態(tài)資源服務器及防盜鏈步驟詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-11-11
Windows安裝nginx1.10.1反向代理訪問IIS網(wǎng)站
這篇文章主要為大家詳細介紹了Windows安裝nginx1.10.1反向代理訪問IIS網(wǎng)站的相關資料,具有一定的參考價值,感興趣的小伙伴們可以參考一下2016-11-11

