在CentOS6.5系统下编译安装LAMP(httpd2.4+MySQL5.6+PHP(3)

#解压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环境已经好了。

在CentOS6.5系统下编译安装LAMP(httpd2.4+MySQL5.6+PHP

到此,整个lamp环境就编译安装完成了。

下面关于LAMP相关的内容你可能也喜欢

LAMP平台安装Xcache和Memcached加速网站运行   

CentOS 7下搭建LAMP平台环境 

CentOS 6.5系统安装配置LAMP(Apache+PHP5+MySQL)服务器环境

Ubuntu 14.04 配置 LAMP+phpMyAdmin PHP(5.5.9)开发环境 

Ubuntu 14.10 下安装 LAMP 服务图文详解 

LAMP结合NFS构建小型博客站点 

CentOS7下安装部署LAMP环境 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/0646084f17b3f3acf9445ca19b1cda9d.html