Forum Discussion

Ozzy's avatar
Ozzy
Icon for Cirrus rankCirrus
Mar 25, 2025

Http / https health monitor issue

I tried to create https health monitor , but it is not worked

curl -v https://d-p-m-d.bms.rome.com:10221/login

 

StatusCode        : 200
StatusDescription :
Content           : <!DOCTYPE html>
                    <html xmlns="http://www.w3.org/1999/xhtml"
                    >
                    <link rel="stylesheet" href="css/material-components-web-3.0.0.min.css" />
                    <link rel="stylesheet" href="css/auth-shared.css" />
                    <link rel="...
RawContent        : HTTP/1.1 200
                    Set-Cookie: XSRF-TOKEN=a00fgfhjjffa-efc7-4ahjj9-bahhgf-1099ccgf21ghgcdd2; Path=/; Secure,locale=en; Path=/
                    X-Content-Type-Options: nosniff
                    X-XSS-Protection: 1; mode=block
                    Strict-Transport-Securit...
Forms             : {login-form}

 

as a send string

GET /login  HTTP/1.1\r\nHost: d-p-m-d.bms.rome.com:10221\r\nConnection: Close\r\n\r\n

receive string 

HTTP/1.1 200

4 Replies

  • Do not include port in string

    try 

    as a send string

    GET /login  HTTP/1.1\r\nHost: d-p-m-d.bms.rome.com\r\nConnection: Close\r\n\r\n

     

    if you need to monitor a port different than the one used in pool member, use alias

  • Service Port should be config on pool member and remove port on Hosrt

    • Ozzy's avatar
      Ozzy
      Icon for Cirrus rankCirrus

      sorry I do not understand your explanation. 

      • Injeyan_Kostas's avatar
        Injeyan_Kostas
        Icon for Cirrostratus rankCirrostratus

        as i said before

        use
        GET /login  HTTP/1.1\r\nHost: d-p-m-d.bms.rome.com\r\nConnection: Close\r\n\r\n

        do not use port ":10221" in the monitor