操作系统:RHEL 6.5
相关软件包:百度网盘 密码:bty7
本机系统镜像挂载至/mnt/cdrom/ (安装依赖包时使用)
yum install libjpeg-devel libpng-devel freetype-devel zlib-devel gettext-devel libXpm-devel libxml2-devel fontconfig-devel openssl-devel bzip2-devel -y
tar xzvf gd-2.0.35.tar.gz -C /opt
3.配置、编译并安装gd
#进入gd目录下
cd /opt/gd/2.0.35
#配置
./configure --prefix=/usr/local/gd
#编译并安装
make && make install
tar xjvf php-5.4.5.tar.bz2 -C /opt
进入php目录下
cd /opt/php-5.4.5/#配置
./configure \
--prefix=/usr/local/php \
--with-apxs2=/usr/local/apache/bin/apxs \
--with-gd \
--with-mysql=/usr/local/mysql \
--with-config-file-path=/etc \
--enable-sqlite-utf8 \
--with-zlib-dir \
--with-libxml-dir \
--with-freetype-dir \
--with-jpeg-dir \
--with-png-dir \
--with-ttf \
--with-iconv \
--with-openssl \
--with-gettext \
--enable-mbstring \
--enable-gd-native-ttf \
--enable-gd-jis-conv \
--enable-static \
--enable-zend-multibyte \
--enable-inline-optimization \
--enable-sockets \
--enable-soap \
--enable-ftp \
--disable-ipv6#编译并安装
make && make install
解决make过程中的错误(此步骤当出现make错误是使用,无错误,请略过)
vi /usr/local/gd/include/gd_io.h
void (gd_free) (struct gdIOCtx );
void (*data); //添加//
}
gdIOCtx;cp php.ini-production /etc/php.ini #优化调整PHP
vim /usr/local/apache/conf/httpd.conf
#找到 AddType application/x-gzip .gz .tgz 在下面添加如下内容
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps#检查是否存在,查询不到请调到第5步重新安装
LoadModule php5_module modules/libphp5.so //必须存在,才可以#添加index.php
DirectoryIndex index.php index.html //调整首页文件设置
service httpd restart
#进入网站目录下
cd /usr/local/apache/htdocs/
#创建index.php文件
vim index.php
添加以下内容至index.php文件中<?php
phpinfo();
?>
查看php测试页内容,如下图,代表php已经安装完毕,Apache已支持php。
原文地址:http://blog.51cto.com/10316297/2114763