<?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: NAC Manager high memory issue in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/nac-manager-high-memory-issue/m-p/1399432#M780699</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Faisal, I tried with the top command, but I couldn´t see what is the process taking more memory. I´m attaching the output from the 2 CAMs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to see more information about the memory consumed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gerard &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Apr 2010 01:07:22 GMT</pubDate>
    <dc:creator>gerardtorin</dc:creator>
    <dc:date>2010-04-09T01:07:22Z</dc:date>
    <item>
      <title>NAC Manager high memory issue</title>
      <link>https://community.cisco.com/t5/network-security/nac-manager-high-memory-issue/m-p/1399430#M780639</link>
      <description>&lt;P&gt;Hi guys, I have a CAM´s failover installed. I had seen high utilization of the ram memory in the 2 appliances. The utilization is higher than 80%. Anyone knows what is the cause for this memory use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I have a NAC Profiler integrated with these CAM's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gerard&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 11:55:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nac-manager-high-memory-issue/m-p/1399430#M780639</guid>
      <dc:creator>gerardtorin</dc:creator>
      <dc:date>2020-02-21T11:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: NAC Manager high memory issue</title>
      <link>https://community.cisco.com/t5/network-security/nac-manager-high-memory-issue/m-p/1399431#M780655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gerard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What process is taking up the memory? Issue the top command in a shell/console session and post the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Apr 2010 22:38:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nac-manager-high-memory-issue/m-p/1399431#M780655</guid>
      <dc:creator>Faisal Sehbai</dc:creator>
      <dc:date>2010-04-08T22:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: NAC Manager high memory issue</title>
      <link>https://community.cisco.com/t5/network-security/nac-manager-high-memory-issue/m-p/1399432#M780699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Faisal, I tried with the top command, but I couldn´t see what is the process taking more memory. I´m attaching the output from the 2 CAMs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to see more information about the memory consumed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gerard &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 01:07:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nac-manager-high-memory-issue/m-p/1399432#M780699</guid>
      <dc:creator>gerardtorin</dc:creator>
      <dc:date>2010-04-09T01:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: NAC Manager high memory issue</title>
      <link>https://community.cisco.com/t5/network-security/nac-manager-high-memory-issue/m-p/1399433#M780725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gerard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your system looks fine. Linux utilizes the free/unused memory to cache data, and hence the free memory reported might seem very low, but it's being used by the kernel to actively use it for caching. As/When it's needed, the kernel releases memory for the processes to use, so this is normal. If you want to look at what processes are using the most memory try this command:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ps auwwwx | awk '{print$4"\t"$11'} | sort | uniq -c | awk '{print $2" "$1" "$3}' | sort -nr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The output will show you the process with the most memory being used. For example on a test CAM here was the output of the command listed above:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;14.3 1 /usr/java/jdk1.6.0_12/bin/java&lt;BR /&gt;0.8 1 /usr/sbin/httpd.worker&lt;BR /&gt;0.7 1 /usr/sbin/httpd.worker&lt;BR /&gt;0.6 1 /usr/sbin/httpd.worker&lt;BR /&gt;0.6 1 postgres:&lt;BR /&gt;0.5 1 postgres:&lt;BR /&gt;0.5 1 heartbeat:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meaning Java was taking the most memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 06:55:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nac-manager-high-memory-issue/m-p/1399433#M780725</guid>
      <dc:creator>Faisal Sehbai</dc:creator>
      <dc:date>2010-04-09T06:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: NAC Manager high memory issue</title>
      <link>https://community.cisco.com/t5/network-security/nac-manager-high-memory-issue/m-p/1399434#M780761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Faisal, your explanation is perfect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gerard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 19:37:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nac-manager-high-memory-issue/m-p/1399434#M780761</guid>
      <dc:creator>gerardtorin</dc:creator>
      <dc:date>2010-04-09T19:37:10Z</dc:date>
    </item>
  </channel>
</rss>

