欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

centos 安装 nginx

程序员文章站 2023-11-21 23:58:04
1.首先检查gcc编译器安装了没 2.首先安装必要的库(nginx 中gzip模块需要 zlib 库,rewrite模块需要 pcre 库,ssl 功能需要openssl库),检查一下是否已经安装了(两种检查方法): 3.安装Nginx 使用源码编译安装 拷贝链接 http://nginx.org/ ......

1.首先检查gcc编译器安装了没

centos 安装  nginx

 

 

2.首先安装必要的库(nginx 中gzip模块需要 zlib 库,rewrite模块需要 pcre 库,ssl 功能需要openssl库),检查一下是否已经安装了(两种检查方法):

 

centos 安装  nginx

 

centos 安装  nginx

 

 

 

3.安装Nginx 使用源码编译安装

centos 安装  nginx

拷贝链接 http://nginx.org/download/nginx-1.14.0.tar.gz

 

 

centos 安装  nginx

解压 tar -zxvf nginx-1.14.0.tar.gz

 

 

centos 安装  nginx

cd nginx-1.14.0,执行 ./configure

 

centos 安装  nginx

出错 pcre not found,前面已检查是安装了,这是一个坑

 

 

试一下更新pcre的版本

yum update -y pcre

centos 安装  nginx

更新完后,再次./configure,问题还是一样

******************************************************************************************************************************************************************

问题出现原因:因为还有三个库没有安装  prce-devel   zlib-devel   openssl-devel,安装即可

centos 安装  nginx

安装完再次执行  ./configure

 

centos 安装  nginx

 

然后再执行

make && make install

这样就已经安装完毕!!!

************************************************************************************************************************

检查是否安装成功

centos 安装  nginx

 

centos 安装  nginx