Hi All,
I am facing below issue, Please help.
Jan 17 06:07:15 localhost haproxy[83847]: Proxy LMS_Web started.
Jan 17 06:07:15 localhost haproxy[83847]: Proxy jasperserver-pro started.
Jan 17 06:07:15 localhost haproxy[83847]: Proxy LMS_App started.
Jan 17 06:07:15 localhost haproxy[83849]: Server jasperserver-pro/xyz.domain.com is DOWN, reason: Layer7 wrong status, code: 404, info: “Not Found”, check duration: 8ms. 0 active and 0 backup servers left. 0 sessions active, 0 requeued, 0 remaining in queue.
Jan 17 06:07:15 localhost haproxy[83849]: backend jasperserver-pro has no server available!
Below is the my configuration Please help…
frontend LMS_Web
bind :80
bind :443 ssl crt /etc/ssl/certificate.pem
redirect scheme https if !{ ssl_fc }
option httplog
mode http
stats enable
stats uri /stats
stats realm Strictly\ Statistics
stats auth user:pass
acl url_jasperserver-pro path_reg -i jasperserver-pro
acl url_jasperserver-pro url_reg -i jasperserver-pro
use_backend jasperserver-pro if url_jasperserver-pro
default_backend LMS_App
#---------------------------------------------------------------------
static backend for serving up images, stylesheets and such
#---------------------------------------------------------------------
backend jasperserver-pro
balance roundrobin
option httpchk HEAD /keepAlive.txt HTTP/1.0
cookie SERVERid insert indirect nocache
server <URW_hostname> <URW_IP>:8080 check cookie server1
#---------------------------------------------------------------------
round robin balancing between the various backends
#---------------------------------------------------------------------
backend LMS_App
balance roundrobin
option httpchk HEAD /keepAlive.txt HTTP/1.0
cookie SERVERid insert indirect nocache
server <UUW_hostname> <UUW_IP>:80 check cookie server1