<?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>TheHippo &#187; Server</title>
	<atom:link href="http://blog.thehippo.de/category/server/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.thehippo.de</link>
	<description>if (i=1) throw null;</description>
	<lastBuildDate>Wed, 02 Mar 2011 18:06:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to combine DELETE and JOIN in one MySQL query</title>
		<link>http://blog.thehippo.de/2011/01/server/delete-and-join-mysql-query/</link>
		<comments>http://blog.thehippo.de/2011/01/server/delete-and-join-mysql-query/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 18:33:30 +0000</pubDate>
		<dc:creator>Hippo</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[join]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://blog.thehippo.de/?p=334</guid>
		<description><![CDATA[Today I discovered that a while back on a PHP/HTML/MySQL project I made some serious mistakes on my database design. To explain it in short:

I have one a table, lets call it "table1", and another table, lets call it "table2". Table1 references a row from table2, but I didn't used foreign keys in these ...]]></description>
			<content:encoded><![CDATA[<p>Today I discovered that a while back on a PHP/HTML/MySQL project I made some serious mistakes on my database design. To explain it in short:</p>
<p>I have one a table, lets call it &#8220;table1&#8243;, and another table, lets call it &#8220;table2&#8243;. Table1 references a row from table2, but I didn&#8217;t used foreign keys in these days. (I don&#8217;t if I didn&#8217;t know that they are exist or if InnoDB wasn&#8217;t available.) The Website has an admin tool which edits all the tables through some HTML forms. My mistake was that it is possible to delete a row from table2 which leaves all the rows in table1 referencing this row in table2 somehow broken. Today someone discovered this mistake I needed to clean this up. My idea was to create a simple query which cleans table1 and the alter the PHP which deleting rows from table2 to also clean up table1.</p>
<p>I started which the following query:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="kw1">DELETE</span> <span class="kw1">FROM</span> table1 <span class="kw1">WHERE</span> id <span class="kw5">IN</span> <span class="br0">&#40;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">SELECT</span> t1.id</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">FROM</span> table1 AS t1</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">LEFT</span> <span class="kw1">JOIN</span> table2 AS t2 ON t1.key = t2.key</div>
</li>
<li class="li2">
<div class="de2">&nbsp; <span class="kw1">WHERE</span> t2.key <span class="kw5">IS</span> <span class="kw3">NULL</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#41;</span></div>
</li>
</ol>
</div>
<p>Which leads to the following error:</p>
<pre>#1093 - You can't specify target table 'table1' for update in FROM clause</pre>
<p>I was some kind of shocked because I had no idea whats wrong with this query. After searching the web for a while I found out that it is some kind of bug in MySQL but there is a weird looking workaround:<span id="more-334"></span></p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="kw1">DELETE</span> <span class="kw1">FROM</span> table1 <span class="kw1">WHERE</span> id <span class="kw5">IN</span> <span class="br0">&#40;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">SELECT</span> id</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">FROM</span> <span class="br0">&#40;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw1">SELECT</span> t1.id</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; <span class="kw1">FROM</span> table1 AS t1</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw1">LEFT</span> <span class="kw1">JOIN</span> table2 AS t2 ON t1.key = t2.key</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw1">WHERE</span> t2.key <span class="kw5">IS</span> <span class="kw3">NULL</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="br0">&#41;</span> AS temp</div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#41;</span></div>
</li>
</ol>
</div>
<p>This works very nicely, but costs a lot of performance, because you need to add another subquery and you create a temporary table. So the better solution is to sanitise all your data before you remove some referenced rows <img src='http://blog.thehippo.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p class="wp-flattr-button"></p> <p><a href="http://blog.thehippo.de/?flattrss_redirect&amp;id=334&amp;md5=3bf6080bce612a67a9b7acb2481b073a" title="Flattr" target="_blank"><img src="http://blog.thehippo.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.thehippo.de/2011/01/server/delete-and-join-mysql-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to run VMware Server under Ubuntu 10.04 LTS</title>
		<link>http://blog.thehippo.de/2010/06/server/vmware-server-ubuntu-10-04/</link>
		<comments>http://blog.thehippo.de/2010/06/server/vmware-server-ubuntu-10-04/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 10:10:16 +0000</pubDate>
		<dc:creator>Hippo</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[Tools and Software]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu 10.04]]></category>
		<category><![CDATA[virtual server]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vmware server]]></category>

		<guid isPermaLink="false">http://blog.thehippo.de/?p=258</guid>
		<description><![CDATA[A while ago I used VMware server to running a few virtual instances for testing purposes. Everything worked really flawless. Yesterday I wanted to have some virtual server on my home computer again and encountered many problem with the current version of VMware Server on my Ubuntu 10.04 LTS.
There where some problems with the ...]]></description>
			<content:encoded><![CDATA[<p>A while ago I used <a title="VMware server" href="http://www.vmware.com/products/server/" target="_blank">VMware server</a> to running a few virtual instances for testing purposes. Everything worked really flawless. Yesterday I wanted to have some virtual server on my home computer again and encountered many problem with the current version of VMware Server on my Ubuntu 10.04 LTS.<br />
There where some problems with the installation, some to get the VMware console running and also a few the keyboard input on the console.</p>
<p>It took a while to get everything running and I pulled all the information I needed from many different sites. So pulled them all together in this blog entry:<span id="more-258"></span></p>
<ol>
<li>Register at the VMware page. Download the package for VMware server as *.tar.gz. Extract the archive.</li>
<li>Current VMware products do not support the Linux kernel 2.6.32. Therefor you need a patch for the installation archive. Download the patch from the following link and extract it in the parent folder of you VMware download: <a href="http://codebin.cotescu.com/vmware/vmware-server-2.0.x-kernel-2.6.3x-install.sh" target="_blank">VMware patch for Linux kernel 2.6.32</a>. More information could found on <a title="VMware and Linux kernel 2.6.32" href="http://communities.vmware.com/message/1401588#1401588" target="_blank">this page</a> and pages linked on this page.</li>
<li>Run the script with super-user rights. It is quite simple to install. Most of the times you could just hit enter for every question of the installer. At one point the installer ask for a system user which runs the Vmware instances. If you leave it at the default choice, root will be the user. Make sure you have password to log in as root user. (You can set a root password by running the following command on a terminal:<br />
<blockquote><p>sudo passwd root</p></blockquote>
</li>
<li>If you are running a new Ubuntu system you might have get a <a title="Firefox" href="http://www.mozilla-europe.org/en/firefox/" target="_blank">Firefox</a> version &gt;= 3.6. In these versions the VMware console plugin for the browser won&#8217;t work, so download a older version of Firefox from <a title="Older Firefox version download" href="http://www.mozilla.com/en-US/firefox/all-older.html" target="_blank">this page</a> (3.5.9 should be highest working version number).<br />
Extract it somewhere and run it:</p>
<blockquote><p>./firefox -no-remote -P</p></blockquote>
<p>You might create a new Firefox profile (<em>-P</em>) and make sure a new instance of the Firefox is starting (<em>-no-remote</em>)</li>
<li>On a few guest operating systems you might have some trouble with some of the arrow keys of you keyboard. To get them working run this command from a terminal:<br />
<blockquote><p>sudo echo &#8220;xkeymap.nokeycodeMap = true&#8221; &gt;&gt;  /etc/vmware/config</p></blockquote>
<p>You need to run this on the computer where you want to start the VMware console. More Informations could be found <a title="Arrow keys in VMware console" href="http://ubuntuforums.org/showthread.php?t=1116511" target="_blank">here</a>.</li>
<li>Browse to you VMware administration panel (<a title="VMware adminstration panel" href="http://localhost:8222" target="_blank">http://localhost:8222</a> or <a title="VMware adminstration panel" href="https://localhost:8333" target="_blank">https://localhost:8333</a>). Create and start a virtual machine. Install the browser plug-in. Launch the console.</li>
</ol>
<div id="attachment_270" class="wp-caption aligncenter" style="width: 610px"><a href="http://blog.thehippo.de/wp-content/uploads/2010/06/screenshot1.png"><img class="size-large wp-image-270" title="VMware admin &amp; console" src="http://blog.thehippo.de/wp-content/uploads/2010/06/screenshot1-1024x566.png" alt="VMware admin &amp; console" width="600" height="331" /></a><p class="wp-caption-text">VMware admin &amp; console</p></div>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.thehippo.de/2010/06/server/vmware-server-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Suppress Apache to give away too much information</title>
		<link>http://blog.thehippo.de/2009/09/server/suppress-apache-to-give-away-to-much-information/</link>
		<comments>http://blog.thehippo.de/2009/09/server/suppress-apache-to-give-away-to-much-information/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 12:48:53 +0000</pubDate>
		<dc:creator>Hippo</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.thehippo.de/?p=68</guid>
		<description><![CDATA[Just for fun I looked at the headers generated by website I made and where I am responsible for the administration of the Apache server I discovered this:
HTTP/1.1 200 OK
Date: Sun, 06 Sep 2009 11:44:56 GMT
Server: Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.4.6
X-Powered-By: PHP/5.2.4-2ubuntu5.7
Connection: close
Content-Type: text/html
Actually I think no one needs to know which PHP version is ...]]></description>
			<content:encoded><![CDATA[<p>Just for fun I looked at the <a href="http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol" target="_blank">headers</a> generated by website I made and where I am responsible for the administration of the <a title="Apache" href="http://httpd.apache.org/" target="_blank">Apache</a> server I discovered this:</p>
<pre>HTTP/1.1 200 OK
Date: Sun, 06 Sep 2009 11:44:56 GMT
Server: Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.4.6
X-Powered-By: PHP/5.2.4-2ubuntu5.7
Connection: close
Content-Type: text/html</pre>
<p>Actually I think no one needs to know which <a title="PHP" href="http://www.php.net/" target="_blank">PHP</a> version is running on this machine and that there also a <a title="SVN" href="http://subversion.tigris.org/" target="_blank">Subversion</a> is running on that machine. Even the name of the operating system and the version of the Apache is not needed in most cases.</p>
<p><strong>So how suppress these information?</strong></p>
<h2><span id="more-68"></span>Disable the &#8220;X-Powered-By&#8221;</h2>
<ul>
<li>Log in to your server as root user.</li>
<li>Open you <em>php.ini</em> file in a editor of you choice. My <em>php.ini</em> is located at <em>/etc/php5/cgi/</em> (as I use <a href="http://blog.thehippo.de/2009/08/server/crashing-virtual-servers-2/" target="_blank">mod_fcgid</a> to server PHP content)</li>
<li>Search and edit:
<pre>; Decides whether PHP may expose the fact that it is installed on the server
; (e.g. by adding its signature to the Web server header).  It is no security
; threat in any way, but it makes it possible to determine whether you use PHP
; on your server or not.
expose_php = Off</pre>
<p>If you like you read in the official <a title="expose_php documentation" href="www.php.net/manual/ini.core.php">PHP documentation</a>.</li>
<li>Save and reload you Apache:
<pre>/etc/init.d/apache2 force-reload</pre>
</li>
</ul>
<h2>Disable the &#8220;Server&#8221;-header</h2>
<p>After searching for  while I figured out that disabling the &#8220;Server&#8221;-header is not possible, without recompiling the Apache. (The Apache developers <a href="https://issues.apache.org/bugzilla/show_bug.cgi?id=40026" target="_blank">claim this as a feature</a>.)  But you could decide between some level of information that will be provided.</p>
<ul>
<li>If you are not logged in, log in as root user.</li>
<li>Open you Apache configuration, for me it was <em>/etc/apache2/apache2.conf</em></li>
<li>Search for and edit the following lines:
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="co1"># ServerTokens</span></div>
</li>
<li class="li1">
<div class="de1"><span class="co1"># This directive configures what you return as the Server HTTP response</span></div>
</li>
<li class="li1">
<div class="de1"><span class="co1"># Header. The default is &#8216;Full&#8217; which sends information about the OS-Type</span></div>
</li>
<li class="li1">
<div class="de1"><span class="co1"># and compiled in modules.</span></div>
</li>
<li class="li2">
<div class="de2"><span class="co1"># Set to one of: &nbsp;Full | OS | Minor | Minimal | Major | Prod</span></div>
</li>
<li class="li1">
<div class="de1"><span class="co1"># where Full conveys the most information, and Prod the least.</span></div>
</li>
<li class="li1">
<div class="de1"><span class="co1">#</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">ServerTokens</span> Full</div>
</li>
</ol>
</div>
</li>
<li>Replace the <em>Full</em> with some of the options given in the comment. Here are some examples what these options are meaning:<br />
<table border="0">
<tbody>
<tr>
<td>Full</td>
<td>Server: Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.4.6</td>
</tr>
<tr>
<td>OS</td>
<td>Server: Apache/2.2.8 (Ubuntu)</td>
</tr>
<tr>
<td>Minor</td>
<td>Server: Apache/2.2.8</td>
</tr>
<tr>
<td>Minimal</td>
<td>Server: Apache/2.2</td>
</tr>
<tr>
<td>Major</td>
<td>Server: Apache/2</td>
</tr>
<tr>
<td>Prod</td>
<td>Server: Apache</td>
</tr>
</tbody>
</table>
<p>If you like you could also read the <a title="mod_core documentation" href="http://httpd.apache.org/docs/2.2/mod/core.html#servertokens" target="_blank">official documentation</a>.</li>
<li>Save and reload you Apache:
<pre>/etc/init.d/apache2 force-reload</pre>
</li>
</ul>
<h2>Result</h2>
<p>I had chosen <em>Major</em> in the last step. Now the headers look like this:</p>
<pre>HTTP/1.1 200 OK
Date: Sun, 06 Sep 2009 12:16:40 GMT
Server: Apache/2
Connection: close
Content-Type: text/html</pre>
<p id="firstHeading"><strong>Important note</strong>: This does not improve the security of the server, because you are only hiding information. Maybe you want to read: <a title="Security through obscurity" href="http://en.wikipedia.org/wiki/Security_through_obscurity" target="_blank">Security through obscurity</a>.</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.thehippo.de/2009/09/server/suppress-apache-to-give-away-to-much-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crashing virtual servers II</title>
		<link>http://blog.thehippo.de/2009/08/server/crashing-virtual-servers-2/</link>
		<comments>http://blog.thehippo.de/2009/08/server/crashing-virtual-servers-2/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 15:48:32 +0000</pubDate>
		<dc:creator>Hippo</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.thehippo.de/?p=54</guid>
		<description><![CDATA[In my last post I wrote about some problems that I had with my virtual server that freezes under heavy load. The improvements I suggested worked really nice but the server still sometimes freezes - not often as before but it still happened. So I "googled" around and also asked at ServerFault.com.

It seems that ...]]></description>
			<content:encoded><![CDATA[<p>In my last <a title="Crashing Virtual Servers" href="http://blog.thehippo.de/2009/08/server/crashing-virtual-servers/" target="_blank">post</a> I wrote about some problems that I had with my virtual server that freezes under heavy load. The improvements I suggested worked really nice but the server still sometimes freezes &#8211; not often as before but it still happened. So I &#8220;googled&#8221; around and also asked at <a title="Serverfault question" href="http://serverfault.com/questions/54943/virtual-server-freeze-apache" target="_blank">ServerFault.com</a>.</p>
<p>It seems that keeping up the the apache mpm_prefork and mod_php will not be the solution anymore. Most sites suggested to use mpm_worker instead, because it uses less memory (and my problem was, that my Apache consumed all my memory). On the other hand there could be some problems with thread-safety, but I liked to give it a try. PHP will not me used as an Apache module any more. Instead we will run PHP as a <a title="FastCGI" href="http://en.wikipedia.org/wiki/FastCGI" target="_blank">FastCGI</a> script.<span id="more-54"></span></p>
<p>A short step by step tutorial for switching from mpm_prefork to mpm_worker with using PHP.</p>
<ul>
<li>Open a terminal session as a root user.
<pre>apt-get install apache2-mpm-worker libapache2-mod-fcgid php5-cgi</pre>
<p>apt will complain about a few things and will remove some of the previous installed packages. After installation make sure that mod_fcgid is enabled.</li>
<li>Edit you /etc/apache2/apache2.conf or /etc/apache2/httpd.conf or any config file that will be parsed by apache and add this:
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="kw1">AddHandler</span> fcgid-<span class="kw1">script</span> .php</div>
</li>
<li class="li1">
<div class="de1">FCGIWrapper /usr/lib/cgi-bin/php5 .php</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">Options</span> ExecCGI <span class="kw2">FollowSymlinks</span> Indexes</div>
</li>
</ol>
</div>
</li>
<li>Now enter you /etc/apache2/sites-available directory and edit all the the files there. Every file should contain at least one &#8220;VirtualHost&#8221; node. Within these &#8220;VirtualHost&#8221; nodes there should be one or two &#8220;Directory&#8221; nodes. If not already there add a new line starting with &#8220;Options&#8221; and add &#8220;Indexes&#8221; and &#8220;ExecCGI&#8221; as parameters on these lines. It should be look like this one:
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="kw1">Options</span> Indexes <span class="kw2">FollowSymLinks</span> MultiViews ExecCGI</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">AllowOverride</span> AuthConfig</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">Order</span> <span class="kw1">allow</span>,<span class="kw1">deny</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">allow</span> <span class="kw1">from</span> <span class="kw1">all</span></div>
</li>
</ol>
</div>
</li>
<li>Restart apache:
<pre>/etc/init.d/apache2 restart</pre>
</li>
</ul>
<p>Hopefully now everything should work as before. If you had enabled eAccelerator or any other byte code cache system or if you had mode some modifications on you php.ini you now have to copy them to your &#8220;new&#8221; php.ini located at /etc/php5/cgi/php.ini</p>
<p>A few things wont work as before, e.g. when use user authentication by PHP and not by htaccess. There are also a few issues I read about, but nothing which affect my sites.</p>
<p>As a result I would say spending this hours messing around with Apache and mod_fcgid was a good investment. My server now need only 90 MB Ram when idle, it was 250 MB Ram before. Even under load memory consumption stays lower as before. I hope this will be the last tweak for I longer time.</p>
<p>Using PHP as a FastCGI script gives you a lot of new options. So if you have a lot of time to spent or very worried about the security of you web server you could use the Apache module <a title="suexec" href="http://httpd.apache.org/docs/1.3/suexec.html" target="_blank">suexec</a> which then could execute the script as a special user and not as the default web server user www-data. It could even use multiple user for each virtual host / directory.</p>
<p>Interesting links:</p>
<ul>
<li><a href="http://brian.moonspot.net/2008/02/13/apache-worker-and-php/" target="_blank">http://brian.moonspot.net/2008/02/13/apache-worker-and-php/</a></li>
<li><a href="http://www.ibm.com/developerworks/linux/library/l-tune-lamp-2.html" target="_blank">http://www.ibm.com/developerworks/linux/library/l-tune-lamp-2.html</a> Tuning Apache and PHP</li>
<li><a href="http://www.ibm.com/developerworks/library/l-tune-lamp-3.html" target="_blank">http://www.ibm.com/developerworks/library/l-tune-lamp-3.html</a> Tuning MySQL</li>
<li><a href="http://ivan.gudangbaca.com/installing_apache2_and_php5_using_mod_fcgid" target="_blank">http://ivan.gudangbaca.com/installing_apache2_and_php5_using_mod_fcgid</a> More detailed instruction how to install mpm_worker and PHP via mod_fcgid</li>
</ul>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.thehippo.de/2009/08/server/crashing-virtual-servers-2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Crashing virtual servers</title>
		<link>http://blog.thehippo.de/2009/08/server/crashing-virtual-servers/</link>
		<comments>http://blog.thehippo.de/2009/08/server/crashing-virtual-servers/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 11:14:36 +0000</pubDate>
		<dc:creator>Hippo</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[1und1]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[vHost]]></category>
		<category><![CDATA[virtual server]]></category>

		<guid isPermaLink="false">http://blog.thehippo.de/?p=36</guid>
		<description><![CDATA[After leaving my last company I rented a small virtual server at 1und1. I took the XL vHost package which contains:

	20 GB Raid 5 Storage
	512 MB RAM, max 2 GB RAM
	2 TB Traffic

At this time I thought it would be nice to install every thing by myself, so I choose a plain "Ubuntu 8.04 ...]]></description>
			<content:encoded><![CDATA[<p>After leaving my last company I rented a small virtual server at <a title="1und1" href="http://www.1und1.info" target="_blank">1und1</a>. I took the <a title="1und1 XL virtual host package" href="http://www.1und1.info/xml/order/VirtualServerXL" target="_blank">XL vHost</a> package which contains:</p>
<ul>
<li>20 GB Raid 5 Storage</li>
<li>512 MB RAM, max 2 GB RAM</li>
<li>2 TB Traffic</li>
</ul>
<p>At this time I thought it would be nice to install every thing by myself, so I choose a plain &#8220;Ubuntu 8.04 LTS 64 bit minimal&#8221; as operating system for my vHost. I installed Apache2, PHP5, MySQL and all the stuff I needed. It all works fine and I was really impressed by the speed of this virtual server.</p>
<p>Then I moved <a title="www.sportinleipzig.de" href="http://www.sportinleipzig.de" target="_blank">sportinleipzig.de</a>, which I made during the time at my last company to this new server. This page does not have a very high traffic (200 unique visitors a day), but a lot of content (at least 5000 &#8220;static&#8221; pages). After 2 days the server crashed the first time, whereas crash means, that he is still alive, but does not respond to anything more then a simple ping. I restarted the server over the admin panel. Half a week later the server crashed the next time. Investigating the cause for these crashed I found out a few interesting things.<span id="more-36"></span></p>
<p>First a blamed <a title="mod_tora" href="http://ncannasse.fr/blog/mod_tora" target="_blank">mod_tora</a> which I installed on this virtual server to check if it is ready to use for some production code. Then I deactivated <a title="eAccelerator" href="http://blog.thehippo.de/2009/08/server/eaccelerator-on-ubuntu/" target="_blank">eAccelerator</a>, because I thought it could be possible that it has some memory leaks. I even deactivated <a title="Piwik" href="http://piwik.org/" target="_blank">Piwik</a> which I use as a tracking system for all the visitors on the pages of this server. (It is very nice! If you need some visitor tracking, give it a try.) But the server still crashed ever few days.</p>
<p>Later I recognized that these crashes possibly occur when Google starts to crawl the page, as the page was not completely indexed anymore. So I started to do some load test on the server. A good page to start is <a title="loadimpact.com" href="http://loadimpact.com" target="_blank">loadimpact.com</a> and the Apache command line tool <a title="Apache Benchmark" href="http://httpd.apache.org/docs/2.0/programs/ab.html" target="_blank">ab</a>, which both give you the possibility to run a lot of requests on you own server. Having a ssh session open and refreshing the status page of the Virtuozzo panel it became more and more clear. These kind of virtual server are very restricted how many resources they could consume and there a few limit that are easy to reach:</p>
<ul>
<li><strong>kmemsize</strong>:<br />
<blockquote><p>The size of unswappable kernel memory allocated for the internal kernel structures for the processes of a particular VPS.</p></blockquote>
</li>
<li><strong>shmpages</strong>:<br />
<blockquote><p>The total size of shared memory (including IPC, shared anonymous mappings and tmpfs objects) allocated by the processes of a particular VPS, in pages.</p></blockquote>
</li>
<li><strong>numproc</strong> (maximum set to 128!):<br />
<blockquote><p>The maximal number of processes the VPS may create.</p></blockquote>
</li>
<li><strong>numfile</strong> (maximum set to 8192, this is okay):<br />
<blockquote><p>The number of files opened by all VPS processes.</p></blockquote>
</li>
<li><strong>numtcpsock</strong> and <strong>numothersock</strong> (both set to 720, means: no socket servers on virtual servers!):<br />
<blockquote><p>he number of TCP sockets (PF_INET family, SOCK_STREAM type). This parameter limits the number of TCP connections and, thus, the number of clients the server application can handle in parallel.</p></blockquote>
<blockquote><p>The number of sockets other than TCP ones. Local (UNIX-domain) sockets are used for communications inside the system. UDP sockets are used, for example, for Domain Name Service (DNS) queries. UDP and other sockets may also be used in some very specialized applications (SNMP agents and others).</p></blockquote>
</li>
</ul>
<p>There are a lot of other limits set to the server, but the first three are these limits that made my server crash, when having tons of requests on the Apache.</p>
<p>I am using the Apache2 in the prefork mode (this is default if you install it via the Ubuntu repositories). This means the Apache spawns a few processes to handle the requests. If load raises more processes will be created, if load goes down unused processes will be destroyed. Forking new processes cost a little bit time so the Apache keeps some processes ready just in the case of load peak. During the time google crawls the page many processes where created to handle the load. The problem was that these processes consumed to much memory (probably this could be a memory leak in one of the PHP  scripts) and some of some became zombies, leading the virtual server to consume all resources and then crash.</p>
<p><strong>The solution</strong>:<br />
Edit you &#8220;/etc/apache2/apache2.conf&#8221;. Search for this section:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="co1"># prefork MPM</span></div>
</li>
<li class="li1">
<div class="de1"><span class="co1"># StartServers: number of server processes to start</span></div>
</li>
<li class="li1">
<div class="de1"><span class="co1"># MinSpareServers: minimum number of server processes which are kept spare</span></div>
</li>
<li class="li1">
<div class="de1"><span class="co1"># MaxSpareServers: maximum number of server processes which are kept spare</span></div>
</li>
<li class="li2">
<div class="de2"><span class="co1"># MaxClients: maximum number of server processes allowed to start</span></div>
</li>
<li class="li1">
<div class="de1"><span class="co1"># MaxRequestsPerChild: maximum number of requests a server process serves</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw1">StartServers</span> &nbsp; &nbsp; &nbsp; &nbsp; <span class="nu0">10</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw1">MinSpareServers</span> &nbsp; &nbsp; &nbsp;<span class="nu0">10</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; <span class="kw1">MaxSpareServers</span> &nbsp; &nbsp; &nbsp;<span class="nu0">20</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw1">MaxClients</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="nu0">100</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw1">MaxRequestsPerChild</span> <span class="nu0">500</span></div>
</li>
</ol>
</div>
<p>You could read in the comment of the config the impact of every parameter. The important one is the last one which is set to &#8220;0&#8243; by default, which means that processes live as long as possible. Setting it to &#8220;500&#8243;, which is quite conservative, makes every process ends after serving 500 request. This also makes sure that all the allocated memory is freed. That causes that processes need to be created more often, so I also raised &#8220;MinSpareServers&#8221; and &#8220;MaxSpareServers&#8221;, which are the processes keept ready for load peak.<br />
In conclusion my server spends a little more time on spawning new Apache processes, but this makes sure memory is cleaned more often and finally solved my problem!</p>
<p>P.S.: I don&#8217;t know if this is on all virtual servers, but the vHosts at 1und1 have a &#8220;/proc/&#8221;-entry for reading the limits of you server. You type into the terminal:</p>
<pre>root@foo:~# cat /proc/user_beancounters</pre>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.thehippo.de/2009/08/server/crashing-virtual-servers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>eAccelerator on Ubuntu</title>
		<link>http://blog.thehippo.de/2009/08/server/eaccelerator-on-ubuntu/</link>
		<comments>http://blog.thehippo.de/2009/08/server/eaccelerator-on-ubuntu/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 17:34:43 +0000</pubDate>
		<dc:creator>Hippo</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[eAccelerator]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.thehippo.de/?p=19</guid>
		<description><![CDATA[On the last blog I wrote for was an article which described who to install eAccelerator on a Ubuntu server. As this blog entry had a lot of visits I decided to put it on this blog again:

PHP is not the fastest scripting language, that truly a fact. Except from optimizing the scripts there ...]]></description>
			<content:encoded><![CDATA[<p>On the last blog I wrote for was an article which described who to install eAccelerator on a <a title="Ubuntu" href="http://www.ubuntu.com" target="_blank">Ubuntu</a> server. As this blog entry had a lot of visits I decided to put it on this blog again:</p>
<p><a title="PHP" href="http://www.php.net" target="_blank">PHP</a> is not the fastest scripting language, that truly a fact. Except from optimizing the scripts there a few possibilities to speed everything up. One is to install a byte code optimizer and cache on your server. They cache the byte code created by the PHP parser and try to optimise it. So every time some one requests for a page on your server the script does not have to be parsed again. This brings a speedup of 120 &#8211; 250% depending on you script. There are several byte code caching program available, the one I like most is <a title="eAccelerator" href="http://www.eaccelerator.net/" target="_blank">eAccelerator</a>. Sadly eAccelerator is not available through the Ubuntu repositories so you have install them yourself. Here is a short description how to archive this!<br />
<span id="more-19"></span>Everything is done from the terminal as a root user.</p>
<ul>
<li>Prepare you system for compiling a PHP extension:
<pre>apt-get install build-essential php5-dev</pre>
</li>
<li>Choosing a folder for build process. I used &#8220;/usr/local/src/&#8221;</li>
<li>Getting the sources from the eAccelerator site:
<pre>wget <a class="linkification-ext" title="Linkification: http://bart.eaccelerator.net/source/0.9.5.3/eaccelerator-0.9.5.3.zip" href="http://bart.eaccelerator.net/source/0.9.5.3/eaccelerator-0.9.5.3.zip">http://bart.eaccelerator.net/source/0.9.5.3/eaccelerator-0.9.5.3.zip</a></pre>
</li>
<li>Extract and delete the archive
<pre>unzip eaccelerator-0.9.5.3.zip &amp;&amp; rm eaccelerator-0.9.5.3.zip</pre>
</li>
<li>Enter the folder
<pre>cd eaccelerator-0.9.5.3</pre>
</li>
<li>Prepare as a new PHP extension and compilation
<pre>phpize
./configure --enable-eaccelerator=shared</pre>
</li>
<li>Compile and install
<pre>make
make install</pre>
<p>The install process prints out a folder where eAccelerator has been installed. Remember or copy it, you will need this later.</li>
<li>Enabling eAcceletor: Editing your &#8220;php.ini&#8221; or create a new ini file in you conf.d directory of PHP. (You can find them here: &#8220;/etc/php5/&#8221;.) Insert the following:
<pre>zend_extension                  = "/usr/lib/php5/20060613+lfs/eaccelerator.so"
eaccelerator.shm_size           = "0"
eaccelerator.cache_dir          = "/var/cache/eaccelerator"
eaccelerator.enable             = "1"
eaccelerator.optimizer          = "1"
eaccelerator.check_mtime        = "1"
eaccelerator.debug              = "0"
eaccelerator.filter             = ""
eaccelerator.shm_max            = "0"
eaccelerator.shm_ttl            = "0"
eaccelerator.shm_prune_period   = "0"
eaccelerator.shm_only           = "0"
eaccelerator.compress           = "1"
eaccelerator.compress_level     = "7"
eaccelerator.allowed_admin_path = "/var/www/eaccelerator"</pre>
<p>In the first line enter the path printed out during the install. In the last line you could enter a directory for the eAccelerator admin tool, if you want to use it.</li>
<li>Create the cache directory:
<pre>mkdir /var/cache/eaccelerator
chown www-data.www-data /var/cache/eaccelerator</pre>
</li>
<li>Restart you Apache!
<pre>/etc/init.d/apache2 restart</pre>
</li>
</ul>
<p>There are a lot of setting in the ini file. The whole list and the description of them could be found here:  <a title="eAccelerator Ini-settings" href="http://eaccelerator.net/wiki/Settings" target="_blank">Ini-settings</a>.</p>
<p>To check if everything is working open up a page on the server that contains the &#8220;phpinfo();&#8221; command. There should be some thing like this:</p>
<div id="attachment_32" class="wp-caption aligncenter" style="width: 617px"><img class="size-full wp-image-32" title="eAccelerator" src="http://blog.thehippo.de/wp-content/uploads/2009/08/eacclerator.jpg" alt="eAccelerator" width="607" height="98" /><p class="wp-caption-text">eAccelerator</p></div>
<p>Enjoy the speed!</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.thehippo.de/2009/08/server/eaccelerator-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.317 seconds -->

