首页 > 系统相关 >nginx平滑升级+location案例

nginx平滑升级+location案例

时间:2024-08-28 14:54:21浏览次数:11  
标签:http log -- 平滑 nginx location conf root

这里是接着上一边文章的实验继续做的

一、步骤

1、获取之前的编译参数
2、下载新模块
3、重新编译软件,加上–add-module=新模块的解压路径
4、停止服务并备份原程序
5、把源程序用新程序覆盖
6、启动新程序

二、搭建nginx

nginx搭建详情:http://t.csdnimg.cn/B1QsL

三、平滑升级

1、查看nginx编译参数

[root@nginx ~]# nginx -V
nginx version: nginx/1.24.0
built by gcc 11.4.1 20231218 (Red Hat 11.4.1-3) (GCC) 
built with OpenSSL 3.0.7 1 Nov 2022
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --user=nginx --group=nginx --with-debug --with-http_ssl_module --with-http_realip_module --with-http_image_filter_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_stub_status_module --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log

2、下载包文件

https://github.com/openresty/echo-nginx-module
下载到本地,然后上传到nginx服务器中

[root@nginx ~]# cd /opt/software/
[root@nginx software]# ls
nginx-1.24.0.tar.gz
[root@nginx software]# rz -E
rz waiting to receive.
[root@nginx software]# ls
echo-nginx-module-master.zip  nginx-1.24.0.tar.gz

3、下载工具解压模块包

[root@nginx software]# yum -y install unzip
[root@nginx software]# unzip echo-nginx-module-master.zip 
//再次解压nginx包文件,解压到哪都行但是不要放到usr/local/下面
[root@nginx software]# tar -zxvf nginx-1.24.0.tar.gz
[root@nginx software]# ls
echo-nginx-module-master  echo-nginx-module-master.zip  nginx-1.24.0  nginx-1.24.0.tar.gz

4、添加模块编译安装

[root@nginx software]# cd nginx-1.24.0/
[root@nginx nginx-1.24.0]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-debug --with-http_ssl_module --with-http_realip_module --with-http_image_filter_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_stub_status_module --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --add-module=../echo-nginx-module-master

5、编译安装

[root@nginx nginx-1.24.0]# ls objs/
addon  autoconf.err  Makefile  ngx_auto_config.h  ngx_auto_headers.h  ngx_modules.c  src
[root@nginx nginx-1.24.0]# make
//编译完成之后再次进行查看objs目录下是否有nginx程序
[root@nginx nginx-1.24.0]# ls objs/
addon  autoconf.err  Makefile  nginx  nginx.8  ngx_auto_config.h  ngx_auto_headers.h  ngx_modules.c  ngx_modules.o  src

6、备份源程序并停止、覆盖、启动服务

[root@nginx nginx-1.24.0]# nginx -s stop
[root@nginx nginx-1.24.0]# cp /usr/local/nginx/sbin/nginx /opt/
[root@nginx nginx-1.24.0]# cp objs/nginx /usr/local/nginx/sbin/
cp: overwrite '/usr/local/nginx/sbin/nginx'? y
[root@nginx nginx-1.24.0]# cd /usr/local/nginx
[root@nginx nginx]# nginx
[root@nginx nginx]# ss -anlt
State         Recv-Q        Send-Q               Local Address:Port               Peer Address:Port        Process        
LISTEN        0             511                        0.0.0.0:80                      0.0.0.0:*                          
LISTEN        0             128                        0.0.0.0:22                      0.0.0.0:*                          
LISTEN        0             128                           [::]:22                         [::]:*              

//查看nginx信息

[root@nginx nginx]# nginx -V
nginx version: nginx/1.24.0
built by gcc 11.4.1 20231218 (Red Hat 11.4.1-3) (GCC) 
built with OpenSSL 3.0.7 1 Nov 2022
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --user=nginx --group=nginx --with-debug --with-http_ssl_module --with-http_realip_module --with-http_image_filter_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_stub_status_module --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --add-module=../echo-nginx-module-master

7、测试引用echo

[root@nginx nginx]# vim conf/nginx.conf
 server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
                echo "shiqian";
        }

8、检查配置文件

[root@nginx nginx]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@nginx nginx]# nginx
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] still could not bind()

//重载nginx
[root@nginx nginx]# nginx -s reload

在自己电脑的cmd上访问

C:\Users\Emperor>curl http://192.168.100.111
shiqian

四、location案例

location区段,通过指定模式来与客户端请求的URI相匹配

功能:
允许根据用户请求的URI来匹配定义的各个location,匹配时,此请求将被相应的location配置块中的配置所处理,例如做访问控制等功能

语法:
location [修饰符] pattern {…}
修饰符
= 精确匹配
~ 正则表达式模式匹配,区分大小写
~* 正则表达式模式匹配,不区分大小写
^~ 前缀匹配,类似于无修饰符的行为,也是以指定模块开始,不同的是,如果模式匹配,那么就停止搜索其他模式了,不支持正则表达式
@ 定义命名location区段,这些区段客户端不能访问,只可以由内部产生的请求来访问,如try_files或者error_page等

1、没有修饰符表示必须以指定模式开始

[root@nginx ~]# vim /usr/local/nginx/conf/nginx.conf
    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location /abc {
                echo "shiqian";
        }

        }

[root@nginx ~]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@nginx ~]# nginx -s reload

在自己主机的cmd进行访问

//只有当http://192.168.100.111后面接的是/abc时,不管在其后面加上任何内容都能访问
C:\Users\Emperor>curl http://192.168.100.111/abc
shiqian

C:\Users\Emperor>curl http://192.168.100.111/abc/
shiqian

C:\Users\Emperor>curl http://192.168.100.111/abcakhdakd
shiqian

C:\Users\Emperor>curl http://192.168.100.111/abc/dnakwndj
shiqian

2、用“=”精准匹配

[root@nginx ~]# vim /usr/local/nginx/conf/nginx.conf
    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location = /abc {
                echo "shiqian";
        }

        }

[root@nginx ~]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@nginx ~]# nginx -s reload

在自己电脑使用cmd访问

//只有当http://192.168.100.111后面接的是/abc时,才能访问
C:\Users\Emperor>curl http://192.168.100.111/abc
shiqian

C:\Users\Emperor>curl http://192.168.100.111/abc/daw
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.24.0</center>
</body>
</html>

3、~:表示指定的正则表达式要区分大小写

[root@nginx ~]# vim /usr/local/nginx/conf/nginx.conf
    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location ~ /abc$ {
                echo "shiqian";
        }

        }
        
[root@nginx ~]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@nginx ~]# nginx -s reload

在自己电脑上使用cmd访问

//只有当http://192.168.100.111后面接的是/abc时,才能访问
C:\Users\Emperor>curl http://192.168.100.111/abc
shiqian

C:\Users\Emperor>curl http://192.168.100.111/aBC
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.24.0</center>
</body>
</html>

4、当“=”和“~”同时存在时,此时时 = 优先于 ~

[root@nginx ~]# vim /usr/local/nginx/conf/nginx.conf
    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location ~ /abc$ {
                echo "shiqian";
        }

         location = /abc {
                echo "sq";
        }

[root@nginx ~]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@nginx ~]# nginx -s reload

在自己电脑上使用cmd访问

C:\Users\Emperor>curl http://192.168.100.111/abc
sq

5、 ~*:表示指定的正则表达式不区分大小写

[root@nginx ~]# vim /usr/local/nginx/conf/nginx.conf
    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location ~* /abc$ {
                echo "shiqian";
        }

在自己电脑上使用cmd访问

C:\Users\Emperor>curl http://192.168.100.111/abc
shiqian

C:\Users\Emperor>curl http://192.168.100.111/aBC
shiqian

location总结

查找顺序和优先级:由高到低
1、带有“=”的精确匹配优先
2、正则表达式按照他们在配置文件中定义的顺序
3、带有“^~”修饰符的,开头匹配
4、带有或者*修饰符的,如果正则表达式与URI匹配
5、没有修饰符的精确匹配

location = 路径
location ^~ 路径
location ~ 正则
location ~* 正则
location 路径

标签:http,log,--,平滑,nginx,location,conf,root
From: https://blog.csdn.net/q911326/article/details/141566957

相关文章

  • nginx访问控制、用户认证、https
    环境rockylinux9虚拟机,时钟同步已完成,基本工具,命令已安装192.168.100.111nginx服务器192.168.100.112客户端访问192.168.100.114客户端访问nginx已经配置完成做了平滑升级一、nginx访问控制默认允许所有主机访问stub_status模块stub_status模块主要作用于查看ng......
  • nginx: 两个解析日志的脚本
    一,解析日志得到访问量最高的100个ip地址:awk'{print$1}'www.access_log|sort|uniq-c|sort-n-k1-r|head-n100效果如图:二,解析日志得到访问量最高的10个url命令[root@blog27]#awk'{print$7}'20240827_access.log|sort|uniq-c|sort-rn|head-10返回......
  • 安全:关闭nginx/php的对外版本显示
    一,关闭nginx的版本显示:1,关闭前2,关闭nginx版本显示:编辑nginx.conf[root@blogconf]#vinginx.conf增加一行:server_tokensoff;重新服务:[root@blogconf]#systemctlreloadnginx.service3,再次查看:二,关闭php的版本显示1,关闭前2,关闭编辑php.ini[root@blo......
  • nginx部署出现 Welcome to nginx! If you see this page 该如何解决
    当你部署nginx的时候出现,ping域名网站可以通,但是访问不了网站怎么办,不用急,往下看;1.问题所在其实出现以上的问题就代表你已经成功搭建好了nginx,只是现在默认访问的时候跳转到了nginx的首页问题。2.解决方案默认情况下,Nginx安装后会使用默认配置文件,这些文件通常会指向一个默......
  • 【Nginx】windows如何实现模拟微服务负载
    背景:上篇讲到本地的【微服务多开】,在前后端分离项目中,可能还需要配合nginx配置,才能实现真实负载运行场景,本文讲述输入如何模拟微服务负载一、本地下载windows版本Nginx并解压 二、在conf/nginx.conf中添加一下配置http{#定义upstream,这里使用轮询策略upstre......
  • Nginx 记录POST记录并设置日志只允许追加
    之前想融入到默认配置中。但是还是有一些会出现疑问。只能以文章的形式来配置之前想过异步的存储日志的方式。但是udp的方式也是挺消耗性能的无果一、Nginx的默认日志文件如下:#设定日志格式,main是默认的格式log_format  main  '$remote_addr-$remote_user[$time_l......
  • Nginx 配置文件说明
    1.全局配置这些配置通常位于配置文件的最顶部,影响整个NGINX的行为。worker_processes:作用:指定NGINX进程的数量。建议设置为服务器CPU核心的数量以提高性能。示例:worker_processes1;error_log:作用:指定错误日志文件的位置和日志级别(如debug,info,notice,......
  • Nginx实现文件下载
    安装nginx可看我的另一篇文章:http://t.csdnimg.cn/tjRLA1,创建存储下载文件的路径路径自己根据需求设置mkdir-p/data/download/app2,对文件夹授权chmod755/data/download/app3,修改nginx配置文件vim/data/nginx/conf/nginx.conf注意这里使用:alias,不要用root,不然会......
  • NGINX 配置
    1.NGINX基础配置1.1NGINX安装在Linux系统上安装NGINX可以使用包管理工具,例如在Ubuntu上:sudoaptupdatesudoaptinstallnginx安装完成后,启动NGINX服务:sudosystemctlstartnginx1.2NGINX基本配置文件NGINX的主配置文件通常位于/etc/nginx/nginx.conf......
  • ThinkPHP 6 + PHP7.4.3nts +nginx 使用mysql和oracle数据库
    ThinkPHP6+PHP7.4.3nts+nginx使用mysql和oracle数据库.前言业务需求,之前使用的php7.3.4nts,mysql自己写的代码,需要对接第三方系统,第三方使用的oracle数据库。之前也是各种的网查,稀里糊涂的成功了。上周五又需要对接,这次用的是php7.4.3nts,各种试了两三天不行,昨晚就突然可以......