mysql集群使用nginx配置负载均衡

参考链接:https://mu-sl.com//archives/mysql%E9%9B%86%E7%BE%A4%E4%BD%BF%E7%94%A8nginx%E9%85%8D%E7%BD%AE%E8%B4%9F%E8%BD%BD%E5%9D%87%E8%A1%A1

配置文件nginx_tcp.conf 示例

复制代码
load_module  modules/ngx_stream_module.so;

stream{
    upstream tcpssh{
        hash $remote_addr consistent;
        server 10.0.10.79:3306 max_fails=3 fail_timeout=10s;
        server 10.0.10.111:3306 max_fails=3 fail_timeout=10s;
        server 10.0.10.120:3306 max_fails=3 fail_timeout=10s;

    }
    server{
        listen 3389;
        proxy_connect_timeout 20s;
        proxy_timeout 5m;
        proxy_pass tcpssh;
    }
}

mysql 集群搭建(双主模式)

https://mu-sl.com/archives/mysql%E9%9B%86%E7%BE%A4%E6%90%AD%E5%BB%BA%E5%8F%8C%E4%B8%BB%E5%8F%8C%E4%BB%8E%E5%8F%8C%E4%B8%BB%E7%83%AD%E5%A4%87

相关推荐
h***59335 分钟前
MySQL如何执行.sql 文件:详细教学指南
数据库·mysql
Doro再努力14 分钟前
【MySQL数据库09】外键约束与多表查询基础
数据库·mysql
高级程序源1 小时前
springboot社区医疗中心预约挂号平台app-计算机毕业设计源码16750
java·vue.js·spring boot·mysql·spring·maven·mybatis
O***Z6161 小时前
三分钟内快速完成MySQL到达梦数据库的迁移
数据库·mysql
阿星智力囊1 小时前
Thinkphp6+nginx环境报错信息不显示,接口直接报500和CORS跨域(错误的引导方向),真坑啊
运维·nginx·php·thinkphp6
菜鸟小九3 小时前
mysql(锁)
数据库·mysql·oracle
云和数据.ChenGuang4 小时前
运维面试题之oracle和mysql单表最大容量
运维·mysql·oracle
L***86535 小时前
Failed to restart nginx.service Unit nginx.service not found
运维·nginx
Z***G4795 小时前
【零基础学Mysql】常用函数讲解,提升数据操作效率的利器
数据库·mysql
aml258__5 小时前
MySQL 数据库管理入门:从创建到删除(T1)
数据库·mysql·oracle·初学数据库