ubuntu 安裝 nginx

安裝步驟以下: nginx

安裝pcre 測試

  1. 下載pcre  下載網址:ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.37.tar.gz
  2. 解壓文件,命令: sudo tar -zxvf pcre-8.37.tar.gz
  3. 進入目錄,命令:cd pcre-8.37
  4. 執行命令:sudo ./configure
  5. 執行命令:sudo make
  6. 執行命令:sudo make install
  7. 如提示:You need a C++ compiler. 則執行命令:sudo apt-get install build-essential 再執行命令: sudo make & make install

安裝openssl ui

  1. 下載openssl, 下載地址:http://www.openssl.org/source/openssl-1.0.2d.tar.gz
  2. 解壓文件,命令: sudo tar -zxvf openssl-1.0.2d.tar.gz
  3. 進入目錄,命令:cd openssl-1.0.2d
  4. 執行命令:sudo ./configure
  5. 執行命令:sudo make
  6. 執行命令:sudo make install

安裝zlib spa

  1. 下載zlib,下載地址:http://zlib.net/zlib-1.2.8.tar.gz
  2. 解壓文件,命令: sudo tar -zxvf zlib-1.2.8.tar.gz
  3. 進入目錄,命令:cd zlib-1.2.8
  4. 執行命令:sudo ./configure
  5. 執行命令:sudo make
  6. 執行命令:sudo make install

安裝nginx .net

  1. 下載nginx,下載地址:http://nginx.org/download/nginx-1.9.6.tar.gz
  2. 解壓文件,命令: sudo tar -zxvf nginx-1.9.6.tar.gz
  3. 進入目錄,命令:cd nginx-1.9.6
  4. 執行命令:sudo ./configure --with-pcre=/home/develop/software/pcre-8.37 --with-openssl=/home/develop/software/openssl-1.0.2d --with-zlib=/home/develop/software/zlib-1.2.8 --with-http_ssl_module
  5. 執行命令:sudo make
  6. 執行命令:sudo make install


OK,nginx安裝完畢,測試一下。

nginx 默認安裝到/usr/local/nginx/ blog

  1. 執行命令: cd /usr/local/nginx/sbin
  2. 執行命令: sudo ./nginx
  3. 打開 http://localhost 看到『Welcome to nginx!』 說明安裝成功。

安裝過程當中出現問題,參考了http://blog.csdn.net/fish43237/article/details/40515897文章,感謝網上資源提供者。 ssl

相關文章
相關標籤/搜索