列出当前 HAProxy appsession 密钥

列出当前 HAProxy appsession 密钥

请考虑使用 JSESSIONID 进行粘性会话的 HAProxy 配置

defaults
    timeout server 5m

frontend http-in
    bind *:80
    default_backend servers

backend servers
    option httpchk OPTIONS /
    option forwardfor
    option http-server-close
    appsession JSESSIONID len 52 timeout 30m
    server ut1 192.168.123.101:8080 minconn 100 maxconn 8000 check inter 5000
    server ut2 192.168.123.102:8080 minconn 100 maxconn 8000 check inter 5000

一些会话突然切换服务器,而它们应该是粘性的。我想检查 HAProxy 已知的会话 ID。是否有命令可用于列出 HAProxy 内存中的当前 appsession 键?

相关内容