install php with php-fpm
From WebHostingNeeds.com
cd /usr/local/src wget http://php-fpm.org/downloads/php-5.2.8-fpm-0.5.10.diff.gz wget http://us2.php.net/get/php-5.2.8.tar.gz/from/us.php.net/mirror tar -zxvf php-5.2.8.tar.gz gzip -cd php-5.2.8-fpm-0.5.10.diff.gz | patch -d php-5.2.8 -p1 cd php-5.2.8 mkdir /usr/local/nginx-php ./configure -prefix=/usr/local/nginx-php -enable-fastcgi -enable-fpm -with-mcrypt -with-zlib -enable-mbstring -with-openssl -with-mysql -with-mysqli -with-gd -with-jpeg-dir -enable-gd-native-ttf -without-sqlite -disable-pdo -disable-reflection -with-curl -with-curlwrappers -enable-inline-optimization -disable-debug -disable-ipv6 make make install
I have faced problem with curl, so i install url from source as per Install php from source
- configure: error: XML configuration could not be found
- configure: error: Please reinstall the libcurl distribution
vi /usr/local/nginx-php/etc/php-fpm.conf
Find
Unix user of processes <!-- <value name="user">nobody</value> --> Unix group of processes <!-- <value name="group">nogroup</value> -->
add below
<value name="user">nginx</value> <value name="group">nginx</value>
/usr/local/nginx-php/sbin/php-fpm start
[email protected]:/usr/local/nginx-php/sbin# netstat -an|grep :9000 tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN [email protected]:/usr/local/nginx-php/sbin#