linux – Haproxy运行状况检查权限被拒绝

前端之家收集整理的这篇文章主要介绍了linux – Haproxy运行状况检查权限被拒绝前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法添加后端服务器,因为运行状况检查失败并显示日志消息

Health check for server mule/muleapp Failed,reason: Layer4 connection
problem,info: “General socket error (Permission denied)”,check
duration: 0ms,status: 0/2 DOWN.

然而,我能够远程登录到相同的IP和主机.并添加其他后端工作.我没看到什么是权限问题.我的配置非常简单

backend mule
    balance     roundrobin
    server      muleapp x.x.x.x:64006 check

(用任意数字代替x).我在HTTP模式下运行.应该注意,连接到本地TCPMon端口也不起作用 – 但是没有运行状况检查日志语句.

解决方法

问题是SELinux只允许Web服务器与一组有限的端口建立出站连接.

修复:

semanage port –add –type http_port_t –proto tcp 8001

安装semanage后

yum install policycoreutils-python

参考:http://www.jb51.cc/article/p-ntclkrcf-btz.html

原文链接:https://www.f2er.com/linux/394020.html

猜你在找的Linux相关文章