【 TiDB 使用环境】生产环境
【 TiDB 版本】v6.5.0
【复现路径】部署HAprxoxy,之后TIDB节点日志一直在报waring,请问怎么才能不报这个日志出来
【遇到的问题:问题现象及影响】
日志文件tidb.log
日志内容:
[WARN] [server.go:614] ["Server.onConn handshake"] [conn=3919*********] [error="Invalid PROXY Protocol Header"] ["remote addr="21.72.***.**:42246"]
[WARN] [server.go:614] ["Server.onConn handshake"] [conn=3916*********] [error="Invalid PROXY Protocol Header"] ["remote addr="21.72.***.**:42990"]
…
环境:4tidb节点,1HAproxy 配置HA地址:0.0.0.0:13390
haproxy.cfg配置如下:
global
log 127.0.0.1 local1
chroot /var/lib/haproxy
pidfile /var/run/haproxy.pid
maxconn 4096
nbthread 48
user haproxy
daemon
defaults
log global
retries 2
timeout connect 2s
timeout client 30000s
timeout server 30000s
listen admin_stats
bind 0.0.0.0:8000
mode http
maxconn 10
stats refresh 30s
stats uri /haproxy
stats realm HAProxy
stats auth admin:admin
stats hide-version
stats admin if TRUE
listen tidb-cluster
bind 0.0.0.0:13390
mode tcp
balance leastconn
server tidb-1 21.72.***.*1:4000 send-proxy check port 10080 inter 2000 rise 2 fall 3
server tidb-2 21.72.***.*2:4000 send-proxy check port 10080 inter 2000 rise 2 fall 3
server tidb-3 21.72.***.*3:4000 send-proxy check port 10080 inter 2000 rise 2 fall 3
server tidb-4 21.72.***.*4:4000 send-proxy check port 10080 inter 2000 rise 2 fall 3
.......