A SysOps administrator has deployed an Application Load Balancer (ALB) to distribute traffic to a fleet of Amazon EC2 instances in a private subnet. The web application listens on TCP port 5000. The target group is configured to perform HTTP health checks on port 5000 with the path `/ping`. However, all EC2 instances are showing an `Unhealthy` status with the reason `Health check target response code mismatch [404]`. Upon checking the application server logs, the administrator finds that the application's health endpoint is actually mapped to `/status` on TCP port 5000, and HTTP GET requests to `/ping` return a `404 Not Found` error. Additionally, the instance security group allows inbound traffic only from the ALB's security group on TCP port 443.
Which two changes must the SysOps administrator make to resolve the health check issues and allow the instances to pass health checks? (Select two.)
- Update the target group health check path to /status.Answer
- Update the instance security group to allow inbound TCP traffic on port 5000 from the ALB security group.Answer
- CChange the target group health check port to 443.
- DConfigure an Amazon Route 53 active-passive failover routing policy to bypass the load balancer.
- EAdd a new rule to the Network ACL of the private subnet to allow inbound traffic on TCP port 443 from the public subnet.