centOS下编译安装php


点击访问原文
您还可以加入全栈技术交流群(QQ群号:254842154)


之前编译安装php时折腾了很久,很是恼火,现在终于理顺了。整理一下。

1、安装依赖文件

yum groupinstall "Development tools"

假如不安装这些开发库,到时候需要自己安装好多东西

其他依赖文件

yum install libxml2-devel gd-devel libmcrypt-devel libcurl-devel openssl-devel

2、安装php

wget http://us3.php.net/get/php-5.5.20.tar.gz/from/cn2.php.net/mirror

tar -xvf php-5.5.20.tar.gz
cd php-5.5.20

编译,假如提示

configure: error: mcrypt.h not found. Please reinstall libmcrypt

则需要安装libmcrypt

wget ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/attic/libmcrypt/libmcrypt-2.5.7.tar.gz
tar -zxvf libmcrypt-2.5.7.tar.gz
cd libmcrypt-2.5.7
./configure prefix=/usr/local/libmcrypt/ 

继续编译php,安装到目录/usr/local/php

假如没有报错,不需要with-mcrypt=/usr/local/libmcrypt/ 这个编译选项

./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --disable-cli --enable-shared --with-libxml-dir --with-gd --with-openssl --enable-mbstring --with-mysqli --with-mysql --enable-opcache --enable-mysqlnd --enable-zip --enable-fpm --enable-fastcgi --with-zlib-dir --with-pdo-mysql --with-jpeg-dir --with-freetype-dir --with-curl --without-pdo-sqlite --without-sqlite3 --with-mcrypt=/usr/local/libmcrypt/ 

make
make install

假如后续可能要安装nginx,则需要--enable-fpm --enable-fastcgi 这两个编译选项,nginx是通过php-fpm来和php通信解析php的,--enable-fpm --enable-fastcgi正是为了安装php-fpm。从php5.3开始集成了php-fpm。之前的版本没有,需要单独安装。

假如人品好,应该就安装成功了。

//拷贝php.ini

cp php.ini-production /usr/local/php/lib/php.ini

3、与apache关联

查看apache的配置文件是否已经开启关联(一般情况下,安装完php后,会开启,假如没有开启则开启)

vim /usr/local/apache/conf/httpd.conf
LoadModule php5_module modules/libphp5.so

加入以下代码:


SetHandler application/x-httpd-php

更改一下代码:

DirectoryIndex index.html index.shtml index.cgi index.php index.phtml index.php3

找到AddType处,并添加以下2行:

AddType application/x-httpd-php .php .php3 .phtml .inc
AddType application/x-httpd-php-source .phps

4、测试php

    vim /usr/local/apache/htdocs/info.php

输入代码:


重启apache

/etc/init.d/httpd restart

访问:127.0.0.1/info.php 即可看到php的安装信息,enjoy it!


参考

1、http://www.onepx.com/centos-php-55.html
2、http://blog.163.com/yxba_02/blog/static/1875576201272583532588/

你可能感兴趣的:(centOS下编译安装php)