<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>nexxes open source blog &#187; drop target</title>
	<atom:link href="http://blog.nexxes.org/tag/drop-target/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nexxes.org</link>
	<description>Open information provided by nexxes Informationstechnik GmbH</description>
	<lastBuildDate>Thu, 13 Aug 2009 01:58:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Syslog-ng and /dev/null</title>
		<link>http://blog.nexxes.org/2009/07/11/syslog-ng-and-devnull/</link>
		<comments>http://blog.nexxes.org/2009/07/11/syslog-ng-and-devnull/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 01:11:29 +0000</pubDate>
		<dc:creator>Dennis Birkholz</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[/dev/null]]></category>
		<category><![CDATA[drop target]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[syslog-ng]]></category>

		<guid isPermaLink="false">http://blog.nexxes.org/?p=5</guid>
		<description><![CDATA[Beware to try to use /dev/null as a drop target for syslog-ng by using something like the following in your syslog-ng.conf:

destination d_drop {
	file("/dev/null");
};

This will chmod your /dev/null file to 0600 (also known as crw-------) at every startup and cause many failures on your system/server. Use an empty target to drop your log messages:

destination d_drop {
};]]></description>
			<content:encoded><![CDATA[<p>Beware to try to use <code>/dev/null</code> as a drop target for syslog-ng by using something like the following in your syslog-ng.conf:</p>

<code>destination d_drop {
	file("/dev/null");
};</code>

<p>This will chmod your <code>/dev/null</code> file to <code>0600 </code>(also known as <code>crw-------</code>) at every startup and cause many failures on your system/server. Use an empty target to drop your log messages:</p>

<code>destination d_drop {
};</code>]]></content:encoded>
			<wfw:commentRss>http://blog.nexxes.org/2009/07/11/syslog-ng-and-devnull/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

