码迷,mamicode.com
首页 > Web开发 > 详细

webshow

时间:2014-12-08 20:59:33      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:android   blog   http   ar   os   sp   for   on   div   

Apache+PHP+MySQL

1. Apache

http://httpd.apache.org/

Windows Binary:

http://www.apachelounge.com/download/

2. PHP

http://php.net/

3. MySQL

http://www.mysql.com/downloads/

4. phpMyAdmin

http://www.phpmyadmin.net/

 

 

1、  apr-1.4.6.tar.gz

tar xzf apr-1.4.6.tar.gz

./configure –prefix=/usr/local/apr

make && make install

(如果上面安装过程出现/bin/rm: cannot remove `libtoolT’: No such file or directory这个问题,解决办法 vi configure 找到$RM “$cfgfile”这行删掉)

 

 

 

 

2、  apr-util-1.5.1.tar.gz

tar xzf apr-util-1.5.1.tar.gz

.configure –with-apr=/usr/local/apr

make && make install

 

3、  prce

tar xzf pcre-8.32.tar.gz

./configure –prefix=/usr/local/prce

make && make install 

 

4、  apache

tar xzf httpd-2.4.3.tar.gz

./configure -prefix=/usr/local/apache --with-apr=/usr/local/apr/ --with-pcre=/usr/local/pcre/

(编译apache 可能出现

checking for pcre-config... false

configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/

就直接安装centos的源包 yum install pcre-devel -y

)

make && make install

 

 cd modules

 make 

 make install

 

 

 

webshow

标签:android   blog   http   ar   os   sp   for   on   div   

原文地址:http://www.cnblogs.com/zhizhong/p/4151794.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!