<?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>Phil Bayfield &#187; Servers</title>
	<atom:link href="http://www.philbayfield.com/category/servers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.philbayfield.com</link>
	<description>A little about me, my photos and some general geeky stuff!</description>
	<lastBuildDate>Sun, 11 Jul 2010 23:44:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Switching MySQL for MariaDB on Ubuntu.</title>
		<link>http://www.philbayfield.com/2010/07/11/switching-mysql-for-mariadb-on-ubuntu/</link>
		<comments>http://www.philbayfield.com/2010/07/11/switching-mysql-for-mariadb-on-ubuntu/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 11:36:35 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=449</guid>
		<description><![CDATA[MariaDB offers quite a few improvements over MySQL, mainly in the storage engines it provides. Firstly, the Maria engine is a crash safe version of MyISAM which in the future will also support transactions. Secondly, the XtraDB engine is an enhanced version of Innodb which can give considerable speed improvements over the standard Innodb engine. [...]]]></description>
			<content:encoded><![CDATA[<p>MariaDB offers quite a few improvements over MySQL, mainly in the storage engines it provides. Firstly, the Maria engine is a crash safe version of MyISAM which in the future will also support transactions. Secondly, the XtraDB engine is an enhanced version of Innodb which can give considerable speed improvements over the standard Innodb engine. There are many other features and improvements over the standard MySQL distribution, move info on the differences can be found here: <a href="http://askmonty.org/wiki/MariaDB_versus_MySQL">http://askmonty.org/wiki/MariaDB_versus_MySQL</a></p>
<p>The easiest way to install MariaDB is to add one of the repositories, I&#8217;ve used OurDelta:</p>
<div class="codesnip-container" >wget -O- http://ourdelta.org/deb/ourdelta.gpg | sudo apt-key add -<br />
sudo wget http://ourdelta.org/deb/sources/lucid-mariadb-ourdelta.list -O /etc/apt/sources.list.d/ourdelta.list</div>
<p>Then install MariaDB:</p>
<div class="codesnip-container" >sudo apt-get install mariadb-server-5.1</div>
<p>This should install MariaDB without any problems, it should also replace MySQL if you already installed it:</p>
<div class="codesnip-container" ># apt-get install mariadb-server-5.1<br />
Reading package lists&#8230; Done<br />
Building dependency tree<br />
Reading state information&#8230; Done<br />
The following extra packages will be installed:<br />
  libmariadbclient16 libmysqlclient16 mariadb-client-5.1<br />
  mariadb-client-core-5.1 mariadb-server-core-5.1 mysql-common<br />
Suggested packages:<br />
  tinyca mailx mariadb-test<br />
The following packages will be REMOVED<br />
  libmysqlclient-dev libmysqlclient16-dev mysql-client mysql-client-5.1<br />
  mysql-client-core-5.1 mysql-server-5.1 mysql-server-core-5.1<br />
The following NEW packages will be installed<br />
  libmariadbclient16 mariadb-client-5.1 mariadb-client-core-5.1<br />
  mariadb-server-5.1 mariadb-server-core-5.1<br />
The following packages will be upgraded:<br />
  libmysqlclient16 mysql-common<br />
2 upgraded, 5 newly installed, 7 to remove and 8 not upgraded.</div>
<p>If you are upgrading from MySQL, you will probably be prompted to overwrite the my.cnf and for a new root password. I generally choose Y to overwrite and enter my existing root password to avoid issue.</p>
<p>You can also follow my previous post to upgrade the client library used by PHP, rather than installing the MySQL dev package, the Maria equivalent should be used:</p>
<div class="codesnip-container" >sudo apt-get install libmariadbclient16-dev</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/07/11/switching-mysql-for-mariadb-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update Zend Server MySQL extensions</title>
		<link>http://www.philbayfield.com/2010/05/06/update-zend-server-mysql-extensions/</link>
		<comments>http://www.philbayfield.com/2010/05/06/update-zend-server-mysql-extensions/#comments</comments>
		<pubDate>Thu, 06 May 2010 08:39:09 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=430</guid>
		<description><![CDATA[As the MySQL extensions with Zend Server are out of date, I decided to update them as it&#8217;s pretty simple to do. Install the source package: sudo apt-get install php-5.2-source-zend-server or sudo apt-get install php-5.3-source-zend-server Install the MySQL client dev package: sudo apt-get install libmysqlclient16-dev Install autoconf: sudo apt-get install autoconf From this point onwards [...]]]></description>
			<content:encoded><![CDATA[<p>As the MySQL extensions with Zend Server are out of date, I decided to update them as it&#8217;s pretty simple to do.</p>
<p>Install the source package:</p>
<div class="codesnip-container" >sudo apt-get install php-5.2-source-zend-server</div>
<p>or</p>
<div class="codesnip-container" >sudo apt-get install php-5.3-source-zend-server</div>
<p>Install the MySQL client dev package:</p>
<div class="codesnip-container" >sudo apt-get install libmysqlclient16-dev</div>
<p>Install autoconf:</p>
<div class="codesnip-container" >sudo apt-get install autoconf</div>
<p>From this point onwards I ran as root as saves time having to sudo everything, I have also created symlinks for the binaries in /usr/local/zend/bin to /usr/local (php, phpize, php-config, pear, pecl etc)</p>
<p>Change to the extensions directory of the source you just installed:</p>
<div class="codesnip-container" >cd /usr/local/zend/share/php-source/php-5.3.2/</div>
<p>There are 3 extensions that need to be recompiled mysql, mysqli and pdo_mysql, the following procedure is the same for all 3:</p>
<div class="codesnip-container" >cd mysql<br />
./configure<br />
make<br />
cp modules/mysql.so /usr/local/zend/lib/php_extensions/</div>
<p>Finally restart Zend Server and all the MySQL extensions will be using the latest libraries.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/05/06/update-zend-server-mysql-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Server on Ubuntu Lucid has dependency problems</title>
		<link>http://www.philbayfield.com/2010/05/06/zend-server-on-lucid-has-dependency-problems/</link>
		<comments>http://www.philbayfield.com/2010/05/06/zend-server-on-lucid-has-dependency-problems/#comments</comments>
		<pubDate>Thu, 06 May 2010 08:20:25 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=427</guid>
		<description><![CDATA[When trying to install Zend Server on Lucid you will be met with the following dependency problems: The following packages have unmet dependencies: php-5.2-mysql-zend-server: Depends: libmysqlclient15off (>= 5.0.27-1) which is a virtual package. php-5.2-pdo-mysql-zend-server: Depends: libmysqlclient15off (>= 5.0.27-1) which is a virtual package. php-5.2-mysqli-zend-server: Depends: libmysqlclient15off (>= 5.0.27-1) which is a virtual package. Along with [...]]]></description>
			<content:encoded><![CDATA[<p>When trying to install Zend Server on Lucid you will be met with the following dependency problems:</p>
<div class="codesnip-container" >The following packages have unmet dependencies:<br />
  php-5.2-mysql-zend-server: Depends: libmysqlclient15off (>= 5.0.27-1) which is a virtual package.<br />
  php-5.2-pdo-mysql-zend-server: Depends: libmysqlclient15off (>= 5.0.27-1) which is a virtual package.<br />
  php-5.2-mysqli-zend-server: Depends: libmysqlclient15off (>= 5.0.27-1) which is a virtual package.</div>
<p>Along with the rather unsatisfactory resolution:</p>
<div class="codesnip-container" >The following actions will resolve these dependencies:<br />
Keep the following packages at their current version:<br />
help-zend-server-ce [Not Installed]<br />
php-5.2-common-extensions-zend-server-ce [Not Installed]<br />
php-5.2-mysql-zend-server [Not Installed]<br />
php-5.2-mysqli-zend-server [Not Installed]<br />
php-5.2-pdo-mysql-zend-server [Not Installed]<br />
zend-server-ce-php-5.2 [Not Installed]</div>
<p>The reason for this error is that the Zend MySQL packages are built against MySQL 5.0 (despite the fact 5.1 has been GA for over a year now).</p>
<p>Ubuntu have removed MySQL 5.0 in Lucid, but the package from Karmic is usable and available here: <a href="http://ns2.canonical.com/pt/karmic/libmysqlclient15off">http://ns2.canonical.com/pt/karmic/libmysqlclient15off</a></p>
<p>Simply install this and Zend Server will install nicely.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/05/06/zend-server-on-lucid-has-dependency-problems/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04 Server, so far so good!</title>
		<link>http://www.philbayfield.com/2010/04/28/ubuntu-10-04-server-so-far-so-good/</link>
		<comments>http://www.philbayfield.com/2010/04/28/ubuntu-10-04-server-so-far-so-good/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 21:49:20 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=349</guid>
		<description><![CDATA[I upgraded one of my Karmic servers to Ubuntu 10.04 RC the other day. The last upgrade from Jaunty to Karmic was a rather traumatic process, but thankfully this time round all went smoothly. Not really any overly noticeable changes this time round other than a few more things have moved into upstart (MySQL for [...]]]></description>
			<content:encoded><![CDATA[<p>I upgraded one of my Karmic servers to Ubuntu 10.04 RC the other day.</p>
<p>The last upgrade from Jaunty to Karmic was a rather traumatic process, but thankfully this time round all went smoothly. Not really any overly noticeable changes this time round other than a few more things have moved into upstart (MySQL for example) and when I boot via KVM the new Plymouth boot screen is present, although not sure why this is even included in a server release.</p>
<p>It&#8217;s about as updated a LAMP setup as is possible including Apache 2.2.14, MySQL 5.1.41 and especially pleased they put in PHP 5.3.2 after the code freeze. On this server I&#8217;m actually running Zend Server CE (which already had PHP 5.3.2) as Zend are quicker to push out the updates, but on others I will stick with the default Ubuntu release.</p>
<p>What else can be said about a server OS? Well, it just works <img src='http://www.philbayfield.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/04/28/ubuntu-10-04-server-so-far-so-good/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04 &#8211; Looks like it will ship with PHP 5.3</title>
		<link>http://www.philbayfield.com/2010/03/04/ubuntu-10-04-looks-like-it-will-ship-with-php-5-3/</link>
		<comments>http://www.philbayfield.com/2010/03/04/ubuntu-10-04-looks-like-it-will-ship-with-php-5-3/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 07:13:18 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=334</guid>
		<description><![CDATA[I took a look on Launchpad today to see if there was any indication as to which version of PHP Ubuntu had decided to ship with the next release. As it&#8217;s an LTS release there is always the possibility that they may go for the slightly more stable options than the slightly more experimental options [...]]]></description>
			<content:encoded><![CDATA[<p>I took a look on Launchpad today to see if there was any indication as to which version of PHP Ubuntu had decided to ship with the next release. As it&#8217;s an LTS release there is always the possibility that they may go for the slightly more stable options than the slightly more experimental options as they will have to support this edition for the next 3 years.</p>
<p>It appears from a package search that 2 days ago PHP 5.3.1 packages were added to Lucid. It&#8217;s quite a big step, and will be interesting if they also include a 5.2.x release along side it as so many applications are not ready for 5.3 yet.</p>
<p>More information can be found on Launchpad: <div style="float: left; text-align: center">
			    <a href="https://launchpad.net/ubuntu/+source/php5" target="_blank"><img src="http://simple.thumbshots.com/image.aspx?cid=1508&v=1&w=200&h=150&url=https://launchpad.net/ubuntu/+source/php5" /></a><br /><a href="https://launchpad.net/ubuntu/+source/php5" target="_blank">https://launchpad.net/ubuntu/+source/...</a></div><br style="clear: both" /></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/03/04/ubuntu-10-04-looks-like-it-will-ship-with-php-5-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Server 5.0 Upgrade Fix</title>
		<link>http://www.philbayfield.com/2010/03/03/zend-server-5-0-upgrade-fix/</link>
		<comments>http://www.philbayfield.com/2010/03/03/zend-server-5-0-upgrade-fix/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 18:44:58 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=332</guid>
		<description><![CDATA[As mentioned in my previous post about Zend Server 5.0 upgrade, the GUI images are missing following the upgrade. It turns out that for some reason Apt doesn&#8217;t properly upgrade the Zend Server package itself, to fix this I ran the repository installer script again on all effected machines. $ sudo ./install_zs.sh 5.3 ce Running [...]]]></description>
			<content:encoded><![CDATA[<p>As mentioned in my previous post about Zend Server 5.0 upgrade, the GUI images are missing following the upgrade.</p>
<p>It turns out that for some reason Apt doesn&#8217;t properly upgrade the Zend Server package itself, to fix this I ran the repository installer script again on all effected machines.</p>
<div class="codesnip-container" >$ sudo ./install_zs.sh 5.3 ce</p>
<p>Running this script will preform the following:<br />
* Configure your package manager to use Zend Server repository<br />
* Install Zend Server on your system using your package manager</p>
<p>Hit ENTER to install Zend Server, or Ctrl+C to abort now.</p>
<p>&#8211;2010-03-01 22:53:18&#8211;  http://repos.zend.com/deb/zend.key<br />
Resolving repos.zend.com&#8230; 93.188.128.18<br />
Connecting to repos.zend.com|93.188.128.18|:80&#8230; connected.<br />
HTTP request sent, awaiting response&#8230; 200 OK<br />
Length: 1673 (1.6K) [text/plain]<br />
Saving to: `STDOUT&#8217;</p>
<p>100%[==============================================================================================================================>] 1,673       &#8211;.-K/s   in 0s</p>
<p>2010-03-01 22:53:19 (57.4 MB/s) &#8211; `-&#8217; saved [1673/1673]</p>
<p>OK<br />
Writing extended state information&#8230; Done<br />
Hit http://gb.archive.ubuntu.com karmic Release.gpg<br />
Get:1 http://gb.archive.ubuntu.com karmic/main Translation-en_GB [63.7kB]<br />
Hit http://security.ubuntu.com karmic-security Release.gpg<br />
Ign http://security.ubuntu.com karmic-security/main Translation-en_GB<br />
Get:2 http://gb.archive.ubuntu.com karmic/restricted Translation-en_GB [3,402B]<br />
Get:3 http://gb.archive.ubuntu.com karmic/universe Translation-en_GB [33.2kB]<br />
Get:4 http://gb.archive.ubuntu.com karmic/multiverse Translation-en_GB [43.8kB]<br />
Get:5 http://gb.archive.ubuntu.com karmic-updates Release.gpg [189B]<br />
Ign http://gb.archive.ubuntu.com karmic-updates/main Translation-en_GB<br />
Ign http://gb.archive.ubuntu.com karmic-updates/restricted Translation-en_GB<br />
Ign http://gb.archive.ubuntu.com karmic-updates/universe Translation-en_GB<br />
Ign http://gb.archive.ubuntu.com karmic-updates/multiverse Translation-en_GB<br />
Ign http://security.ubuntu.com karmic-security/restricted Translation-en_GB<br />
Ign http://security.ubuntu.com karmic-security/universe Translation-en_GB<br />
Ign http://security.ubuntu.com karmic-security/multiverse Translation-en_GB<br />
Hit http://security.ubuntu.com karmic-security Release<br />
Hit http://gb.archive.ubuntu.com karmic Release<br />
Get:6 http://gb.archive.ubuntu.com karmic-updates Release [44.1kB]<br />
Hit http://repos.zend.com server Release.gpg<br />
Hit http://security.ubuntu.com karmic-security/main Packages<br />
Hit http://security.ubuntu.com karmic-security/restricted Packages<br />
Hit http://security.ubuntu.com karmic-security/main Sources<br />
Hit http://security.ubuntu.com karmic-security/restricted Sources<br />
Hit http://security.ubuntu.com karmic-security/universe Packages<br />
Hit http://security.ubuntu.com karmic-security/universe Sources<br />
Hit http://security.ubuntu.com karmic-security/multiverse Packages<br />
Hit http://security.ubuntu.com karmic-security/multiverse Sources<br />
Hit http://gb.archive.ubuntu.com karmic/main Packages<br />
Hit http://gb.archive.ubuntu.com karmic/restricted Packages<br />
Hit http://gb.archive.ubuntu.com karmic/main Sources<br />
Hit http://gb.archive.ubuntu.com karmic/restricted Sources<br />
Hit http://gb.archive.ubuntu.com karmic/universe Packages<br />
Hit http://gb.archive.ubuntu.com karmic/universe Sources<br />
Hit http://gb.archive.ubuntu.com karmic/multiverse Packages<br />
Hit http://gb.archive.ubuntu.com karmic/multiverse Sources<br />
Get:7 http://gb.archive.ubuntu.com karmic-updates/main Packages [182kB]<br />
Get:8 http://gb.archive.ubuntu.com karmic-updates/restricted Packages [14B]<br />
Get:9 http://gb.archive.ubuntu.com karmic-updates/main Sources [54.4kB]<br />
Get:10 http://gb.archive.ubuntu.com karmic-updates/restricted Sources [14B]<br />
Get:11 http://gb.archive.ubuntu.com karmic-updates/universe Packages [108kB]<br />
Get:12 http://gb.archive.ubuntu.com karmic-updates/universe Sources [26.3kB]<br />
Get:13 http://gb.archive.ubuntu.com karmic-updates/multiverse Packages [6,844B]<br />
Get:14 http://gb.archive.ubuntu.com karmic-updates/multiverse Sources [3,820B]<br />
Ign http://repos.zend.com server/non-free Translation-en_GB<br />
Hit http://repos.zend.com server-testing Release.gpg<br />
Ign http://repos.zend.com server-testing/non-free Translation-en_GB<br />
Hit http://repos.zend.com server Release<br />
Hit http://repos.zend.com server-testing Release<br />
Ign http://repos.zend.com server/non-free Packages<br />
Ign http://repos.zend.com server-testing/non-free Packages<br />
Ign http://repos.zend.com server/non-free Packages<br />
Ign http://repos.zend.com server-testing/non-free Packages<br />
Hit http://repos.zend.com server/non-free Packages<br />
Hit http://repos.zend.com server-testing/non-free Packages<br />
Fetched 569kB in 3s (188kB/s)<br />
Reading package lists&#8230; Done</p>
<p>Reading package lists&#8230; Done<br />
Building dependency tree<br />
Reading state information&#8230; Done<br />
Reading extended state information<br />
Initialising package states&#8230; Done<br />
The following NEW packages will be installed:<br />
  help-zend-server-ce{a}<br />
The following packages will be REMOVED:<br />
  libcurl3{u} php-5.3-code-tracing-zend-server{u} php-5.3-pecl-http-zend-server{u}<br />
The following packages will be upgraded:<br />
  zend-server-ce-php-5.3<br />
1 packages upgraded, 1 newly installed, 3 to remove and 1 not upgraded.<br />
Need to get 3,668kB of archives. After unpacking 13.3MB will be used.<br />
Do you want to continue? [Y/n/?] y<br />
Writing extended state information&#8230; Done<br />
Get:1 http://repos.zend.com server/non-free help-zend-server-ce 5.0.0+b6 [3,666kB]<br />
Get:2 http://repos.zend.com server/non-free zend-server-ce-php-5.3 5.0.0+b2 [1,388B]<br />
Fetched 3,668kB in 0s (7,644kB/s)<br />
(Reading database &#8230; 78500 files and directories currently installed.)<br />
Removing php-5.3-pecl-http-zend-server &#8230;<br />
Removing libcurl3 &#8230;<br />
Removing php-5.3-code-tracing-zend-server &#8230;<br />
Processing triggers for libc-bin &#8230;<br />
ldconfig deferred processing now taking place<br />
Selecting previously deselected package help-zend-server-ce.<br />
(Reading database &#8230; 78474 files and directories currently installed.)<br />
Unpacking help-zend-server-ce (from &#8230;/help-zend-server-ce_5.0.0+b6_all.deb) &#8230;<br />
Preparing to replace zend-server-ce-php-5.3 4.0.5+b5 (using &#8230;/zend-server-ce-php-5.3_5.0.0+b2_all.deb) &#8230;<br />
Stopping Zend Server 5.0 ..</p>
<p>Stopping Zend Server GUI [Lighttpd] [OK]</p>
<p>Zend Server stopped.<br />
Unpacking replacement zend-server-ce-php-5.3 &#8230;<br />
* Starting web server apache2                                                                                                                                   [ OK ]<br />
Setting up help-zend-server-ce (5.0.0+b6) &#8230;<br />
Setting up zend-server-ce-php-5.3 (5.0.0+b2) &#8230;<br />
* Stopping web server apache2                                                                                                                                           &#8230; waiting                                                                                                                                                     [ OK ]<br />
Starting Zend Server 5.0 ..</p>
<p>spawn-fcgi: child spawned successfully: PID: 4704<br />
Starting Zend Server GUI [Lighttpd] [OK]<br />
[ 01.03.2010 22:54:20 SYSTEM] watchdog for lighttpd is running.<br />
[ 01.03.2010 22:54:20 SYSTEM] lighttpd is running.</p>
<p>Zend Server started&#8230;</p>
<p>Reading package lists&#8230; Done<br />
Building dependency tree<br />
Reading state information&#8230; Done<br />
Reading extended state information<br />
Initialising package states&#8230; Done<br />
Writing extended state information&#8230; Done</p>
<p>Current status: 1 update [-1].<br />
Zend Server was successfully installed.</p></div>
<p>After this everything worked as it should!</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/03/03/zend-server-5-0-upgrade-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New ffmpeg builds projects page</title>
		<link>http://www.philbayfield.com/2010/02/24/new-ffmpeg-builds-projects-page/</link>
		<comments>http://www.philbayfield.com/2010/02/24/new-ffmpeg-builds-projects-page/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 23:39:03 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=329</guid>
		<description><![CDATA[I&#8217;ve added a new projects page for my ffmpeg builds for PHP 5.3. The new page also includes a version compiled against PHP 5.3.1 from today&#8217;s new Zend Server release. The new page can be found here.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve added a new projects page for my ffmpeg builds for PHP 5.3.<br />
The new page also includes a version compiled against PHP 5.3.1 from today&#8217;s new Zend Server release.</p>
<p>The new page can be found <a href="http://www.philbayfield.com/projects/php-5-3-ffmpeg-builds/">here</a>.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/02/24/new-ffmpeg-builds-projects-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Server 5 / PHP 5.3.1 released</title>
		<link>http://www.philbayfield.com/2010/02/24/zend-server-5-php-5-3-1-released/</link>
		<comments>http://www.philbayfield.com/2010/02/24/zend-server-5-php-5-3-1-released/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 23:13:34 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=323</guid>
		<description><![CDATA[Today Zend announced the release of Zend Server 5.0, which also includes PHP 5.3.1. I have performed an apt-get update/upgrade on my servers which worked without issue, however the GUI seams to be a bit buggy following the upgrade. Firstly it looks like some of the styles and images are wrong/missing and secondly the restart [...]]]></description>
			<content:encoded><![CDATA[<p>Today Zend announced the release of Zend Server 5.0, which also includes PHP 5.3.1.</p>
<p>I have performed an apt-get update/upgrade on my servers which worked without issue, however the GUI seams to be a bit buggy following the upgrade. Firstly it looks like some of the styles and images are wrong/missing and secondly the restart button doesn&#8217;t seam to work.</p>
<p>For full downloads visit the Zend website: <div style="float: left; text-align: center">
			    <a href="http://www.zend.com/en/products/server/" target="_blank"><img src="http://simple.thumbshots.com/image.aspx?cid=1508&v=1&w=200&h=150&url=http://www.zend.com/en/products/server/" /></a><br /><a href="http://www.zend.com/en/products/server/" target="_blank">http://www.zend.com/en/products/server/</a></div><br style="clear: both" /></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/02/24/zend-server-5-php-5-3-1-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP 5.3 on Ubuntu &#8211; Configuration</title>
		<link>http://www.philbayfield.com/2010/02/13/php-5-3-on-ubuntu-configuration/</link>
		<comments>http://www.philbayfield.com/2010/02/13/php-5-3-on-ubuntu-configuration/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 02:04:30 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=259</guid>
		<description><![CDATA[I&#8217;ve been testing PHP 5.3 on various Ubuntu machines for the last few months (since around the time of my first post). I&#8217;m now running it on a production server for 1 site. I noticed I have been getting a lot of hits on my previous post, mainly from others looking for ways to install [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been testing PHP 5.3 on various Ubuntu machines for the last few months (since around the time of my first post). I&#8217;m now running it on a production server for 1 site.</p>
<p>I noticed I have been getting a lot of hits on my previous post, mainly from others looking for ways to install PHP 5.3 on Ubuntu so I thought it was about time for a follow up.</p>
<p>I&#8217;m using PHP 5.3.0 as this is the latest release for Zend Server, the only 5.3.1 release I&#8217;m aware of is the DotDeb packages. I try to stay clear of DotDeb, mainly because the packages are built for Debian which often causes issues and conflicts. (Ubuntu is based on Debian unstable so can potentially have a completely different version of every package than the Debian stable branch, as well as changes/tweaks/updates from the Ubuntu team.)</p>
<p>Here are the tweaks I have made to enable PHP to run smoothly, it&#8217;s generally quicker to use the Zend web GUI, but these changes can also be done by editing php.ini or adding/removing symbolic links to extensions:</p>
<p><strong>Config changes:</strong></p>
<ul>
<li>Set the default timezone. This seams to be a requirement for PHP 5.3 to have the local timezone set, otherwise we are spammed with about 20 deprecated message when PHP starts. There are a number of ways to do this, the easiest of which is to set the date.timezone config parameter.<br />
<img src="http://www.philbayfield.com/wp-content/uploads/2010/02/php-5.3-config-1.jpg" alt="" title="Configure timezone" width="790" height="74" class="aligncenter size-full wp-image-268" />
</li>
<li>Set the full path to sendmail. The PHP mail() command will fail unless this is done, this is due to a bug in either PHP or Zend Server (which of them, I&#8217;m not sure). Set the sendmail_path config parameter to do this.<br />
<img src="http://www.philbayfield.com/wp-content/uploads/2010/02/php-5.3-config-2.jpg" alt="" title="Configure sendmail" width="790" height="67" class="aligncenter size-full wp-image-270" />
</li>
<li>[Optional] By default the maximum file size you can upload is around 8Mb, if you are likely be using larger files than this, video uploads for example, this change becomes essential. There are 2 options for this setting, both post_max_size and upload_max_filesize should be set.<br />
<img src="http://www.philbayfield.com/wp-content/uploads/2010/02/php-5.3-config-3.jpg" alt="" title="Upload configuration" width="790" height="131" class="aligncenter size-full wp-image-273" />
</li>
<li>[Optional] By default session timeouts are very short (only about 20 mins), I find it&#8217;s usualy a good idea to make it longer.<br />
<img src="http://www.philbayfield.com/wp-content/uploads/2010/02/php-5.3-config-4.jpg" alt="" title="Configure session timeout" width="790" height="67" class="aligncenter size-full wp-image-276" />
</li>
</ul>
<p><strong>Extension changes:</strong></p>
<ul>
<li>By default Zend Server comes with tonnes of database extensions, MySQL, PostGreSQL, MSSQL, ODBC, OCI8, SQLite plus PDO versions of most of the above. There is no point having extensions in there we don&#8217;t need, pick the extension(s) you need and disable the rest.</li>
<li>Disable pcntl on web server environments, as it is apparently not supposed to be used in this way.</li>
</ul>
<p>This is really all is need to get things up and running, shouldn&#8217;t take more than a minute to do.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/02/13/php-5-3-on-ubuntu-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Which RAID is best?</title>
		<link>http://www.philbayfield.com/2009/12/27/which-raid-is-best/</link>
		<comments>http://www.philbayfield.com/2009/12/27/which-raid-is-best/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 16:55:26 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=188</guid>
		<description><![CDATA[There are many sites with various RAID comparisons on and many more making various claims as to which RAID type is the best for various purposes/fastest/etc. The 2.5Tb storage partition on my Xen box decided to pack up recently (or at least Xen decided it no longer wanted to read the partition) so after backing [...]]]></description>
			<content:encoded><![CDATA[<p>There are many sites with various RAID comparisons on and many more making various claims as to which RAID type is the best for various purposes/fastest/etc.</p>
<p>The 2.5Tb storage partition on my Xen box decided to pack up recently (or at least Xen decided it no longer wanted to read the partition) so after backing up the data decided to run some tests.</p>
<p>Drives: 4x Western Digital RE 1Tb</p>
<p><strong>RAID 5:</strong></p>
<p>This was the original configuration of the array, despite having fast drives in my desktop and 1Gbit network the read speeds were slower than expected (around 35Mb/sec).</p>
<p>The hdparm results were inconsistent:</p>
<p> Timing cached reads:   10118 MB in  2.00 seconds = 5064.59 MB/sec<br />
 Timing buffered disk reads:  224 MB in  3.02 seconds =  74.24 MB/sec</p>
<p> Timing cached reads:   10020 MB in  2.00 seconds = 5016.71 MB/sec<br />
 Timing buffered disk reads:  148 MB in  3.03 seconds =  48.83 MB/sec</p>
<p> Timing cached reads:   10126 MB in  2.00 seconds = 5068.86 MB/sec<br />
 Timing buffered disk reads:  200 MB in  3.03 seconds =  65.94 MB/sec</p>
<p> Timing cached reads:   10086 MB in  2.00 seconds = 5049.90 MB/sec<br />
 Timing buffered disk reads:  234 MB in  3.02 seconds =  77.55 MB/sec</p>
<p> Timing cached reads:   10042 MB in  2.00 seconds = 5027.45 MB/sec<br />
 Timing buffered disk reads:  210 MB in  3.01 seconds =  69.80 MB/sec</p>
<p>Average over the 5 tests: 67.27 Mb/sec</p>
<p><strong>RAID 10:</strong></p>
<p>As an alternative I switched the array to RAID 10, the downside of this configuration is that there is 1Tb less space than RAID 5.</p>
<p> Timing cached reads:   10170 MB in  2.00 seconds = 5091.34 MB/sec<br />
 Timing buffered disk reads:  320 MB in  3.01 seconds = 106.46 MB/sec</p>
<p> Timing cached reads:   10094 MB in  2.00 seconds = 5052.71 MB/sec<br />
 Timing buffered disk reads:  316 MB in  3.02 seconds = 104.59 MB/sec</p>
<p> Timing cached reads:   10072 MB in  2.00 seconds = 5041.96 MB/sec<br />
 Timing buffered disk reads:  314 MB in  3.01 seconds = 104.29 MB/sec</p>
<p>RAID 10 results are much more consistent.<br />
Average over the 3 tests:  105.11 Mb/sec</p>
<p><strong>RAID 6:</strong></p>
<p>Another configuration offering 2 disk redundancy.</p>
<p> Timing cached reads:   10172 MB in  2.00 seconds = 5091.87 MB/sec<br />
 Timing buffered disk reads:  202 MB in  3.01 seconds =  67.06 MB/sec</p>
<p> Timing cached reads:   10052 MB in  2.00 seconds = 5031.76 MB/sec<br />
 Timing buffered disk reads:  202 MB in  3.01 seconds =  67.18 MB/sec</p>
<p> Timing cached reads:   10102 MB in  2.00 seconds = 5057.17 MB/sec<br />
 Timing buffered disk reads:  206 MB in  3.00 seconds =  68.59 MB/sec</p>
<p>RAID 6 results are also fairly consistent.<br />
Average over the 3 tests:  67.61 Mb/sec</p>
<p>It seams that with this configuration that RAID 5/6 perform at roughly the same speed, however RAID 10 seams to win out on the speed test with over 50% improvement over RAID 5/6.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2009/12/27/which-raid-is-best/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
