真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Linux下nginx編譯安裝教程-創(chuàng)新互聯(lián)

本篇內(nèi)容介紹了“Linux下nginx編譯安裝教程”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

創(chuàng)新互聯(lián)公司長(zhǎng)期為成百上千家客戶(hù)提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對(duì)不同對(duì)象提供差異化的產(chǎn)品和服務(wù);打造開(kāi)放共贏平臺(tái),與合作伙伴共同營(yíng)造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為梅江企業(yè)提供專(zhuān)業(yè)的網(wǎng)站建設(shè)、成都網(wǎng)站制作,梅江網(wǎng)站改版等技術(shù)服務(wù)。擁有10年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開(kāi)發(fā)。

一、必要軟件準(zhǔn)備
1.安裝pcre

為了支持rewrite功能,我們需要安裝pcre
復(fù)制代碼 代碼如下:# yum install pcre* //如過(guò)你已經(jīng)裝了,請(qǐng)?zhí)^(guò)這一步

2.安裝openssl

需要ssl的支持,如果不需要ssl支持,請(qǐng)?zhí)^(guò)這一步
復(fù)制代碼 代碼如下:# yum install openssl*

3.gzip 類(lèi)庫(kù)安裝

復(fù)制代碼 代碼如下:yum install zlib zlib-devel

4.安裝wget

下載nginx使用,如果已經(jīng)安裝,跳過(guò)這一步
復(fù)制代碼 代碼如下:# yum install wget

二、安裝nginx

1.下載
復(fù)制代碼 代碼如下:wget  http://nginx.org/download/nginx-1.7.0.tar.gz
2.解壓
復(fù)制代碼 代碼如下:
tar -zxvf nginx-1.7.0.tar.gz

3.編譯和安裝
執(zhí)行如下命令:
復(fù)制代碼 代碼如下:

cd nginx-1.7.0

./configure --prefix=/usr/local/nginx-1.7.0 \

–with-http_ssl_module --with-http_spdy_module 
–with-http_stub_status_module --with-pcre
–with-http_stub_status_module:支持nginx狀態(tài)查詢(xún)
–with-http_ssl_module:支持https
–with-http_spdy_module:支持google的spdy,想了解請(qǐng)百度spdy,這個(gè)必須有ssl的支持
–with-pcre:為了支持rewrite重寫(xiě)功能,必須制定pcre

最后輸出如下內(nèi)容,表示configure OK了。

復(fù)制代碼 代碼如下:
checking for zlib library … found
creating objs/Makefile
Configuration summary

  • using system PCRE library

  • using system OpenSSL library

  • md5: using OpenSSL library

  • sha1: using OpenSSL library

  • using system zlib library
    nginx path prefix: “/usr/local/nginx-1.7.0”
    nginx binary file: “/usr/local/nginx-1.7.0/sbin/nginx”
    nginx configuration prefix: “/usr/local/nginx-1.7.0/conf”
    nginx configuration file: “/usr/local/nginx-1.7.0/conf/nginx.conf”
    nginx pid file: “/usr/local/nginx-1.7.0/logs/nginx.pid”
    nginx error log file: “/usr/local/nginx-1.7.0/logs/error.log”
    nginx http access log file: “/usr/local/nginx-1.7.0/logs/access.log”
    nginx http client request body temporary files: “client_body_temp”
    nginx http proxy temporary files: “proxy_temp”
    nginx http fastcgi temporary files: “fastcgi_temp”
    nginx http uwsgi temporary files: “uwsgi_temp”
    nginx http scgi temporary files: “scgi_temp”

make //確定你的服務(wù)器有安裝make,如果沒(méi)有安裝請(qǐng)執(zhí)行yum install make

make install

三、啟動(dòng)、關(guān)閉、重置nginx

啟動(dòng):直接執(zhí)行以下命令,nginx就啟動(dòng)了,不需要改任何配置文件,nginx配置多域名虛擬主機(jī)請(qǐng)參考后續(xù)文章.
復(fù)制代碼 代碼如下:/usr/local/nginx-1.7.0/sbin/nginx
試試訪問(wèn):直接使用curl命令來(lái)讀取web信息
復(fù)制代碼 代碼如下:
[root@ns conf]

curl -s  http://localhost  | grep  nginx.com

nginx.com .
關(guān)閉:
復(fù)制代碼 代碼如下:/usr/local/nginx-1.7.0/sbin/nginx -s stop

“Linux下nginx編譯安裝教程”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


當(dāng)前標(biāo)題:Linux下nginx編譯安裝教程-創(chuàng)新互聯(lián)
文章源于:http://weahome.cn/article/dcopso.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部