当前位置:Gxlcms > PHP教程 > centOS下编译安装php

centOS下编译安装php

时间:2021-07-01 10:21:17 帮助过:7人阅读

接上一篇文章,centOS下编译安装apache

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

1、安装依赖文件
yum groupinstall "Development tools"

假如不安装这些开发库,到时候需要自己安装好多东西
其他依赖文件
yum install libxml2-devel gd-devel libmcrypt-devel libcurl-devel openssl-devel
假如提示
2、安装php
wget http://us3.php.com/get/php-5.5.20.tar.gz/from/cn2.php.com/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 --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
假如人品好,应该就安装成功了。


//拷贝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
输入代码:
phpinfo();
?>
重启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,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行