码迷,mamicode.com
首页 > 数据库 > 详细

Nginx.代理MySQL

时间:2018-10-02 22:21:24      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:list   内容   span   charles   lis   remote   bsp   art   dso   

Nginx.代理MySQL 

  1. Nginx在安装的时候,需要加上一个参数:--with-stream 

    即Nginx安装指令为:./configure --prefix=/u01/app/nginx  --with-stream

    Nginx的安装教程,可参见:https://www.cnblogs.com/Charles-Yuan/articles/9737617.html

 

  2. nginx安装完成后,编辑nginx.conf文件,指令:

    vim  /u01/app/nginx/conf/nginx.conf

    在文件的最下方(位置也可以不是最下方,stream必须和http平级)添加如下内容:

    stream {

      upstream cloudsocket {
        hash $remote_addr consistent;
        server 数据库实际IP:数据库实际端口号 weight=5 max_fails=3 fail_timeout=30s;
      }
      server {
        listen 数据库代理端口号;
        proxy_connect_timeout 10s;
        proxy_timeout 300s;
        proxy_pass cloudsocket;
      }
    }

 

  3. 重启nginx服务器.

 

如有问题,欢迎纠正!!!

如有转载,请标明源处:https://www.cnblogs.com/Charles-Yuan/p/9738023.html 

  

Nginx.代理MySQL

标签:list   内容   span   charles   lis   remote   bsp   art   dso   

原文地址:https://www.cnblogs.com/Charles-Yuan/p/9738023.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!