Ubuntu下 5步安裝nginx記錄

一、安裝包準備html

    去 http://nginx.org/en/download.html 下載  最新穩定版nginx安裝包nginx

    

二、上傳到Ubuntu服務端c++

    能夠經過winscp上傳
ui

三、解壓安裝包spa

    使用命令:  tar -zxvf  nginx-1.8.0.tar.gzcode

    查看是否解壓成功,htm

    使用命令:  lsip

    

四、開始安裝get

    命令進入 nginx-1.8.0/目錄it

    安裝   輸入命令  ./configure

    執行後可能出現的錯誤已經解決方法

    a. 出現 error C compiler cc is not found

       錯誤緣由: 缺少nginx須要的包

       解決方法:安裝所缺少的包 

    安裝命令:sudo apt install gcc gcc-c++ autpconf automake

       注意,這個地方可能會安裝失敗,那麼須要你更新下源 進入這個目錄/etc/apt/  而後輸                入命令:apt-get update 來更新源

       執行完後,輸入./configure

    b.出現 錯誤 ./configure: error: the HTTP rewrite module requires the PCRE library.

       錯誤緣由:缺少PCRE library

       解決方法:命令安裝所缺少的包 

       安裝命令:sudo apt-get install libpcre3 libpcre3-dev

        執行完後,輸入./configure

       c.出現錯誤  ./configure: error: the HTTP gzip module requires the zlib library.
       錯誤緣由: 缺少 zlib library

       解決方法:命令安裝所缺少的包 

       安裝命令: sudo apt-get install zlib1g zlib1g-dev

        執行完後,輸入./configure

此時 ,若是出現如圖所示,表示安裝條件已知足

而後輸入make

等待make完成後,

最後 輸入命令:make install

五、驗證是否安裝成功

輸入命令 cd /usr/local/  

輸入命令ls 若是你發現該目錄下有nginx目錄,表示已經安裝成功

相關文章
相關標籤/搜索