您好,登錄后才能下訂單哦!
本篇內容介紹了“Linux centos7環境下Nginx安裝實例分析”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
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, or build the pcre library
statically from the source with nginx by using --with-pcre=<path> option.
安裝pcre-devel解決問題(需要有網絡下運行并且是超級管理員身份)
yum -y install pcre-devel yum -y install openssl openssl-devel
要切換為root超級管理員身份: su
現在進行重新配置
./configure --prefix=/usr/local/nginx
如果重新配置也不成功這時需要安裝gcc
yum –y install gcc
安裝好gcc之后再次進行配置
5、編譯命令
make
6、安裝命令
make install
7、安裝完畢,啟動nginx
cd /usr/local/nginx/sbin
./nginx
如果啟動不成功可能是防火墻問題導致
這時需要關閉防火墻
systemctl stop firewalld.service
8、訪問nginx
http://ip地址
9、如果要精簡一下配置文件
重新加載配置文件
運行命令:nginx -s reload
到這里博主我就成功的在linux centos7下安裝了nginx服務器
并且已經成功的在瀏覽器上通過ip地址訪問到nginx。
“Linux centos7環境下Nginx安裝實例分析”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。