http 端口必须可用于其他用途。
统计页面的端口 80 必须关闭或移至其他端口。
删除mode http
此default
部分将禁用该页面。
echo >/dev/tcp/hostname/80
返回“0”-> 端口 80 已可访问。
答案1
您还没有发布您的 HAProxy 配置文件?
你应该能够指定你想要统计的端口,即
listen stats
bind *:8080
mode http
option forwardfor
option httpclose
stats enable
stats show-legends
stats refresh 5s
stats uri /stats
stats realm Haproxy\ Statistics
stats auth loadbalancer:loadbalancer
stats admin
你可以通过以下 URL 使用用户名“loadbalancer”和密码“loadbalancer”进行访问:
http://我的 IP 地址:8080/统计
答案2
我的解决方案:
listen stats
bind *:9010
bind :::9010 v6only
mode http
option forwardfor
option httpclose
stats enable
stats uri /stats
stats refresh 5s
stats show-legends
stats realm Haproxy\ Statistics
stats auth loadbalancer:loadbalancer