Centos7 64位 之 Nginx-1.15.7 安裝

1、nginx扮演了一個反向代理的服務器的角色。
是一種軟負載,軟件負載均衡是利用現有的技術結合主機硬件實現的一種消息隊列分發機制。html

2、官網下載nginx包
能夠從這裏找最新的:http://nginx.org/en/download.htmlnginx

3、解壓並進入對應目錄下安裝
tar -zxvf nginx-1.15.7.tar.gz --解壓
# ./configure && make && make install --執行安裝服務器

4、安裝過程錯誤解決
1.執行安裝後提示:
./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包:
yum -y install pcre-devel
安裝PCRE包後從新安裝nginxui

2.執行安裝後提示:
./configure: error: the HTTP gzip module requires the zlib library.
You can either disable the module by using --without-http_gzip_module
option, or install the zlib library into the system, or build the zlib library
statically from the source with nginx by using --with-zlib=<path> option.
缺乏zlib包:
yum install -y zlib-devel
安裝完成後從新安裝nginx代理


安裝成功!htm

相關文章
相關標籤/搜索