<?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: Apache: No space left on device: Couldn&#039;t create accept lock</title> <atom:link href="http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/feed/" rel="self" type="application/rss+xml" /><link>http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/</link> <description>Words of wisdom from a server administrator</description> <lastBuildDate>Thu, 11 Mar 2010 12:34:00 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>By: Dws</title><link>http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/#comment-15723</link> <dc:creator>Dws</dc:creator> <pubDate>Thu, 07 Jan 2010 23:40:30 +0000</pubDate> <guid isPermaLink="false">http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/#comment-15723</guid> <description>Thanks guy you are F*****´ geniusI have to love people like youThnks again</description> <content:encoded><![CDATA[<p>Thanks guy you are F*****´ genius</p><p>I have to love people like you</p><p>Thnks again</p> ]]></content:encoded> </item> <item><title>By: Eric Gillette</title><link>http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/#comment-15682</link> <dc:creator>Eric Gillette</dc:creator> <pubDate>Thu, 31 Dec 2009 05:36:55 +0000</pubDate> <guid isPermaLink="false">http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/#comment-15682</guid> <description>Well, you are a damn GENIUS!I don&#039;t know what the heck is a semaphore is either, but I&#039;ll tell you this much -- you&#039;re idea did the trick.This is all started as the result of modifying apache&#039;s and PHP&#039;s config (was installing PDO, PDO_MYSQL, and PDO_SQLITE), which of course botched everything.I went back and removed PDO, et al by using pecl and that did the trick, because before that apache was generating a massive number of errors, and &quot;php -v&quot; gave me a &quot;segmentation fault&quot; so I completely backed off that idea.There was only one thing I had to change, and I think it will answer Jenny&#039;s question above.I&#039;m working in a debian distro, so I had to modify this line:for i in `ipcs -s &#124; awk &#039;/httpd/ {print $2}&#039;`; do (ipcrm -s $i); doneTo this instead:for i in `ipcs -s &#124; awk &#039;/www-data/ {print $2}&#039;`; do (ipcrm -s $i); doneAfter that I got this (direct from error.log):[Thu Dec 31 05:28:09 2009] [notice] Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16 configured -- resuming normal operationsOf course that was music to my ears (er...eyes), and then I checked using &quot;ps aux &#124; grep apache2&quot; and got this:www-data 28829  0.0  1.3  29200  8044 ?        S    05:28   0:00 /usr/sbin/apache2 -k start www-data 28830  0.0  0.7  28808  4756 ?        S    05:28   0:00 /usr/sbin/apache2 -k start www-data 28831  0.0  0.7  28808  4676 ?        S    05:28   0:00 /usr/sbin/apache2 -k start www-data 28832  0.0  0.7  28808  4676 ?        S    05:28   0:00 /usr/sbin/apache2 -k start www-data 28833  0.0  1.0  28904  6728 ?        S    05:28   0:00 /usr/sbin/apache2 -k start www-data 28837  0.0  0.6  28672  4220 ?        S    05:28   0:00 /usr/sbin/apache2 -k start www-data 28838  0.0  0.6  28672  4220 ?        S    05:28   0:00 /usr/sbin/apache2 -k start www-data 28839  0.0  0.6  28672  4220 ?        S    05:28   0:00 /usr/sbin/apache2 -k start www-data 28840  0.0  0.6  28672  4220 ?        S    05:28   0:00 /usr/sbin/apache2 -k start www-data 28841  0.0  0.6  28672  4220 ?        S    05:28   0:00 /usr/sbin/apache2 -k start root     28859  0.0  0.0   1644   508 pts/0    R+   05:33   0:00 grep apache2Naturally, I was a happy camper, and so was my client for that matter -- thanks dude! =0)</description> <content:encoded><![CDATA[<p>Well, you are a damn GENIUS!</p><p>I don't know what the heck is a semaphore is either, but I'll tell you this much -- you're idea did the trick.</p><p>This is all started as the result of modifying apache's and PHP's config (was installing PDO, PDO_MYSQL, and PDO_SQLITE), which of course botched everything.</p><p>I went back and removed PDO, et al by using pecl and that did the trick, because before that apache was generating a massive number of errors, and "php -v" gave me a "segmentation fault" so I completely backed off that idea.</p><p>There was only one thing I had to change, and I think it will answer Jenny's question above.</p><p>I'm working in a debian distro, so I had to modify this line:</p><p>for i in `ipcs -s | awk '/httpd/ {print $2}'`; do (ipcrm -s $i); done</p><p>To this instead:</p><p>for i in `ipcs -s | awk '/www-data/ {print $2}'`; do (ipcrm -s $i); done</p><p>After that I got this (direct from error.log):</p><p>[Thu Dec 31 05:28:09 2009] [notice] Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16 configured -- resuming normal operations</p><p>Of course that was music to my ears (er...eyes), and then I checked using "ps aux | grep apache2" and got this:</p><p>www-data 28829  0.0  1.3  29200  8044 ?        S    05:28   0:00 /usr/sbin/apache2 -k start<br /> www-data 28830  0.0  0.7  28808  4756 ?        S    05:28   0:00 /usr/sbin/apache2 -k start<br /> www-data 28831  0.0  0.7  28808  4676 ?        S    05:28   0:00 /usr/sbin/apache2 -k start<br /> www-data 28832  0.0  0.7  28808  4676 ?        S    05:28   0:00 /usr/sbin/apache2 -k start<br /> www-data 28833  0.0  1.0  28904  6728 ?        S    05:28   0:00 /usr/sbin/apache2 -k start<br /> www-data 28837  0.0  0.6  28672  4220 ?        S    05:28   0:00 /usr/sbin/apache2 -k start<br /> www-data 28838  0.0  0.6  28672  4220 ?        S    05:28   0:00 /usr/sbin/apache2 -k start<br /> www-data 28839  0.0  0.6  28672  4220 ?        S    05:28   0:00 /usr/sbin/apache2 -k start<br /> www-data 28840  0.0  0.6  28672  4220 ?        S    05:28   0:00 /usr/sbin/apache2 -k start<br /> www-data 28841  0.0  0.6  28672  4220 ?        S    05:28   0:00 /usr/sbin/apache2 -k start<br /> root     28859  0.0  0.0   1644   508 pts/0    R+   05:33   0:00 grep apache2</p><p>Naturally, I was a happy camper, and so was my client for that matter -- thanks dude! =0)</p> ]]></content:encoded> </item> <item><title>By: jenny</title><link>http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/#comment-15606</link> <dc:creator>jenny</dc:creator> <pubDate>Tue, 24 Nov 2009 12:36:35 +0000</pubDate> <guid isPermaLink="false">http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/#comment-15606</guid> <description>I use clear command &quot;for i in `ipcs -s &#124; awk &#039;/httpd/ {print $2}&#039;`; do (ipcrm -s $i); done&quot; which can&#039;t clear semaphores</description> <content:encoded><![CDATA[<p>I use clear command "for i in `ipcs -s | awk '/httpd/ {print $2}'`; do (ipcrm -s $i); done" which can't clear semaphores</p> ]]></content:encoded> </item> <item><title>By: Ese</title><link>http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/#comment-15582</link> <dc:creator>Ese</dc:creator> <pubDate>Thu, 12 Nov 2009 19:54:38 +0000</pubDate> <guid isPermaLink="false">http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/#comment-15582</guid> <description>Hey,this was a lifesaver. thanks for putting it up!E.</description> <content:encoded><![CDATA[<p>Hey,</p><p>this was a lifesaver. thanks for putting it up!</p><p>E.</p> ]]></content:encoded> </item> <item><title>By: Wim</title><link>http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/#comment-15488</link> <dc:creator>Wim</dc:creator> <pubDate>Tue, 15 Sep 2009 17:28:26 +0000</pubDate> <guid isPermaLink="false">http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/#comment-15488</guid> <description>Okay, this worked for me. But the question for today is: why? What is the cause of this problem? Is it a bug in PHP or Apache?</description> <content:encoded><![CDATA[<p>Okay, this worked for me. But the question for today is: why?<br /> What is the cause of this problem? Is it a bug in PHP or Apache?</p> ]]></content:encoded> </item> <item><title>By: FractalizeR&#8217;s WebSite &#187; [Solution] Apache: No space left on device: Couldn’t create accept lock</title><link>http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/#comment-15323</link> <dc:creator>FractalizeR&#8217;s WebSite &#187; [Solution] Apache: No space left on device: Couldn’t create accept lock</dc:creator> <pubDate>Mon, 01 Jun 2009 11:31:14 +0000</pubDate> <guid isPermaLink="false">http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/#comment-15323</guid> <description>[...] No system restart is needed to apply changes. Just issue &#039;sysctl -p&#8216; command. The solution was found here. [...]</description> <content:encoded><![CDATA[<p>[...] No system restart is needed to apply changes. Just issue 'sysctl -p&#8216; command. The solution was found here. [...]</p> ]]></content:encoded> </item> <item><title>By: apache [emerg] (28)No space left on device: Couldn't create accept lock - Foros de CHW</title><link>http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/#comment-14175</link> <dc:creator>apache [emerg] (28)No space left on device: Couldn't create accept lock - Foros de CHW</dc:creator> <pubDate>Mon, 27 Apr 2009 15:03:52 +0000</pubDate> <guid isPermaLink="false">http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldnt-create-accept-lock/#comment-14175</guid> <description>[...]  [...]</description> <content:encoded><![CDATA[<p>[...]  [...]</p> ]]></content:encoded> </item> </channel> </rss>
<!-- This site's performance optimized by W3 Total Cache. Dramatically improve the speed and reliability of your blog!

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 4/11 queries in 0.010 seconds using disk
Content Delivery Network via cdn.rackerhacker.com

Served from: dfw.mhtx.net @ 2010-03-11 21:07:45 -->