`
angellin0
  • 浏览: 115440 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

Varnish安装No package 'libpcre' found

 
阅读更多
安装varnish,当configure时报错:
configure: WARNING: xsltproc not found ?not building documentation
checking for rst2man... no
checking for rst2man.py... no
configure: WARNING: rst2man not found ?not building man pages
checking for clock_gettime in -lrt... yes
checking for dlopen in -ldl... yes
checking for library containing initscr... no
configure: WARNING: curses not found; some tools will not be built
checking for library containing pthread_create... -lpthread
checking for socket in -lsocket... no
checking for getaddrinfo in -lnsl... yes
checking for cos in -lm... yes
checking for pkg-config... no
checking for PCRE... no
configure: error: in `/root/varnish-2.1.5':
configure: error: The pkg-config script could not be found or is too old.  Make sure it
is in your PATH or set the PKG_CONFIG environment variable to the full
path to pkg-config.

Alternatively, you may set the environment variables PCRE_CFLAGS
and PCRE_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

解决方法:
sudo apt-get install xsltproc  rst2man libncurses5-dev


checking for library containing pthread_create... -lpthread 
checking for socket in -lsocket... no 
checking for getaddrinfo in -lnsl... yes 
checking for cos in -lm... yes 
checking for pkg-config... /usr/bin/pkg-config 
checking pkg-config is at least version 0.9.0... yes 
checking for PCRE... no 
configure: error: Package requirements (libpcre) were not met: 

No package 'libpcre' found 

Consider adjusting the PKG_CONFIG_PATH environment variable if you 
installed software in a non-standard prefix. 

Alternatively, you may set the environment variables PCRE_CFLAGS 
and PCRE_LIBS to avoid the need to call pkg-config. 
See the pkg-config man page for more details. 


解决方法:
sudo apt-get install libpcre3-dev

export PKG_CONFIG_PATH=/usr/local/lib

再重新编译即可。
分享到:
评论

相关推荐

    varnish安装维护手册

    以下是对Varnish安装维护的一些关键知识点的详细解释: 1. **安装过程**: - 在CentOS系统中,需要通过`yum install ncurses-devel`来安装必要的依赖包。 - 在Ubuntu系统中,使用`apt-get install libncurses5-...

    varnish安装配置[参照].pdf

    在安装Varnish之前,需要确保系统中已经安装了libpcre库,因为Varnish在编译时依赖这个库。如果提示缺少libpcre,可以通过包管理器(如`apt-get`或`yum`)安装,或者手动编译安装。在上述示例中,由于已经安装了pcre...

    varnish安装配置[归类].pdf

    以下是关于Varnish 3.0.2的安装配置步骤以及关键配置选项的详细解释: ### 安装步骤: 1. 首先,从官方仓库下载Varnish源代码包,例如这里使用的是`varnish-3.0.2.tar.gz`。 2. 解压缩下载的源代码包:`tar zxvf ...

    Varnish安装配置

    Varnish是一款高性能的开源HTTP加速器,挪威最大的在线报纸 Verdens Gang 使用3台Varnish代替了原来的12台Squid,性能比以前更好。 本文档详细讲解了varnish的安装配置过程以及配置文件详解

    varnish安装与配置[整理].pdf

    varnish安装与配置[整理].pdf

    linux-varnish配置

    一、安装Varnish 首先,确保你的Linux系统是基于Debian或Ubuntu,因为Varnish通常在这些系统上有预编译的包。你可以使用apt-get命令来安装: ```bash sudo apt-get update sudo apt-get install varnish ``` 如果...

    基于Linux的Varnish的安装脚本.zip

    本压缩包提供的"基于Linux的Varnish的安装脚本.zip"包含了安装Varnish所需的步骤和配置,对于需要搭建高流量网站或优化现有网站性能的用户来说,这是一个非常实用的工具。 在Linux环境下安装Varnish主要包括以下几...

    Varnish-2_安装与配置.pdf

    Varnish安装时可以指定一个安装路径,通常是在Linux系统上通过./configure命令指定,例如安装到/opt/varnish目录下。下载地址通常位于Sourceforge或官方网站,Varnish 2.1.2版本可以通过tar.gz格式的压缩包进行安装...

    基于Linux的Varnish的安装脚本_Varnish_Install.zip

    基于Linux的Varnish的安装脚本_Varnish_Install

    Varnish3.0.5的安装配置.txt

    ### Varnish 3.0.5 的安装与配置 #### 一、Varnish简介 Varnish是一款高性能的HTTP应用加速器,主要用于网站缓存以提高网站访问速度及服务器响应性能。它通过将频繁访问的数据缓存到内存中,从而减少后端服务器的...

    varnish+lighttpd配置

    在Ubuntu系统中,可以使用以下命令安装Varnish: ``` sudo apt-get update sudo apt-get install varnish ``` 2. **配置Varnish** 配置Varnish的主要工作是编写VCL文件。默认的VCL文件位于`/etc/varnish/...

    varnish.tar.bz2

    本资源包含Varnish的安装文件varnish-3.0.5-1.el6.x86_64.rpm 和varnish-libs-3.0.5-1.el6.x86_64.rpm,是搭建cdn的高性能HTTP加速器Varnish服务器必需的安装包,下载后解压即可,具体安装配置过程清移步我的博客

    varnish-3.0.7.tgz 源码安装包

    下面将详细介绍Varnish的原理、功能以及如何安装和使用3.0.7版本。 **Varnish基础概念** Varnish是一个开源的反向代理服务器,它的主要作用是接收HTTP请求,并根据预设的策略缓存网页内容。当后续的请求相同内容时...

    Varnish权威指南(中文)

    2. 安装与配置:详细步骤指导如何在各种操作系统上安装Varnish,并进行基本的配置。 3. 高级VCL:探索复杂的缓存策略,如基于URL、Cookie或HTTP头的缓存控制,以及如何利用VCL实现自定义逻辑。 4. 性能调优:学习...

    varnish-5.2.1.tar.gz

    为了在本地系统上运行Varnish,你需要先安装必要的依赖(如编译工具链和库),然后运行配置脚本,编译源代码,最后进行安装。安装完成后,可以启动Varnish服务,并通过VCL配置文件定制其行为。同时,Varnish还提供了...

Global site tag (gtag.js) - Google Analytics