最新动态
nginx直接通过设备号进行转发 nginx 转发ip
2024-10-31 15:52


nginx直接通过设备号进行转发 nginx 转发ip

目录

1.实现反向代理客户端 IP 透传

1.1实验:单机去传

1.2实验:多机去传

2.http反向代理负载均衡

2.1轮询

2.2加权轮询

2.3参数解析

2.4设置备胎

2.5hash

2.6url  hash

2.7cookie  hash

2.8ip  hash

3.四层代理

小问题解决

 1.当我们开启服务到时候,查看日志报错信息:我们80端口被占用编辑


就是在日志里面加上一个变量

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip

Module ngx_http_proxy_module

[root@centos8 ~]# cat /apps/nginx/conf/conf.d/pc.conf
server {
 listen 80;
 server_name www.kgc.org;
 location / {
   index index.html index.php;
   root /data/nginx/html/pc;
   proxy_pass http://10.0.0.18;
    #proxy_set_header X-Real-IP $remote_addr;                   #只添加客户端IP到请求报文头部,转发至后端服务器
   proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; #添加客户端IP和反向代理服务器IP到请求报文头部
 }
}
#重启nginx
[root@centos7 ~]#systemctl restart nginx
#后端Apache配置:
[root@centos7 ~]#vim /etc/httpd/conf/httpd.conf
 LogFormat "%{X-Forwarded-For}i %h %l 膹"%r" %>s %b "%{Referer}i" "%{User-Agent}i"" combined
#重启apache访问web界面并验证apache日志
 [root@centos8 ~]#cat /var/log/httpd/access_log
10.0.0.1 10.0.0.8 - - [05/Mar/2019:00:40:46 +0800] "GET / HTTP/1.0" 200 19 "-"
"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) 
Chrome/72.0.3626.119 Safari/537.36"
#Nginx配置:
[root@centos8 conf.d]# cat /apps/nginx/conf/nginx.conf
"$http_x_forwarded_for"' #默认日志格式就有此配置
#重启nginx访问web界面并验证日志格式:
10.0.0.8 - - [04/Mar/2019:16:40:51 +0800] "GET / HTTP/1.0" 200 24 "-"
"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) 
Chrome/72.0.3626.119 Safari/537.36" "10.0.0.1"

nginx已经可以看到了

 先看主配置文件中  /apps/nginx/conf/nginx.conf

 在看日志配置文件  /apps/nginx/logs/access.log

nginx直接通过设备号进行转发 nginx 转发ip_服务器_02

日志变量简单介绍 

nginx直接通过设备号进行转发 nginx 转发ip_nginx直接通过设备号进行转发_03

nginx直接通过设备号进行转发 nginx 转发ip_nginx_04

###7-1,7-3为nginx


###7-2为apache

nginx直接通过设备号进行转发 nginx 转发ip_nginx直接通过设备号进行转发_05

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_06

###7-2是apache

tail   -f   /etc/httpd/logs/access_log

###实时看日志

nginx直接通过设备号进行转发 nginx 转发ip_nginx_07

1.先在 7-1 自己的文件中写内容


proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

#添加客户端IP和反向代理服务器IP到请求报文头部

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_08

2.在 7-2 的日志主配置文件中写内容

vim   /etc/httpd/conf/httpd.conf

nginx直接通过设备号进行转发 nginx 转发ip_nginx_09

nginx直接通过设备号进行转发 nginx 转发ip_nginx直接通过设备号进行转发_10

nginx直接通过设备号进行转发 nginx 转发ip_nginx直接通过设备号进行转发_11

3.用7-3访问,然后看7-2的日志

nginx直接通过设备号进行转发 nginx 转发ip_nginx_12

nginx直接通过设备号进行转发 nginx 转发ip_服务器_13

nginx直接通过设备号进行转发 nginx 转发ip_负载均衡_14

三台主机均为nginx服务

1.将7-2转为nginx服务

nginx直接通过设备号进行转发 nginx 转发ip_负载均衡_15

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_16

发生的一个小错误,跳转到下面的  ”小问题解决“  去看

2.然后开启nginx服务

nginx直接通过设备号进行转发 nginx 转发ip_nginx_17

3.编辑内容


proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

#添加客户端IP和反向代理服务器IP到请求报文头部

nginx直接通过设备号进行转发 nginx 转发ip_nginx_18

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_19

nginx直接通过设备号进行转发 nginx 转发ip_nginx直接通过设备号进行转发_20

4.去7-1访问一下

nginx直接通过设备号进行转发 nginx 转发ip_nginx直接通过设备号进行转发_21

5.浏览器访问,看日志信息

nginx直接通过设备号进行转发 nginx 转发ip_负载均衡_22

三个地址我们都能看到,这就是IP透传

nginx直接通过设备号进行转发 nginx 转发ip_nginx直接通过设备号进行转发_23

在上一个节中Nginx可以将客户端的请求转发至单台后端服务器但是无法转发至特定的一组的服务器,而且不能对后端服务器提供相应的服务器状态监测,Nginx 可以基于ngx_http_upstream_module模块提供服务器分组转发、权重分配、状态监测、调度算法等高级功能

官方文档: https://nginx.org/en/docs/http/ngx_http_up

nginx直接通过设备号进行转发 nginx 转发ip_nginx直接通过设备号进行转发_24

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_25

1.给7-3和7-2网页编辑内容

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_26

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_27

我们做实验,为了看到效果,所以内容不一样

真实环境中,内容是一样的

nginx直接通过设备号进行转发 nginx 转发ip_nginx直接通过设备号进行转发_28

2.在7-1的主配置文件下写内容

下面图标错了,是7-1!!!

 

nginx直接通过设备号进行转发 nginx 转发ip_负载均衡_29

nginx直接通过设备号进行转发 nginx 转发ip_nginx_30

nginx直接通过设备号进行转发 nginx 转发ip_负载均衡_31

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_32

3.在7-1中访问

nginx直接通过设备号进行转发 nginx 转发ip_服务器_33

nginx直接通过设备号进行转发 nginx 转发ip_nginx直接通过设备号进行转发_34

4.当我们把7-3nginx服务停掉

nginx直接通过设备号进行转发 nginx 转发ip_nginx直接通过设备号进行转发_35

5.把7-3nginx开启

nginx直接通过设备号进行转发 nginx 转发ip_负载均衡_36

1.编辑主配置文件

nginx直接通过设备号进行转发 nginx 转发ip_nginx直接通过设备号进行转发_37

nginx直接通过设备号进行转发 nginx 转发ip_负载均衡_38

2.访问,查看结果

nginx直接通过设备号进行转发 nginx 转发ip_服务器_39

max_fails=3 ###连你3次,没反应就认为你死了

fail_timeout=30 ###上线后,给一个延迟时间30s,然后再连你

max_conns=10 ###最大连接数,只给你连10个

backup  #设置为备份服务器,当所有后端服务器不可用时,才会启用此备用服务器 sorry server   自己不能转自己

1.编辑主配置文件

nginx直接通过设备号进行转发 nginx 转发ip_负载均衡_40

nginx直接通过设备号进行转发 nginx 转发ip_负载均衡_41

2.curl访问看结果

nginx直接通过设备号进行转发 nginx 转发ip_负载均衡_42

3.停掉7-2服务

nginx直接通过设备号进行转发 nginx 转发ip_负载均衡_43

1.写配置文件内容

nginx直接通过设备号进行转发 nginx 转发ip_负载均衡_44

nginx直接通过设备号进行转发 nginx 转发ip_nginx直接通过设备号进行转发_45

2.访问看结果

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_46

缺点:和你的权重有关(weight),当你改变权重,会改变他的地址

1.改配置文件

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_47

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_48

2.访问看结果


实现每个url定向到同一个后端服务器

nginx直接通过设备号进行转发 nginx 转发ip_nginx_49

1.编辑主文件

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_50

2.看结果 

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_51

3.换一下data

-b name=data 从服务器响应set-cookie得到值,返回给服务器

nginx直接通过设备号进行转发 nginx 转发ip_nginx直接通过设备号进行转发_52

1.修改主配置文件

nginx直接通过设备号进行转发 nginx 转发ip_服务器_53

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_54

2.curl访问看结果

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_55

stream

###用的四层,只能控制tcp、udp(实现反向代理功能,包括TCP协议代理)

nginx直接通过设备号进行转发 nginx 转发ip_tcp/ip_56

安装redis

nginx直接通过设备号进行转发 nginx 转发ip_nginx_57

在我们安装了apache(httpd)的情况下;当我们想装nginx,发现开启报错

一台主机只能给一个服务提供80端口,当有两台服务都是80,就会报错,只能开一台服务 

nginx直接通过设备号进行转发 nginx 转发ip_nginx_59

如果想用两个服务,可以去其中一个服务下的主配置文件中,更改他的端口号 

    以上就是本篇文章【nginx直接通过设备号进行转发 nginx 转发ip】的全部内容了,欢迎阅览 ! 文章地址:http://lianchengexpo.xrbh.cn/quote/6355.html 
     行业      资讯      企业新闻      行情      企业黄页      同类资讯      网站地图      返回首页 迅博思语资讯移动站 http://lianchengexpo.xrbh.cn/mobile/ , 查看更多