把nginx代理mysql,需要添加stream模块
stream用于TCP/UDP数据流的代理和负载均衡,转发TCP消息。
ngx_stream_core_module模块由1.9.0版提供。
进入nginx的sbin目录 。./nginx -V 查看是否安装stream模块。
已经安装stream会显示--with-stream ,否则就是没有安装。
- $ cd /usr/local/nginx/sbin/
- $ ./nginx -V
- nginx version: nginx/1.21.0
- built by gcc 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC)
- configure arguments: --with-stream
如果没有安装stream模块,则要安装下。
到nginx的解压目录,进行配置( ./configure --with-stream),编译(make)。
如果之前没有安装nginx的话,全新安装则时行配置( ./configure --with-stream),编译(make),安装(make install)
- $ cd /usr/local/nginx-1.21.0
- $ ./configure --with-stream
- .....
- $ make
新编译后的 nginx在 objs里, 先到/usr/local/nginx/sbin/目录 停掉ningx,
备份下nginx 。如果全新安装就不用备份了。
- $ cd /usr/local/nginx/sbin/
- $ ./nginx -s stop
- $ cp nginx nginx.bak
把新的nginx复制过来(全新安装不需要)。
$ cp /usr/local/nginx-1.21.0/objs/nginx /usr/local/nginx/sbin/
修改配置文件
vi /usr/local/nginx/conf/nginx.conf
代理192.168.0.2 和 192.168.0.3 分别用本服务器ip:25674 ,25675访问。配置如下:
-
- #user nobody;
- user root;
- worker_processes 1;
-
- #error_log logs/error.log;
- #error_log logs/error.log notice;
- #error_log logs/error.log info;
-
- #pid logs/nginx.pid;
-
-
- events {
- worker_connections 1024;
- }
-
-
- stream {
- upstream cloudsocket {
- hash $remote_addr consistent;
- server 192.168.0.2:3306 weight=5 max_fails=3 fail_timeout=30s;
- }
- server {
- listen 25674; # 数据库服务器监听端口
- proxy_connect_timeout 10s;
- proxy_timeout 300s; # 设置客户端和代理服务之间的超时时间,如果5分钟内没操作将自动断开。
- proxy_pass cloudsocket;
- }
-
- upstream cloudsocket2 {
- hash $remote_addr consistent;
- server 192.168.0.3:3306 weight=5 max_fails=3 fail_timeout=30s;
- }
- server {
- listen 25675; # 数据库服务器监听端口
- proxy_connect_timeout 10s;
- proxy_timeout 300s; # 设置客户端和代理服务之间的超时时间,如果5分钟内没操作将自动断开。
- proxy_pass cloudsocket2;
- }
- }
-
- http {}
启动nginx
- $ cd /usr/local/nginx/sbin/
- $ ./nginx
完成。