我有一个运行使用 Apache 服务的 Web 应用程序的 VPS,平均每秒处理 20-50 个请求。通常超过这一点(每秒 50 个请求),Apache 使用的内存量对于 VPS 来说太高并且开始发生错误 - 网页崩溃并且 VPS 在恢复正常水平之前下降一两分钟。
我相信 MaxClients 是减少 Apache 使用的 RAM 数量的最佳方法,我计划将 MaxClients 从 256(默认值)减少到 100 左右。每个 Apache 进程使用 ~15MB 并且服务器总共有 1900MB 的内存 -该服务器除了运行 Apache 和一些 cron 之外什么都不做。
当前设置为:
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 3
# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# ServerLimit: maximum value for MaxClients for the lifetime of the server
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule prefork.c>
StartServers 8
MinSpareServers 5
MaxSpareServers 20
ServerLimit 256
MaxClients 256
MaxRequestsPerChild 4000
</IfModule>
我尝试减少 MaxClients 之前会导致严重缓慢,所以我还需要一些其他选项。
我将 MaxClients 减少到 ~100 的建议是否合理?如果服务器再次遇到缓慢,我有什么选择 - 优化应用程序?减少内存使用的最佳方法是什么 - 将图像移动到另一个 Web 服务器?
任何建议都感激不尽!
减少 apache 内存使用的最佳方法是从 mod_php 转移到 fastcgi 之类的东西。由于 mod_php 开销(很可能),您的每个 apache 进程都是 15mb 或更多。将 php 请求传递给 fastcgi 会将平均 apache 进程大小减少到大约 1mb 左右,具体取决于 apache 配置。
由于 php 现在使用 fastcgi 集中,它的内存使用效率更高,系统使用的内存总量应该略有减少。
另一种方法是在 apache 前面放置一个内存效率更高的 http 服务器,并让它直接服务器静态内容并将非静态请求代理到 apache。Nginx 非常适合这个。
作为临时修复,您还可以考虑将 MaxRequestsPerChild 降低到 1000 或更激进的值。由于 apache 进程在处理请求时往往会变大,这将通过杀死它们并产生新进程来限制它们的大小。