Linux下nginx編譯安裝教程和編譯參數詳解

這篇文章主要介紹了Linux下nginx編譯安裝教程和編譯參數詳解,須要的朋友能夠參考下
1、必要軟件準備
1.安裝pcrenginx

爲了支持rewrite功能,咱們須要安裝pcre
複製代碼 代碼以下:# yum install pcre* //如過你已經裝了,請跳過這一步web

2.安裝openssl服務器

須要ssl的支持,若是不須要ssl支持,請跳過這一步
複製代碼 代碼以下:# yum install openssl*curl

3.gzip 類庫安裝google

複製代碼 代碼以下:yum install zlib zlib-develurl

4.安裝wget教程

下載nginx使用,若是已經安裝,跳過這一步
複製代碼 代碼以下:# yum install wgetip

2、安裝nginxmd5

1.下載
複製代碼 代碼以下:wget http://nginx.org/download/nginx-1.7.0.tar.gz
2.解壓
複製代碼 代碼以下:
tar -zxvf nginx-1.7.0.tar.gzssl

3.編譯和安裝
執行以下命令:
複製代碼 代碼以下:

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狀態查詢
–with-http_ssl_module:支持https
–with-http_spdy_module:支持google的spdy,想了解請百度spdy,這個必須有ssl的支持
–with-pcre:爲了支持rewrite重寫功能,必須制定pcre

最後輸出以下內容,表示configure OK了。

複製代碼 代碼以下:
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 //肯定你的服務器有安裝make,若是沒有安裝請執行yum install make

make install

3、啓動、關閉、重置nginx

啓動:直接執行如下命令,nginx就啓動了,不須要改任何配置文件,nginx配置多域名虛擬主機請參考後續文章.
複製代碼 代碼以下:/usr/local/nginx-1.7.0/sbin/nginx
試試訪問:直接使用curl命令來讀取web信息
複製代碼 代碼以下:
[root@ns conf]

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

nginx.com.
關閉:
複製代碼 代碼以下:/usr/local/nginx-1.7.0/sbin/nginx -s stop

文章來源:http://www.iis7.com/b/ssyqdq/

相關文章
相關標籤/搜索