问:lighttpd使用2GB的ram而空闲的私人页面

我正在运行安装了lighttpd的服务器。 它运行php5-fpm并服务于自己的云服务器。

  • Ubuntu服务器14.04
  • lighttpd / 1.4.33(ssl)(Jan 28 2014 17:26:04) – 一个轻快的networking服务器
  • 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" 

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

在这里输入图像说明

任何人有一个想法如何解决这个问题,而不需要每次重新启动?