码迷,mamicode.com
首页 >  
搜索关键字:pcre    ( 1502个结果
PCRE安装
最近在学习nginx,nginx rewrite依赖于PCRE库,所以需要在linux系统中编译安装PCRE库。具体步骤如下:1.下载PCRE包首先去官网下载pcre的安装包如果通过FTP的方式,下载地址为:ftp://ftp.csx.cam.ac.uk/pub/software/programmi...
分类:其他好文   时间:2014-08-25 21:03:34    阅读次数:591
CentOS6.5 安装snort
本机CentOS6.5最大化安装,以下安装所需组件也是最大化安装之后仍需自己安装的.1.安装libpcap与libpcap-develyum -y install libpcap*2.安装libpcreyum -y install yum install pcre*3.安装libdnet推荐先添加e...
分类:其他好文   时间:2014-08-23 22:52:41    阅读次数:220
C正则库做DNS域名验证时的性能对比
本文对C的正则库regex和pcre在做域名验证的场景下做评测。验证DNS域名的正则表达式为:"^[0-9a-zA-Z_-]+(\\.[0-9a-zA-Z_-]+)*(\\.[a-zA-Z]{2,}\\.)$"对于正常DNS请求日志中的6177578条日志做正则验证处理。1,pcre评测所用的pcr...
分类:其他好文   时间:2014-08-21 14:41:37    阅读次数:248
Centos安装nginx服务
到http://nginx.org/en/download.html下载最新版本的Nginx并安装. 一 下载并安装pcre库ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/    tar zxvf pcre-8.30.tar.gz    ./configure     make    make install 二 安装opens...
分类:其他好文   时间:2014-08-16 17:10:50    阅读次数:412
nginx 安装
nginx 安装 (http://nginx.org)一、安装nginx时必须先安装相应的编译工具yum -y install gcc gcc-c++ autoconf automakeyum -y install zlib zlib-devel openssl openssl-devel pcre...
分类:其他好文   时间:2014-08-14 10:29:58    阅读次数:222
LAMP平台 ,MySQL、httpd、php安装
LAMP平台编译安装apache解决依赖关系安装apr编译安装apr-util安装pcre-devel软件包。使用命令yuminstallpcre-devel-y编译安装httpd-2.4.9#tarxfhttpd-2.4.9.tar.bz2#cdhttpd-2.4.9#./configure--prefix=/usr/local/apache--sysconfdir=/etc/httpd2.4--enable-so--enable-ssl--e..
分类:数据库   时间:2014-08-14 03:52:38    阅读次数:400
Nginx之基本配置
Nginx1.高性能的HTTPServer,支持高达20000并发访问2.反向代理服务器,给网站加速3.做为前端一个负载均衡器========================================================一、准备工作#servicehttpdstop#chkconfighttpdoff所需的软件:开发库,openssl-devel二、部署Nginx1.pcre:支..
分类:其他好文   时间:2014-08-13 03:47:46    阅读次数:217
<摘录>perl正则表达式中的元字符、转义字符、量词及匹配方式
Linux平台上被广泛使用的正则表达式库PCRE - Perl-compatible regular expressions,从其名字即可知道,PCRE提供的是一套与Perl中相兼容的正则表达式。元字符(Meta-character)'\' :在任何元字符前面加上反斜线,就会使它失去元字符的特殊作....
分类:其他好文   时间:2014-08-11 20:26:42    阅读次数:286
源码编译安装httpd2.4及虚拟主机
1.安装apr,apr-utils,pcre-devel和openssl-devel[root@wh1~]#tarxfapr-1.5.1.tar.gz [root@wh1~]#tarxfapr-util-1.5.3.tar.gz [root@wh1apr-1.5.1]#cdapr-1.5.1 [root@wh1apr-1.5.1]#./configure--prefix=/usr/local/apr [root@wh1apr-1.5.1]#make&&makeinstall [roo..
分类:其他好文   时间:2014-08-11 03:10:02    阅读次数:485
proxy
要安装Nginx,至少需要先安装pcre, zlib、ssl1. PCRE(Perl Compatible Regular Expressions)这是一个Perl库,用来实现重写rewrite的目的//cmdyum -y install gcc gcc-c++cd /usr/local/wget ...
分类:其他好文   时间:2014-08-09 23:13:39    阅读次数:790
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!