<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Run away process on Linux in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/run-away-process-on-linux/m-p/4216304#M32898</link>
    <description>Thanks steve, &lt;BR /&gt;&lt;BR /&gt;But the question i have is there are other users running the same application and i dont see any mem leak on them, its only for this user that i the memory grow like mad.. any thoughts on this???</description>
    <pubDate>Fri, 13 Jun 2008 13:31:07 GMT</pubDate>
    <dc:creator>Pattabhi</dc:creator>
    <dc:date>2008-06-13T13:31:07Z</dc:date>
    <item>
      <title>Run away process on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/run-away-process-on-linux/m-p/4216302#M32896</link>
      <description>&lt;!--!*#--&gt;Gurus,&lt;BR /&gt;&lt;BR /&gt;I came across an unusual process on my Linux box, which  is taking 23Gb of  VIRTM, but where the hell from???? I dont have that much available even after adding up swap and RAM, so is this a bug in top or what??&lt;BR /&gt;&lt;BR /&gt;ENV details&lt;BR /&gt;&lt;BR /&gt;OS: RHAS 4.4 64-bit&lt;BR /&gt;top: procps version 3.2.3&lt;BR /&gt;Kernel: 2.6.9-42.ELsmp&lt;BR /&gt;&lt;BR /&gt;Any advice on this is welcome&lt;BR /&gt;&lt;BR /&gt;# top&lt;BR /&gt;top - 17:39:57 up 28 days, 11:06, 10 users,  load average: 1.02, 1.47, 1.22&lt;BR /&gt;Tasks: 190 total,   1 running, 189 sleeping,   0 stopped,   0 zombie&lt;BR /&gt;Cpu(s):  0.6% us,  1.9% sy,  0.0% ni, 97.4% id,  0.0% wa,  0.0% hi,  0.1% si&lt;BR /&gt;Mem:   4040812k total,  4016020k used,    24792k free,     5736k buffers&lt;BR /&gt;Swap:  8388600k total,  3358284k used,  5030316k free,   459056k cached&lt;BR /&gt;&lt;BR /&gt;  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND&lt;BR /&gt;17004 tfernan1  16   0 23.3g 1.2g 3380 S    0 31.2  16:41.74 java&lt;BR /&gt;16998 tfernan1  18   0  5364  312  308 S    0  0.0   0:00.00 run.sh&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Jun 2008 12:36:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/run-away-process-on-linux/m-p/4216302#M32896</guid>
      <dc:creator>Pattabhi</dc:creator>
      <dc:date>2008-06-13T12:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Run away process on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/run-away-process-on-linux/m-p/4216303#M32897</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;kill -9 17004&lt;BR /&gt;&lt;BR /&gt;Java has a leak.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.hpux.ws/?p=8" target="_blank"&gt;http://www.hpux.ws/?p=8&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Or a Java based app.&lt;BR /&gt;&lt;BR /&gt;Memory leak detector link above.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 13 Jun 2008 12:59:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/run-away-process-on-linux/m-p/4216303#M32897</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2008-06-13T12:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Run away process on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/run-away-process-on-linux/m-p/4216304#M32898</link>
      <description>Thanks steve, &lt;BR /&gt;&lt;BR /&gt;But the question i have is there are other users running the same application and i dont see any mem leak on them, its only for this user that i the memory grow like mad.. any thoughts on this???</description>
      <pubDate>Fri, 13 Jun 2008 13:31:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/run-away-process-on-linux/m-p/4216304#M32898</guid>
      <dc:creator>Pattabhi</dc:creator>
      <dc:date>2008-06-13T13:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: Run away process on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/run-away-process-on-linux/m-p/4216305#M32899</link>
      <description>Virtual memory probably includes memory-mapped files. If the Java application this user is running is accessing files using the mmap() interface, the size of the file gets included in the process's virtual address space.&lt;BR /&gt;&lt;BR /&gt;The process can then read the file just as if it was reading a memory area; whenever the application tries to access some part of the file that is not currently in real memory, the page fault handler of the OS will load it, and then the access operation is resumed.&lt;BR /&gt;&lt;BR /&gt;The 64-bit environment allows the memory-mapping of huge files, as the address space limit is not an issue.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Fri, 13 Jun 2008 14:01:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/run-away-process-on-linux/m-p/4216305#M32899</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2008-06-13T14:01:32Z</dc:date>
    </item>
  </channel>
</rss>

