我是靠谱客的博主 积极过客,最近开发中收集的这篇文章主要介绍centos 安装 nginx,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

这里写目录标题

    • 1. 写在前面
    • 2. 源码安装

1. 写在前面

centos 安装nginx总共有3种方式 源码安装,yum源下载安装,docker镜像安装。接下来我就依次讲解下几种方式的安装

2. 源码安装

首先访问 nginx 的官网 nginx的官网,点击download连接
在这里插入图片描述

照到对应的型号和版本
在这里插入图片描述
输入shell命令

wget https://nginx.org/download/nginx-1.16.1.tar.gz

下载完成后就会得到一个Nginx的压缩包
在这里插入图片描述
接下来执行解压操作:

tar -zxvf  nginx-1.16.1.tar.gz 

进入解压好的文件夹,执行编译命令

 ./configure  

用这个命令容易报如下错误
在这里插入图片描述
其原因是你系统没有pcre包,输入如下命令可解决这个问题

yum -y install pcre-devel

还会出现如下问题

./configure: error: the HTTP cache module requires md5 functions
from OpenSSL library.   You can either disable the module by using
--without-http-cache option, or install the OpenSSL library into the system,
or build the OpenSSL library statically from the source with nginx by using
--with-http_ssl_module --with-openssl=<path> options.

其原因是你的系统内没有openssl相关的包,输入如下内容可以解决这个问题

yum -y install openssl openssl-devel

在这里插入图片描述
如图这样就执行完成了
再执行 make && make install

make && make install

在这里插入图片描述
当执行到这里之后说明nginx 已经安装成功了,关于configure 相关的配置请参照:nginx configure 相关的参数,在默认的情况下它是安装到 /usr/local 下面的,如图:
在这里插入图片描述
进入 nginx 下面的sbin

cd nginx/sbin

启动 nginx

./nginx

查看最终的效果
在这里插入图片描述

最后

以上就是积极过客为你收集整理的centos 安装 nginx的全部内容,希望文章能够帮你解决centos 安装 nginx所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部