我有ALB,并且具有目标组(IP类型)之一,在该组中有Spring Boot应用程序。对该目标的运行状况检查失败,并显示HTTP 502 我们正在将tomcat映像用于Spring Boot应用程序。
运行状况检查配置
Protocol : HTTP
Path : /Query
Port: traffic port
Healthy Threshold: 2
Unhealthy Threshold: 3
Timeout : 2
Interval :5
Success-code : 200
我正在此Spring Boot应用程序中使用tomcat映像。是否给出的超时时间很少,这可能是502的原因?但是它之前使用的是相同的配置。
答案 0 :(得分:0)
您是否正在使用Spring Security?如果是这样,您可能需要允许ALB无需经过身份验证即可访问运行状况检查的路径。
.antMatchers("/actuator/health", "/actuator/info").permitAll()