apache需要apr,编译中间的时候出现libtool:line990:g++:commandnotfound,执行yum-yinstallgcc+gcc-c++编译重新安装gcc就ok了
分类:
其他好文 时间:
2014-11-19 02:18:08
阅读次数:
178
要使用httpd模块,需要在脚本开头添加: require "httpd" httpd.pairs(apr_table) 用以遍历apr_tablefor key, value in httpd.pairs(t) do body end 例: 1 require "httpd" 2 loca...
分类:
Web程序 时间:
2014-11-18 00:20:57
阅读次数:
195
同事安装apache报错error:APRnotfound.Pleasereadthedocumentationapache版本httpd-2.4.10.tar.gz解决方法如下:wgethttp://archive.apache.org/dist/apr/apr-1.4.5.tar.gztarfxzapr-1.4.5.tar.gzcdapr-1.4.5./configure--prefix=/usr/local/aprmake&&makeinstallwgeth..
分类:
Web程序 时间:
2014-11-14 18:07:26
阅读次数:
189
一、下载Apache2.4及依赖包Apache官网下载:http://apache.fayea.com/apache-mirror/httpd/由于Apache依赖于APR、APR-Util和PCRE,所以需要下载:APR+APR-Util:http://mirror.bjtu.edu.cn/apache//apr/PCRE:http://sourceforge.net/projects/pcre/files/pcre/在此,笔者使用..
分类:
Web程序 时间:
2014-11-13 19:07:59
阅读次数:
309
一、安装Apache 若要安装apache服务器软件,需要安装以下几个依赖软件 apr-1.4.6.tar.gz 下载地址:http://apr.apache.org/ apr-util-1.4.1.tar.gz 下载地址:http://apr.apache.org/ pcre-8.20.t...
分类:
数据库 时间:
2014-11-13 12:20:34
阅读次数:
212
1、安装prce解决依赖关系#yum-yinstallpcre-devel2、编译安装apr-1.5.1:#./configure--prefix=/usr/local/apr#make&&makeinstall3、编译安装apr-util-1.5.4#./configure--prefix=/usr/local/apr-util--with-apr=/usr/local/apr/#make&&makeinstall4、编译安装..
分类:
Web程序 时间:
2014-11-11 02:09:10
阅读次数:
252
系统:CentOS6.5_64软件:httpd-2.4.10.tar.bz2依赖:openssl-1.0.1j.tar.gz、apr-1.5.1.tar.bz2、apr-util-1.5.4.tar.bz2、pcre-devel下载地址:http://www.openssl.org/source/openssl下载地址:http://httpd.apache.org/download.cgihttpd下载地下:http://apr.apache.org/..
分类:
Web程序 时间:
2014-11-10 15:42:54
阅读次数:
358
在安装Apache的httpd的时候经常会遇到:configure: error: APR not found . Please read the documentation.configure: error: APR-util not found . Please read the documen...
分类:
Web程序 时间:
2014-11-07 14:36:51
阅读次数:
217
一、下载? 1、登录http://httpd.apache.org。? 2、下载2.4.7版本。 #cd /opt
#wget http://mirror.esocc.com/apache//httpd/httpd-2.4.7.tar.gz 二、安装? 1、安装apr、apr-util、pcre 登录http://www.apac...
分类:
Web程序 时间:
2014-11-03 19:31:36
阅读次数:
203
安装前设置:1. 安装wget:yum-yinstallwget2. 安装程序make环境:yum install gcc gcc-c++ autoconf automake(1)安装apr,这是 Apache 为了提升 Tomcat 的性能搞的一套本地化 Socket, Thread, IO 组件...
分类:
系统相关 时间:
2014-10-30 19:03:17
阅读次数:
335