健康检查与服务器监控
实施健康检查,自动将不健康的后端服务器从负载均衡池中移除。
健康检查与服务器监控 是 CoddyKit 上的免费 API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) 课时。 这是第 2 节课,共 4 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) 课程共包含 4 节课。
本课时的部分内容尚未翻译,以英文显示。
Keeping Servers Healthy
Imagine a busy restaurant with multiple chefs. If one chef gets sick, you don't want to send orders to them, right?
In load balancing, health checks do exactly that. They constantly monitor backend servers to ensure they are ready to handle requests.
Why Health Checks Matter
Without health checks, a load balancer might keep sending requests to a server that is down, overloaded, or unresponsive.
- Bad User Experience: Users get errors instead of content.
- Wasted Resources: The load balancer tries to connect to a dead end.
- Cascading Failures: Overloads can spread if requests aren't redirected.
Nginx's Health Check Basics
Nginx provides built-in directives within its upstream block to perform passive health checks. These checks react to failed connection attempts or responses.
The two main directives are max_fails and fail_timeout.
`max_fails`: Failed Attempts
The max_fails directive sets the number of consecutive failed attempts after which Nginx considers a server "unhealthy".
- Default:
1(one failure marks it unhealthy). - `max_fails=0`: Disables health checks for that server.
- A "failure" can be a connection error, timeout, or specific HTTP status codes (like 5xx) if configured.
`fail_timeout`: Recovery Time
Once a server is marked unhealthy, Nginx will stop sending requests to it for a duration specified by fail_timeout.
- Default:
10s(10 seconds). - After this timeout, Nginx will tentatively send a request to the server to check if it has recovered.
- This prevents hammering a down server.
Implementing Nginx Health Checks
Let's see how to configure max_fails and fail_timeout in an Nginx upstream block. Here, we define two backend servers.
http {
upstream backend_servers {
server 192.168.1.100:8080 max_fails=3 fail_timeout=15s;
server 192.168.1.101:8080 max_fails=3 fail_timeout=15s;
}
server {
listen 80;
location / {
proxy_pass http://backend_servers;
}
}
}Nginx's Server Management
When a server hits its max_fails limit within the fail_timeout period, Nginx temporarily removes it from the load balancing pool.
- Requests are then distributed among the remaining healthy servers.
- After
fail_timeoutexpires, Nginx tries sending a single request to the "unhealthy" server. If it succeeds, the server is marked healthy again.
Observing Server Health
While Nginx's basic health checks are passive, you can observe their effects in Nginx logs.
Error logs will show messages when a server is marked down or up. For more advanced, active monitoring and a dashboard, Nginx Plus offers dedicated features, but that's beyond basic Nginx.
Health Check Tips
Properly configuring health checks is key for reliable systems:
- Tune Values: Adjust
max_failsandfail_timeoutbased on your application's responsiveness and recovery time. - Backend Readiness: Ensure your backend applications have a dedicated health endpoint (e.g.,
/health) that reports true service readiness. - Combine with Monitoring: Use external monitoring tools to alert you when Nginx marks servers down.
Quick Check on Health Checks
You've configured an Nginx upstream server with max_fails=2 and fail_timeout=30s. If the server fails 3 consecutive requests, what happens next?
Health Check Recap
In this lesson, we learned about Nginx's essential health check directives:
max_fails: The number of failed attempts before a server is marked unhealthy.fail_timeout: The period for which an unhealthy server is taken out of the load balancing pool.- These passive checks are crucial for maintaining backend reliability and improving user experience.
用 AI 导师学习 API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) — 免费
在浏览器中编写并运行真实代码,获得全天候 AI 导师的即时帮助,并在网页或应用中继续学习。
- 课程
- 12
- 课程
- 48
常见问题解答
「健康检查与服务器监控」课时是免费的吗?
是的 — 「健康检查与服务器监控」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) 课程的其余内容,请升级到 CoddyKit PRO。 API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) 课程共包含 4 节课。
「健康检查与服务器监控」这节课中我会学到什么?
实施健康检查,自动将不健康的后端服务器从负载均衡池中移除。 你通过在浏览器中直接运行的动手代码来练习 API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway),全天候 AI 导师会在你学习这节课的过程中回答你的问题。
学习 API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) 需要有经验吗?
无需任何先前经验。CoddyKit 上的 API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 2 节课,共 4 节。
「健康检查与服务器监控」课时需要多长时间?
大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。
我能在这节 API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) 课中编写并运行代码吗?
能。每节 API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。
此课程中的所有课时
- 负载均衡算法
- 健康检查与服务器监控
- 粘性会话与会话持久性
- 加权负载均衡与备用服务器