<?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>Solutions Log &#187; centos</title>
	<atom:link href="http://solutions.unixsherpa.com/tag/centos/feed/" rel="self" type="application/rss+xml" />
	<link>http://solutions.unixsherpa.com</link>
	<description>by Dan Reiland</description>
	<lastBuildDate>Fri, 16 Apr 2010 20:28:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Ensure changes to ulimit parameters persist</title>
		<link>http://solutions.unixsherpa.com/2009/04/23/ensure-changes-to-ulimit-parameters-persist/</link>
		<comments>http://solutions.unixsherpa.com/2009/04/23/ensure-changes-to-ulimit-parameters-persist/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 15:42:45 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[centos]]></category>

		<guid isPermaLink="false">http://solutions.unixsherpa.com/?p=66</guid>
		<description><![CDATA[There are two places where changes need to be recorded: /etc/sysctl.conf /etc/security/limits.conf sysctl.conf is for setting a system wide ceiling: # max open files (systemic limit) fs.file-max = 65536 limits.conf is for setting a user space floor and ceiling: /etc/security/limits.conf Ensure both a hard limit and a soft limit are set, otherwise the setting will [...]]]></description>
			<content:encoded><![CDATA[<p>There are two places where changes need to be recorded:</p>
<pre>
/etc/sysctl.conf
/etc/security/limits.conf
</pre>
<p>sysctl.conf is for setting a system wide ceiling:</p>
<pre>
# max open files (systemic limit)
fs.file-max = 65536
</pre>
<p>limits.conf is for setting a user space floor and ceiling:</p>
<pre>
/etc/security/limits.conf
</pre>
<p>Ensure both a hard limit and a soft limit are set, otherwise the setting will not become active.</p>
<p>For example: to set the number of files any user of the system may have open at a given time to 4096</p>
<pre>
*               soft    nofile          4092
*               hard    nofile          65536
</pre>
]]></content:encoded>
			<wfw:commentRss>http://solutions.unixsherpa.com/2009/04/23/ensure-changes-to-ulimit-parameters-persist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
