#解压php
tar zxvf php-5.4.25.tar.gz
#进入解压出来的php目录
cd php-5.4.25
./configure --prefix=/usr/local/php --with-config-file-path=/etc --with-apxs2=/usr/local/apache/bin/apxs --with-mysql --with-mysqli --with-libxml-dir --with-png-dir --with-jpeg-dir --with-freetype-dir --with-gd --with-zlib-dir --with-mcrypt --enable-soap --enable-mbstring=all --enable-sockets --enable-ftp --enable-zip --with-gettext
#编译安装php5.4
make && make install
#设置环境变量
vi /etc/profile
#在末尾添加以下内容
PATH=/usr/local/php/bin:$PATH
export PATH
#让刚才的修改生效
source /etc/profile
#复制配置文件到etc目录
cp /usr/src/php-5.4.25/php.ini-production /etc/php.ini
#修改默认时区
vi /etc/php.ini
date.timezone =Asia/Shanghai
#让httpd支持php解析
vi /etc/httpd/httpd.conf
#找到这行
AddType application/x-gzip .gz .tgz
#添加这一句
AddType application/x-httpd-php .php
#找到以下这句,在后面添加index.php
DirectoryIndex index.html
DirectoryIndex index.html index.php
#最后添加一个测试文件到/usr/local/apache/htdocs/phpinfo.php,看看httpd能否输出php页面
如果能看到以下页面,说明你的lamp环境已经好了。
到此,整个lamp环境就编译安装完成了。
下面关于LAMP相关的内容你可能也喜欢:
LAMP平台安装Xcache和Memcached加速网站运行
CentOS 6.5系统安装配置LAMP(Apache+PHP5+MySQL)服务器环境
Ubuntu 14.04 配置 LAMP+phpMyAdmin PHP(5.5.9)开发环境