centos7 安装nginx

安装gcc:nginx 编译依赖gcc环境

yum install gcc-c++

下载nginx

wget -c https://nginx.org/download/nginx-1.10.1.tar.gz

安装

进入解压后的目录
执行下面的命令

./configure

报错:

checking for PCRE library … not found checking for PCRE library in /usr/local/ … not found checking for PCRE library in /usr/include/pcre/ … not found checking for PCRE library in /usr/pkg/ … not found checking for PCRE library in /opt/local/ … not found ./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(Perl Compatible Regular Expressions) 是一个Perl库,包括 perl 兼容的正则表达式库。nginx 的 http 模块使用 pcre 来解析正则表达式,所以需要在 linux 上安装 pcre 库,pcre-devel 是使用 pcre 开发的一个二次开发库。nginx也需要此库

yum install pcre-devel

zlib 库提供了很多种压缩和解压缩的方式, nginx 使用 zlib 对 http 包的内容进行 gzip ,所以需要在 Centos 上安装 zlib 库。

yum install zlib zlib-devel

OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及 SSL 协议,并提供丰富的应用程序供测试或其它目的使用。

nginx 不仅支持 http 协议,还支持 https(即在ssl协议上传输http),所以需要在 Centos 安装 OpenSSL 库

yum install openssl openssl-devel

再次运行编译:configure文件

./configure --with-http_ssl_module --with-ipv6

执行make命令

make
make install

查找nginx的安装目录

whereis nginx

usr/local/nginx

测试启动关闭nginx

切换到nginx的安装目录

cd /usr/local/nginx
./nginx             //开启服务
./nginx -s quit     //关闭服务

部署项目

切换到安装目录的conf文件夹,编辑nginx.config文件

vim nginx.conf
location / {
    root  <项目的路径>;
    index  index.html index.htm;
}

查看nginx的运行情况

ps -ef | grep nginx

./nginx -s quit
posted @ 2021-01-09 15:04  一壶浊酒喜相逢  阅读(400)  评论(0编辑  收藏  举报