问:lighttpd 在空闲时占用 2GB 内存用于私人页面

问:lighttpd 在空闲时占用 2GB 内存用于私人页面

我正在运行一个安装了 lighttpd 的服务器。它运行 php5-fpm 并为 owncloud 服务器提供服务。

  • Ubuntu 服务器 14.04
  • lighttpd/1.4.33 (ssl) (2014 年 1 月 28 日 17:26:04) - 轻量、快速的网络服务器
  • PHP 5.5.9-1ubuntu4.5 (fpm-fcgi)(构建于:2014 年 10 月 29 日 11:59:19)
server.modules = (
        "mod_access",
        "mod_alias",
        "mod_compress",
        "mod_redirect"
)

server.document-root        = "/var/www"
server.upload-dirs          = ( "/var/cache/lighttpd/uploads" )
server.errorlog             = "/var/log/lighttpd/error.log"
server.pid-file             = "/var/run/lighttpd.pid"
server.username             = "www-data"
server.groupname            = "www-data"
server.port                 = 80


index-file.names            = ( "index.php", "index.html", "index.lighttpd.html" )
url.access-deny             = ( "~", ".inc" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )

compress.cache-dir          = "/var/cache/lighttpd/compress/"
compress.filetype           = ( "application/javascript", "text/css", "text/html", "text/plain" )

# default listening port for IPv6 falls back to the IPv4 port
## Use ipv6 if available
#include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"

一段时间后,内存使用情况如下所示:

在此处输入图片描述

有人知道如何解决这个问题而不需要每次都重新启动吗?

相关内容