<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Setup and Manage Log Rotation Using Logrotate in Linux	</title>
	<atom:link href="https://www.tecmint.com/install-logrotate-to-manage-log-rotation-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-logrotate-to-manage-log-rotation-in-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Mon, 31 May 2021 15:06:06 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Blake		</title>
		<link>https://www.tecmint.com/install-logrotate-to-manage-log-rotation-in-linux/comment-page-1/#comment-1513764</link>

		<dc:creator><![CDATA[Blake]]></dc:creator>
		<pubDate>Mon, 31 May 2021 15:06:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22385#comment-1513764</guid>

					<description><![CDATA[Thanks, worked well for me! I just wanted to point out in this line from the article: 

&lt;code&gt;/var/log/apache2/* {&lt;/code&gt;

..if you just use an asterisk &lt;code&gt;*&lt;/code&gt; it seems like logrotate will rotate any files, even previously rotated files. To correct this, I had to use &lt;code&gt;*.log&lt;/code&gt;.]]></description>
			<content:encoded><![CDATA[<p>Thanks, worked well for me! I just wanted to point out in this line from the article: </p>
<p><code>/var/log/apache2/* {</code></p>
<p>..if you just use an asterisk <code>*</code> it seems like logrotate will rotate any files, even previously rotated files. To correct this, I had to use <code>*.log</code>.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sarjit Singh		</title>
		<link>https://www.tecmint.com/install-logrotate-to-manage-log-rotation-in-linux/comment-page-1/#comment-1104919</link>

		<dc:creator><![CDATA[Sarjit Singh]]></dc:creator>
		<pubDate>Tue, 26 Feb 2019 05:45:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22385#comment-1104919</guid>

					<description><![CDATA[How can I setup logrotate to rotate the logs hourly?
There is no option and minimum frequency is daily.]]></description>
			<content:encoded><![CDATA[<p>How can I setup logrotate to rotate the logs hourly?<br />
There is no option and minimum frequency is daily.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Siva		</title>
		<link>https://www.tecmint.com/install-logrotate-to-manage-log-rotation-in-linux/comment-page-1/#comment-1049070</link>

		<dc:creator><![CDATA[Siva]]></dc:creator>
		<pubDate>Tue, 16 Oct 2018 11:35:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22385#comment-1049070</guid>

					<description><![CDATA[Hi log rotate is not working, please help me.
&lt;pre&gt;
/opt/var/foo.log {
    copytruncate
    daily
    dateext
    rotate 3
    compress
    missingok
    size 10M
}
&lt;/pre&gt;
It is appending data on same file, now the file size reached 6GB how can I fix it]]></description>
			<content:encoded><![CDATA[<p>Hi log rotate is not working, please help me.</p>
<pre>
/opt/var/foo.log {
    copytruncate
    daily
    dateext
    rotate 3
    compress
    missingok
    size 10M
}
</pre>
<p>It is appending data on same file, now the file size reached 6GB how can I fix it</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-logrotate-to-manage-log-rotation-in-linux/comment-page-1/#comment-1038113</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Fri, 21 Sep 2018 06:30:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22385#comment-1038113</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-logrotate-to-manage-log-rotation-in-linux/comment-page-1/#comment-1038100&quot;&gt;Kumar P&lt;/a&gt;.

@Kumar

Yes, you can add your own apache website log path in this file..]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-logrotate-to-manage-log-rotation-in-linux/comment-page-1/#comment-1038100">Kumar P</a>.</p>
<p>@Kumar</p>
<p>Yes, you can add your own apache website log path in this file..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Kumar P		</title>
		<link>https://www.tecmint.com/install-logrotate-to-manage-log-rotation-in-linux/comment-page-1/#comment-1038100</link>

		<dc:creator><![CDATA[Kumar P]]></dc:creator>
		<pubDate>Fri, 21 Sep 2018 05:22:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22385#comment-1038100</guid>

					<description><![CDATA[Hello Gabriel A. Cánepa,

Are we allowed to add our own log path of apache2 here ? with new file on /etc/logrotate.d/mylog with my own log path ?]]></description>
			<content:encoded><![CDATA[<p>Hello Gabriel A. Cánepa,</p>
<p>Are we allowed to add our own log path of apache2 here ? with new file on /etc/logrotate.d/mylog with my own log path ?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
