Linux搭建nginx (CentOS7)

2022/3/7 7:15:29

本文主要是介绍Linux搭建nginx (CentOS7),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

前言

  1、Nginx:负责负载均衡,分发信息;也是一个中间件,Nginx可以作为反向代理器进行负载均衡的实现,如下图所示

  

 

   2、部署步骤:

    • nginx依赖包安装
    • 下载压缩包并进行解压
    • 检查系统是否有编译时所需的库(#./configure)
    • 编译
    • 安装
    • 启动nginx
    • 端口号添加到防火墙
    • 验证 

 

一、nginx依赖包安装 

  1.gcc安装:安装 nginx 需要先将官网下载的源码进行编译,编译依赖 gcc 环境,如果没有 gcc 环境,则需要安装

  2.PCRE(Perl Compatible Regular Expressions) 是一个Perl库,包括 perl 兼容的正则表达式库。nginx 的 http 模块使用 pcre 来解析正则表达式,所以需要在 linux 上安装 pcre 库,pcre-devel 是使用 pcre 开发的一个二次开发库。nginx也需要此库

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

  4.OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及 SSL 协议,并提供丰富的应用程序供测试或其它目的使用。
nginx 不仅支持 http 协议,还支持 https(即在ssl协议上传输http),所以需要在 Centos 安装 OpenSSL 库。

yum install -y gcc-c++ 
yum install -y pcre pcre-devel 
yum install -y zlib zlib-devel 
yum install -y openssl openssl-devel

  

二、nginx下载与安装

  1、直接下载.tar.gz安装包,下载地址:https://nginx.org/en/download.html

把下载的包放到/usr/local/nginx目录,然后解压安装到nginx-1.12.0当前目录

[root@localhost ~]# cd /usr/local/
[root@localhost local]# mkdir nginx
[root@localhost local]# cd nginx/
[root@localhost nginx]# wget -c https://nginx.org/download/nginx-1.12.0.tar.gz
[root@localhost nginx]# tar -zxvf nginx-1.12.0.tar.gz 

  

  2、执行解压缩后产生的一个名为configure的可执行脚本程序。它是用于检查系统是否有编译时所需的库,以及库的版本是否满足编译的需要等安装所需要的系统信息。为随后的编译工作做准备。命令为: #./configure

[root@localhost nginx]# cd nginx-1.12.0
[root@localhost nginx-1.12.0]# ./configure

 

  3、编译安装

[root@localhost nginx-1.12.0]## make (编译)
[root@localhost nginx-1.12.0]## make install (安装)

 

  4、启动

[root@localhost nginx-1.12.0]# cd /usr/local/nginx/sbin/
[root@localhost sbin]# ./nginx

 

  5、添加防火墙

firewall-cmd --add-port=80/tcp --permanent
firewall-cmd --add-port=80/udp --permanent
firewall-cmd --reload

  

  6、验证是否部署成功:

    启动服务后,nginx默认是在80端口启动的,在浏览器输入http://(你的ip地址):80/ (80端口默认可以省略),能正常访问到页面,说明服务启动成功

 

 三、相关指令

  先cd到/usr/local/nginx/sbin/

./nginx               //启动服务
./nginx -s stop    //停止服务,此方式停止步骤是待nginx进程处理任务完毕进行停止
./nginx -s quit    //退出服务,此方式相当于先查出nginx进程id再使用kill命令强制杀掉进程
./nginx -s reload     //重新加载,当 ngin x的配置文件 nginx.conf 修改后,要想让配置生效需要重启 nginx,使用-s reload不用先停止 ngin x再启动 nginx 即可将配置信息在 nginx 中生效
ps aux|grep nginx     //查询nginx进程

 

  

 

 

  

 



这篇关于Linux搭建nginx (CentOS7)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程