执行命令:
./configure --prefix=/usr/local/php --enable-fpm --with-mcryp=/usr/local/libmcrypt --enable-mbstring --disable-pdo --with-curl --disable-debug --disable-rpath --enable-inline-optimization --with-bz2 --with-zlib --enable-sockets --enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex --with-mhash --enable-zip --with-pcre-regex --with-mysql --with-mysqli然后输入命令:
make all install以上就完成了php-fpm的安装。
进入php目录
cd /usr/local/php将对应的配置文件copy
执行命令:
修改nginx配置以支持php-fpm
vim /usr/local/nginx/conf/nginx.conf做如下修改:
location / { root html; index index.html index.htm index.php; } location ~ .php$ { root /usr/local/nginx/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }修改配置文件后重启nginx
nginx -s reload在/usr/local/nginx/html下创建index.php文件,输入如下内容
<?php echo phpinfo(); ?>启动php-fpm
执行命令:
/usr/local/php/sbin/php-fpm访问ip/index.php出现php配置,成功搞定。
Ubuntu 14.04 LTS 安装 LNMP Nginx\PHP5 (PHP-FPM)\MySQL
Ubuntu 13.04 安装 LAMP\Vsftpd\Webmin\phpMyAdmin 服务及设置