P: O lighttpd usa 2 GB de RAM enquanto ocioso para a página privada

3

Estou executando um servidor com o lighttpd instalado. Ele executa o php5-fpm e o servidor de um servidor owncloud.

  • Ubuntu Server 14.04
  • lighttpd / 1.4.33 (ssl) (28 de janeiro de 2014 17:26:04) - um servidor leve e rápido
  • PHP 5.5.9-1ubuntu4.5 (fpm-fcgi) (construído em: 29/10/2014 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"

Após algum tempo, o uso da memória é assim:

Alguém tem uma ideia de como consertar isso sem precisar recomeçar?

    
por MasterCassim 05.12.2014 / 01:38

0 respostas