Configuration
haproxy:關閉或更改統計頁面的 80 埠
http-port 必須可用於其他用途。
統計頁面的 80 埠必須關閉或移動到另一個埠。在該部分中
刪除會禁用該頁面。 返回 ‘0’ -> 埠 80 已經可以訪問。
mode http``default``echo >/dev/tcp/hostname/80
您還沒有發布您的 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://myipaddress:8080/stats
我的解決方案:
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