我有一个 VPS,运行使用 Apache 提供的 Web 应用程序,平均每秒处理 20-50 个请求。通常超过这个点(每秒 50 个请求),Apache 使用的内存量对于 VPS 来说太高,并且开始出现错误 - 网页崩溃,VPS 瘫痪一两分钟,然后才恢复正常水平。
我相信 MaxClients 是减少 Apache 使用的 RAM 数量的最佳方法,我计划将 MaxClients 从 256(默认值)减少到 100 左右。每个 Apache 进程使用约 15MB,服务器总共有 1900MB 的 RAM - 服务器除了运行 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 服务器?
非常感谢您的任何建议!
答案1
减少 apache 内存使用量的最佳方法是放弃 mod_php,转而使用类似 fastcgi 的程序。由于 mod_php 开销(很可能),每个 apache 进程的大小为 15mb 或更多。将 php 请求交给 fastcgi 会将平均 apache 进程大小减少到大约 1mb 左右,具体取决于 apache 配置。
由于 php 现在使用 fastcgi 集中,因此它的内存使用效率更高,系统使用的内存总量应该会略有减少。
另一种方法是将内存效率更高的 http 服务器放置在 apache 前面,并让其直接提供静态内容,并将非静态请求代理到 apache。Nginx 非常适合此用途。
作为临时解决方案,您还可以考虑将 MaxRequestsPerChild 减少到 1000 或更激进的数值。由于 Apache 进程在处理请求时往往会增大,因此可以通过终止它们并生成新的进程来限制它们的大小。