1、 首先到nginx官網下載nginx安裝套件
下載好後會見到類似下面的一份檔案
建立nginx-src目錄並且去到nginx-src目錄裡執行以下指令即可:
mkdir nginx-src && cd nginx-src
當然也可以在linux底下執行以下指令進行下載nginx安裝套件
wget http://nginx.org/download/nginx-1.5.9.tar.gz
2、解壓縮nginx-1.5.9.tar.gz檔
tar -zxvf nginx-1.5.9.tar.gz
3、刪除安裝包檔指令
rm -f nginx-1.5.9.tar.gz
#4、設定安裝執行指令
cd nginx-1.5.9/ ./configure --prefix=/usr/local/nginx
提示缺包:
./configure: error: the http rewrite module requires the pcre library.you can either disable the module by using --without-http_rewrite_module
option, or install the pcre library into the system,
##option, or install the pcre library into the system, oroption, 或 installry ##statically from the source with nginx by using --with-pcre=
##安裝pcre-devel解決問題(需要有網路下運行並且是超級管理員身分)
yum -y install pcre-devel yum -y install openssl openssl-devel
現在進行重新設定
./configure --prefix=/usr/local/nginx如果重新設定也不成功這時需要安裝gccyum –y install gcc
#5、編譯指令
make6、安裝指令
make install
#7、安裝完畢,啟動nginx
cd /usr/local/nginx/sbin
./nginx
如果啟動不成功可能是防火牆問題導致
#這時關閉防火牆
systemctl stop firewalld.service8、造訪nginx
http://ip位址
#######9、如果要精簡一下設定檔######重新載入設定檔######執行指令:nginx -s reload######到這裡博主我就成功的在linux centos7下安裝了nginx伺服器######並且已經成功的在瀏覽器上透過ip位址存取到nginx。 ###
以上是Linux centos7環境下Nginx安裝實例分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!