CentOS7离线安装nginx-1.18.0完整记录教程
一、下载nginx
访问:http://nginx.org/en/download.html
下载:nginx-1.18.0.tar.gz
将下载下来的nginx-1.18.0.tar.gz上传到linux服务器
进入上传路径:
cd /home/soft/
解压:
tar -xvf nginx-1.18.0.tar.gz
二、安装nginx
进入nginx目录:
cd /home/soft/nginx-1.18.0/
执行configure:
./configure
(执行报错参考以下①②③④解决)
执行make命令:
make
执行make install命令:
make install
①报错:./configure: error: the HTTP rewrite module requires the PCRE library.
提示缺少依赖pcre包
下载:pcre-8.40.tar.gz
pcre+zlib+openssl下载地址:https://download.csdn.net/download/z\_vicky/16291237
将下载下来的pcre-8.40.tar.gz上传到linux服务器
进入上传路径:
cd /home/soft/
解压:
tar -xvf pcre-8.40.tar.gz
进入pcre路径:
cd /home/soft/pcre-8.40/
执行命令:
./configure
执行make命令:
make
执行make install命令:
make install
pcre包安装完毕
可以查看pcre版本:
pcre-config --version
8.40
②报错:./configure: error: the HTTP gzip module requires the zlib library.
提示缺少依赖zlib包
下载:zlib-1.2.11.tar.gz
参考步骤①安装
③报错:./configure: error: the HTTP cache module requires md5 functions
from OpenSSL library.
提示缺少依赖openssl包
下载:openssl-fips-2.0.10.tar.gz.gz
参考步骤①安装
④OpenSSL library is not used
需要在安装nginx的时候指定openssl解压路径,执行:
./configure --prefix=/usr/local/nginx --with-openssl=/home/soft/openssl-fips-2.0.10 --with-http_ssl_module
三、配置nginx
进入nginx路径:
cd /home/soft/nginx-1.18.0/conf/
打开配置文件:
vim nginx.conf
修改:
server {
listen 8888;
server_name 172.27.126.41;
(listen:避开Tomcat或在用端口;server_name:服务器ip。)
四、启动nginx
执行:
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
访问服务器ip查看:
查看nginx进程:
ps -ef|grep nginx