Project

General

Profile

memory leak when browse a web apge

Added by hsiaonuc over 12 years ago

Hi,
Here is the set up:
OS: linux
lighttpd ver: latest 1.4.31
client browser: firefox 13.0.1
configuration is shown as below:
---------------------------------------------------------------
server.document-root = "/var/www/html/"
server.port = 80
#server.username = "lighttpd"
#server.groupname = "lighttpd"

#server.username = "root"
#server.groupname = "root"

#server.bind = "192.168.2.161"
#server.tag ="lighttpd"

server.use-ipv6 = "enable"

server.errorlog = "/var/log/lighttpd/error.log"
accesslog.filename = "/var/log/lighttpd/access.log"

server.modules = (
"mod_access",
"mod_accesslog",
"mod_fastcgi",
"mod_rewrite",
"mod_auth",
"mod_ssi",

)

ssi.extension = ( ".html" )
fastcgi.debug = 1
fastcgi.server = ( ".php" => ((
"bin-path" => "/usr/local/bin/php-cgi",
"socket" => "/tmp/php.socket"
)))

  1. mimetype mapping
    mimetype.assign = (
    ".pdf" => "application/pdf",
    ".sig" => "application/pgp-signature",
    ".spl" => "application/futuresplash",
    ".class" => "application/octet-stream",
    ".ps" => "application/postscript",
    ".torrent" => "application/x-bittorrent",
    ".dvi" => "application/x-dvi",
    ".gz" => "application/x-gzip",
    ".pac" => "application/x-ns-proxy-autoconfig",
    ".swf" => "application/x-shockwave-flash",
    ".tar.gz" => "application/x-tgz",
    ".tgz" => "application/x-tgz",
    ".tar" => "application/x-tar",
    ".zip" => "application/zip",
    ".mp3" => "audio/mpeg",
    ".m3u" => "audio/x-mpegurl",
    ".wma" => "audio/x-ms-wma",
    ".wax" => "audio/x-ms-wax",
    ".ogg" => "audio/x-wav",
    ".wav" => "audio/x-wav",
    ".gif" => "image/gif",
    ".jpg" => "image/jpeg",
    ".jpeg" => "image/jpeg",
    ".png" => "image/png",
    ".xbm" => "image/x-xbitmap",
    ".xpm" => "image/x-xpixmap",
    ".xwd" => "image/x-xwindowdump",
    ".css" => "text/css",
    ".html" => "text/html",
    ".htm" => "text/html",
    ".js" => "text/javascript",
    ".asc" => "text/plain",
    ".c" => "text/plain",
    ".conf" => "text/plain",
    ".text" => "text/plain",
    ".txt" => "text/plain",
    ".dtd" => "text/xml",
    ".xml" => "text/xml",
    ".mpeg" => "video/mpeg",
    ".mpg" => "video/mpeg",
    ".mov" => "video/quicktime",
    ".qt" => "video/quicktime",
    ".avi" => "video/x-msvideo",
    ".asf" => "video/x-ms-asf",
    ".asx" => "video/x-ms-asf",
    ".wmv" => "video/x-ms-wmv",
    ".bz2" => "application/x-bzip",
    ".tbz" => "application/x-bzip-compressed-tar",
    ".tar.bz2" => "application/x-bzip-compressed-tar"
    )
    index-file.names = ( "index.html", "index.php" )
    -------------------------------------------------------------------
    Issue:
    without doing anything but only periodically(every 10 sec) refresh the same web page(login.php),
    observe the available memory is gradually decreasing. (command: /bin/cat /proc/meminfo | /bin/grep MemFree:)
    as we can observe from the debug print-out,
    memory not always leaking in every refresh, but most of time it will decreases 28k as long as it gets decrease.
    we first suspect it has leak in mod_fastcgi.c,
    but according to the print-out, memory usage in the whole refreshment process is varying in many places else.
    Please kindly let us know how can we debug this issue and help investigate this problem.
    Step to reproduce:
    enable lighttpd with cfg above in server, connect to it and auto refresh the same page(any page),
    show memory usage to observe the memory info.
    Thank you very much for your kindly support

Replies (2)

RE: memory leak when browse a web apge - Added by hsiaonuc over 12 years ago

From: [mailto:]
Sent: Saturday, August 04, 2012 11:38 PM
Subject: [Lighttpd - Bug #2429] (Invalid) memory leak when refreshing page

Issue #2429 has been updated by stbuehler.
• Status changed from New to Invalid
• Priority changed from Urgent to Normal
• Target version deleted (1.4.x)
• trying to measure lighttpds memory usage with memfree is completely wrong (you want to watch RES in top for lighttpd)
• increasing memory usage doesn't mean it is a memory leak. (memory fragmentation, buffer reusage, ...)
________________________________

Hi,

Thank you very much for your quick response.
We are actually cross-compiling lightty source for our mips-based embedded device, and we make our backend is very simple,
Nothing extra is running and only enable the http server and access the same webpage.
For the increasing memory usage, we tried to do the following:
1. In setting.h, Change the BUFFER_MAX_REUSE_SIZE to 0
2. In chunck.c, Change the max 4 chunks in the 'unused'-cache to 0
The memory usage still keep increasing. We tried to use “top” command to monitor the lighty memory usage, but we didn’t support the ‘RES’ column, only have the ’RSS’.
Just wondering is this ‘RSS’ a right value we can refer? (if RSS remains the same, does it mean memory utilization of lighty remain the same too?)
Would you please kindly help to identify what kind of issue it is? or is there any method to avoid this increasing memory usage?

Thank you very much again for your support

RE: memory leak when browse a web apge - Added by stbuehler over 12 years ago

No idea what "RSS" stands for, but perhaps it is the value you seek (try the man page. on my linux here "RES" is short for "Resident Memory Size").

    (1-2/2)