簡單安裝php-fpm,僅供參考。
1:下載下傳最新版本的php:http://www.php.org
2:解壓安裝
tar -jxvf php-5.3.5.tar.bz2
cd php-5.3.5
./configure --prefix=/usr/local/php-fpm --enable-fpm --enable-mbstring=all --enable-sockets
--enable-ftp --enable-pcntl --with-mysql=mysqlnd--with-pdo-mysql=mysqlnd
--with-mcrypt --with-freetype-dir --with-jpeg-dir --with-png-dir
--with-gd --enable-gd-native-ttf --with-curl --with-zlib
make && make install
3:修改配置
複制代碼 代碼如下:
cp php.ini-production /usr/local/php-fpm/lib/php.ini
cd /usr/local/php-fpm/etc/
cp php-fpm.conf.default php-fpm.conf
安裝完成。