优选主流主机商
任何主机均需规范使用

Ubuntu系统下LNMP环境搭建全攻略:一步步教你安装PHP图文详解

同样的先下载PHP源码包,键入“cd/usr/local/src”回车并执行“sudowgethttp://cn2.php.net/distributions/php-5.3.8.tar.gz”下载PHP源码包。

下载完后,解压文件,输入“sudotarzxvfphp-5.3.8.tar.gz”回车。

解压后进入php目录中,“cdphp-5.3.8”回车,并执行“sudo./configure–prefix=/usr/local/server/php–with-config-file-path=/usr/local/server/php–enable-mbstring–enable-ftp–with-gd–with-jpeg-dir=/usr–with-png-dir=/usr–with-mysql=mysqlnd–with-mysqli=mysqlnd–with-pdo-mysql=mysqlnd–with-pear–enable-sockets–with-freetype-dir=/usr–enable-gd-native-ttf–with-zlib–with-libxml-dir=/usr–with-xmlrpc–enable-zip–enable-fpm–enable-fpm–enable-xml–enable-sockets–with-gd–with-zlib–with-iconv–enable-zip–with-freetype-dir=/usr/lib/–enable-soap–enable-pcntl–enable-cli”回车。

出现下图就可以继续进行下一步。

再接着键入“sudomake&&makeinstall”。

等待操作完成之后,复制启动脚本。输入“sudocp./sapi/fpm/init.d.php-fpm/etc/init.d/php-fpm”回车,接着再执行“sudochmod+x/etc/init.d/php-fpm”。

修改PHP-FPM配置文件,依次执行“cd/usr/local/server/php/etc”、“mvphp-fpm.conf.defaultphp-fpm.conf”、“viphp-fpm.conf”编辑配置文件。

去掉25行前的分号。

修改第131和132行的user和group为当前用户(安装系统时设置的帐户名)。

去掉161、166、171、176行前面的分号,如下图。

保存并退出。

PHP-FPM启动及退出分别使用命令“/etc/init.d/php-fpmstart”与“/etc/init.d/php-fpmstop”。

未经允许不得转载:搬瓦工中文网 » Ubuntu系统下LNMP环境搭建全攻略:一步步教你安装PHP图文详解