博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HAProxy启动时候常见问题
阅读量:5905 次
发布时间:2019-06-19

本文共 1602 字,大约阅读时间需要 5 分钟。

rabbitmq和haproxy结合时候,遇到了下面问题

某段配置:

listen rabbitmq_local_cluster 127.0.0.1:5670    mode tcp    balance roundrobin    server rabbit1 127.0.0.1:5672 check inter 5000 rise 2 fall 3    server rabbit2 127.0.0.1:5673 check inter 5000 rise 2 fall 3    server rabbit3 127.0.0.1:5674 check inter 5000 rise 2 fall 3listen private_monitoring :8100    mode http    option httplog    stats enable    stats uri   /stats    stats refresh 5s

报错:

[ALERT] 167/151633 (56845) : parsing [haproxy.cfg.local_cluster:27] : 'listen' cannot handle unexpected argument '127.0.0.1:5670'.[ALERT] 167/151633 (56845) : parsing [haproxy.cfg.local_cluster:27] : please use the 'bind' keyword for listening addresses.[ALERT] 167/151633 (56845) : parsing [haproxy.cfg.local_cluster:40] : 'listen' cannot handle unexpected argument ':8100'.[ALERT] 167/151633 (56845) : parsing [haproxy.cfg.local_cluster:40] : please use the 'bind' keyword for listening addresses.

修改为既可以

listen rabbitmq_local_cluster    bind 127.0.0.1:5670    mode tcp    balance roundrobin    server rabbit1 127.0.0.1:5672 check inter 5000 rise 2 fall 3    server rabbit2 127.0.0.1:5673 check inter 5000 rise 2 fall 3    server rabbit3 127.0.0.1:5674 check inter 5000 rise 2 fall 3listen private_monitoring    bind :8100    mode http    option httplog    stats enable    stats uri   /stats    stats refresh 5s

重新启动【haproxy -f haproxy.cfg.local_cluster】报错:

[ALERT] 167/151959 (58789) : Starting frontend GLOBAL: cannot change UNIX socket ownership [/tmp/haproxy.socket]

改成sudo haproxy -f haproxy.cfg.local_cluster 既可以。

全部配置:

转载于:https://blog.51cto.com/thinklili/2130170

你可能感兴趣的文章
DW 正则
查看>>
抓屏原理
查看>>
UNIX网络编程读书笔记:TCP输出、UDP输出和SCTP输出
查看>>
扩展 DbUtility (1)
查看>>
iOS开发UI篇—使用picker View控件完成一个简单的选餐应用
查看>>
Apple Developer Registration and DUNS Number Not Accepted
查看>>
Hadoop学习笔记系列文章导航
查看>>
SpringMVC中ModelAndView addObject()设置的值jsp取不到的问题
查看>>
Prometheus : 入门
查看>>
使用 PowerShell 创建和修改 ExpressRoute 线路
查看>>
在C#中获取如PHP函数time()一样的时间戳
查看>>
Redis List数据类型
查看>>
大数据项目实践(四)——之Hive配置
查看>>
初学vue2.0-组件-文档理解笔记v1.0
查看>>
Centos7安装Gitlab10.0
查看>>
上传图片预览
查看>>
lagp,lacp详解
查看>>
LVS之DR模式原理与实践
查看>>
Docker的系统资源限制及验证
查看>>
c++ ios_base register_callback方法使用
查看>>