<?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: GATEWAY / partition getting filled due to  cpda.rpm increase.  please advice how to clear the fi in Firewall and Security Management</title>
    <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/GATEWAY-partition-getting-filled-due-to-cpda-rpm-increase-please/m-p/135774#M20502</link>
    <description>&lt;P&gt;What was the content - i doubt this is a rpm. Would be important which process(es) created and wrote to the file.&lt;/P&gt;</description>
    <pubDate>Wed, 08 Dec 2021 08:21:39 GMT</pubDate>
    <dc:creator>G_W_Albrecht</dc:creator>
    <dc:date>2021-12-08T08:21:39Z</dc:date>
    <item>
      <title>GATEWAY / partition getting filled due to  cpda.rpm increase.  please advice how to clear the file.</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/GATEWAY-partition-getting-filled-due-to-cpda-rpm-increase-please/m-p/135562#M20445</link>
      <description>&lt;P&gt;Gateway root Partition getting filled due to cpda.rpm increase. please advice how to clear this file, is it okay to use rm -r /CPda.rpm&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ls -l output in "/" location.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;-rwxr-xr-x 1 admin root 28113989 Mar 25 2021 CPda.rpm&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Duminda Lakmal.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 04:49:06 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/GATEWAY-partition-getting-filled-due-to-cpda-rpm-increase-please/m-p/135562#M20445</guid>
      <dc:creator>Duminda_SAT</dc:creator>
      <dc:date>2021-12-06T04:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: GATEWAY / partition getting filled due to  cpda.rpm increase.  please advice how to clear the fi</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/GATEWAY-partition-getting-filled-due-to-cpda-rpm-increase-please/m-p/135587#M20452</link>
      <description>&lt;P&gt;Where did you get this file from ? &amp;nbsp;CP Deployment Agent installer usually is very small...&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 09:07:39 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/GATEWAY-partition-getting-filled-due-to-cpda-rpm-increase-please/m-p/135587#M20452</guid>
      <dc:creator>G_W_Albrecht</dc:creator>
      <dc:date>2021-12-06T09:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: GATEWAY / partition getting filled due to  cpda.rpm increase.  please advice how to clear the fi</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/GATEWAY-partition-getting-filled-due-to-cpda-rpm-increase-please/m-p/135708#M20489</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;First of all, we need to discover which files in the /var/log partition is taking up a large amount of space.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;this command can be used to check which files or directories are consuming the highest space&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# du -h --max-depth=1 /var/log | sort -n -r&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the above , the /var/log/ is taken as an example&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Furthermore, you can refine the search by specifying a sub-directory of the /var/log path:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# du -h --max-depth=1 /var/log/CPbackup | sort -n -r&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's another tip for discovering large files:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;find /var/log/ -type f -size +250M -exec ls -lh {} \;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That command will find files above 250MB, however, you can easily modify it to find files of a smaller size.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, if logs are taking up a lot of space, the old ones could be migrated to another machine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;For information on migrating log files, refer to sk92440 - Move log files off Security Management Server for viewing at a later time&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;A href="http://supportcontent.checkpoint.com/solutions?id=sk92440" target="_blank" rel="noopener"&gt;http://supportcontent.checkpoint.com/solutions?id=sk92440&lt;/A&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the case you would need to store those log files in a compressed format, you can use the previous sk (sk92440) with the tar command:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# tar cvf&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# tar czvf logfile 2017-05-29* (a day)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# tar czvf logfile 2017-05* (a month)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# tar czvf logfile *.log (all logs)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Should you be unsure about deleting any specific files in /var/log, please open a TAC ticket&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, we suspect that you probably have large files in the following directories (which can be safely migrated or moved):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/var/log/CPda/repository/&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;/var/log/CPbackup/&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please open a TAC ticket to check further&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 09:09:15 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/GATEWAY-partition-getting-filled-due-to-cpda-rpm-increase-please/m-p/135708#M20489</guid>
      <dc:creator>Amogha_Chandras</dc:creator>
      <dc:date>2021-12-07T09:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: GATEWAY / partition getting filled due to  cpda.rpm increase.  please advice how to clear the fi</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/GATEWAY-partition-getting-filled-due-to-cpda-rpm-increase-please/m-p/135720#M20492</link>
      <description>&lt;P&gt;Thank you so much, Albrecht &amp;amp; Amogha,&lt;/P&gt;&lt;P&gt;I will open a TAC Case.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Duminda Lakmal&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 11:17:39 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/GATEWAY-partition-getting-filled-due-to-cpda-rpm-increase-please/m-p/135720#M20492</guid>
      <dc:creator>Duminda_SAT</dc:creator>
      <dc:date>2021-12-07T11:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: GATEWAY / partition getting filled due to  cpda.rpm increase.  please advice how to clear the fi</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/GATEWAY-partition-getting-filled-due-to-cpda-rpm-increase-please/m-p/135724#M20493</link>
      <description>&lt;P&gt;Yes, CPda very small file but in this device i have notified entire "/" (root partition) filled. due to this file, this was located on root partition not any folder&amp;nbsp; "/cpda.rpm "&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 11:46:41 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/GATEWAY-partition-getting-filled-due-to-cpda-rpm-increase-please/m-p/135724#M20493</guid>
      <dc:creator>Duminda_SAT</dc:creator>
      <dc:date>2021-12-07T11:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: GATEWAY / partition getting filled due to  cpda.rpm increase.  please advice how to clear the fi</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/GATEWAY-partition-getting-filled-due-to-cpda-rpm-increase-please/m-p/135774#M20502</link>
      <description>&lt;P&gt;What was the content - i doubt this is a rpm. Would be important which process(es) created and wrote to the file.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 08:21:39 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/GATEWAY-partition-getting-filled-due-to-cpda-rpm-increase-please/m-p/135774#M20502</guid>
      <dc:creator>G_W_Albrecht</dc:creator>
      <dc:date>2021-12-08T08:21:39Z</dc:date>
    </item>
  </channel>
</rss>

