Install NginX and PHP 5.3.3 with PHP-FPM, MySQL and APC
Submitted by Vlad on Sat, 07/24/2010 - 08:52As of July 22nd 2010 PHP-FPM is a part of PHP 5.3.3 core's trunk. FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some useful additional features. In this tutorial I will compile NginX 0.8.47 and PHP 5.3.3 with FPM, MySQL, Suhosin, APC and Imagick on Ubuntu 10.04.
I will not explain how to configure NginX here. You can find a lot of resources about that on the nginx wiki or my previus post Install NginX with PHP-FPM in Ubuntu 10.04.
Jetty Powered MultiCore Apache Solr and Drupal in Ubuntu 10.04
Submitted by Vlad on Tue, 06/29/2010 - 14:17My previous article explains how to install Tomcat 6 in Ubuntu and deploy the Apache Solr application. If you preffer to deploy it under Jetty, the following steps explain how to install jetty and prepare a multi coresetup of Solr:
Apache Solr, Tomcat 6 and Drupal in Ubuntu 10.04
Submitted by Vlad on Fri, 06/25/2010 - 15:08Solr is the popular, blazing fast open source enterprise search platform from the Apache Lucene project. Its major features include powerful full-text search, hit highlighting, faceted search, dynamic clustering, database integration, and rich document (e.g., Word, PDF) handling. Solr is highly scalable, providing distributed search and index replication, and it powers the search and navigation features of many of the world's largest internet sites.
Install NginX with PHP-FPM in Ubuntu 10.04
Submitted by Vlad on Thu, 06/24/2010 - 10:52If you want a web server with a very small memory footprint then you should think of trying NginX. It's very light weight and in some situations it performs much better than Apache (like serving static content). Many websites, use it as a frontend to apache, so that all the static content is served by NginX and the rest is proxied to a backend Apache. It can also handle php files by itself with the help of fast-cgi, spawn-fcgi or php-fpm. Php-Fpm is not as mature as Apache's mod_php, but it performs about the same.
So now let's install NginX with a php-fpm proxy.
Install necessary software
Submitted by Vlad on Thu, 06/24/2010 - 09:53In order to configure your network adapter with the static ip provided, you have to modify the following file:
vi /etc/network/interfaces
And add/modify the following lines:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address YOUR.EXTENAL.IP.ADDRESS
netmask 255.255.255.0
gateway YOUR.GATEWAYSetup you host name:
vi /etc/hosts
Sould contain:


