使用 Nginx 实现 TCP 反向代理 - 运维之美

标签: | 发表时间:2018-09-08 17:09 | 作者:
出处:https://www.hi-linux.com

Nginx 在1.9.0版本发布以前如果要想做到基于TCP的代理及负载均衡需要通过打名为  nginx_tcp_proxy_module 的第三方patch来实现,该模块的代码托管在github上网址: https://github.com/yaoweibin/nginx_tcp_proxy_module/。

Nginx 从1.9.0开始发布 ngx_stream_core_module模块,该模块支持tcp代理及负载均衡。

今天我们就要来简单测试一下 Nginx 的  ngx_stream_core_module 模块。

安装Nginx并启用模块

ngx_stream_core_module这个模块并不会默认启用,需要在编译时通过指定 --with-stream参数来激活这个模块。

  • 编译安装
1      
2
3
4
5
6
7
$ yum -y install proc* openssl* pcre*      
$ wget http://nginx.org/download/nginx-1.9.4.tar.gz
$ tar zxvf nginx-1.9.4.tar.gz
$ cd nginx-1.9.4
$ ./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-threads --with-stream --with-stream_ssl_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6 --with-http_spdy_module --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic'
$ make
$ make install
  • 配置stream模块

实例一:测试MYSQL负载均衡

stream模块必需在nginx.conf中配置

1      
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$ mv nginx.conf{,.bak}      
$ vim /etc/nginx/nginx.conf

worker_processes auto;
events {
worker_connections 1024;
}
error_log /var/log/nginx_error.log info;

stream {
upstream mysqld {
hash $remote_addr consistent;
server 192.168.1.42:3306 weight=5 max_fails=1 fail_timeout=10s;
server 192.168.1.43:3306 weight=5 max_fails=1 fail_timeout=10s;
}

server {
listen 3306;
proxy_connect_timeout 1s;
proxy_timeout 3s;
proxy_pass mysqld;
}

}

实例二:实现SSH转发

1      
2
3
4
5
6
7
8
9
upstream ssh {      
hash $remote_addr consistent;
server 192.168.1.42:22 weight=5;
}

server {
listen 2222;
proxy_pass ssh;
}

实例三:官方一个较完整的配置示例

stream模块的配置里还支持类似 server unix:/tmp/backend3.sock;这样的sock数据交换接口,也可以直接 proxy_pass unix:/tmp/stream.socket;

1      
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
worker_processes auto;      
error_log /var/log/nginx/error.log info;
events {
worker_connections 1024;
}

stream {
upstream backend {
hash $remote_addr consistent;

server backend1.example.com:12345 weight=5;
server 127.0.0.1:12345 max_fails=3 fail_timeout=30s;
server unix:/tmp/backend3;
}

server {
listen 12345;
proxy_connect_timeout 1s;
proxy_timeout 3s;
proxy_pass backend;
}

server {
listen [::1]:12345;
proxy_pass unix:/tmp/stream.socket;
}
}

ngx_stream_core_module也同样的支持tcp长连接保持。keepidle是保持时间,keepintvl是间隔时间 ,keepcnt是发送的个数。

so_keepalive=on|off|[keepidle]:[keepintvl]:[keepcnt]

参考文档

http://www.google.com
http://zhangge.net/5037.html
http://nginx.org/en/docs/stream/ngx_stream_core_module.html

相关 [nginx tcp 反向代理] 推荐:

使用 Nginx 实现 TCP 反向代理 - 运维之美

- -
Nginx 在1.9.0版本发布以前如果要想做到基于TCP的代理及负载均衡需要通过打名为  nginx_tcp_proxy_module 的第三方patch来实现,该模块的代码托管在github上网址: https://github.com/yaoweibin/nginx_tcp_proxy_module/.

squid,nginx,lighttpd反向代理的区别

- - 企业架构 - ITeye博客
[转载自]http://www.cnblogs.com/yihang/archive/2010/12/19/1910363.html. squid,nginx,lighttpd反向代理的区别. 反向代理从传输上分可以分为2种:. 1:同步模式(apache-mod_proxy和squid). 2:异步模式(lighttpd 和 nginx).

Nginx多Server反向代理配置

- - 企业架构 - ITeye博客
Nginx强大的正则表达式支持,可以使server_name的配置变得很灵活,如果你要做多用户博客,那么每个用户拥有自己的二级域名也就很容易实现了. 下面我就来说说server_name的使用吧:. server_name的匹配顺序. nginx中的server_name指令主要用于配置基于名称虚拟主机,server_name指令在接到请求后的匹配顺序分别为:.

Nginx反向代理以及配置优化

- - CSDN博客推荐文章
下面配置包含了,nginx配置的一个比较全面的反向代理的例子:. #允许客户端请求的最大单个文件字节数. #后端返回502,504,执行超时等错误,自动将请求转发到upstream负载池中另一台服务器. 作者:liuzhoulong 发表于2013-5-5 13:48:26 原文链接. 阅读:0 评论:0 查看评论.

nginx反向代理访问带referer的后端

- - 开心平淡对待每一天。热爱生活
nginx反向代理访问带referer的后端 . 作者:ADMIN 发布时间:SEPTEMBER 16, 2011 分类: LINUX. 防外链大都是通过检查请求中的http referer来实现的. 如果通过反向代理来动态指定http referer是不是可以解决问题. 用nginx搭一个反向代理.

Nginx 的 TCP 负载均衡介绍

- - zzm
ginx Plus的商业授权版开始具有TCP负载均衡的功能. 从Nginx 1.7.7版本开始加入的,现在变成了一个商业收费版本,想要试用,需要在官网申请. 也就是说,Nginx除了以前常用的HTTP负载均衡外,Nginx增加基于TCP协议实现的负载均衡方法. HTTP负载均衡,也就是我们通常所有“七层负载均衡”,工作在第七层“应用层”.

nginx缓存html静态文件,解析php及反向代理IIS的配置

- - 开源软件 - ITeye博客
       Nginx缓存html静态文件 解析php及反向代理IIS的配置,供初学的朋友参考. server_name k; #碰到域名为k的 就交给iis来运行. proxy_pass http://k:8080/;#我的IIS上面的站点即为http://k:8080. location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|html|htm|css)$ { #指定缓存文件类型.

反向代理服务器Nginx获得300万美元投资,将推出商业版本

- 幻幽 or A書 - 36氪
Nginx是10年前俄国工程师Igor Sysoev为俄国访问量第二大的网站Rambler.ru开发的高性能HTTP和反向代理服务器软件,今天他们宣布获得了来自包括Dell公司CEO Michael Dll私人投资公司等的300万美元投资. Nginx联合创始人Andrew Alexeev表示,通过这次融资,年底前他们将在旧金山开设办事处,并且在2012年会推出一个商业版本.

nginx配置反向代理或跳转出现400问题处理记录 - AllEmpty - 博客园

- -
访问这台服务器上的其他站点都能正常访问,而问题站点的html页面也能正常打开......在测试过程中发现,每访问一下问题接口,访问日志就增加30多M,刷了几次,nginx日志大小直线上升.......   百度了一下“400 Bad Request  Request Header Or Cookie Too Large”,查找出来的几乎都是说“nginx 400 Bad request是request header过大所引起,request过大,通常是由于cookie中写入了较大的值所引起.