标签:生成文件 https src 下载地址 gconf blog pkg 下载 echo
官方文档:https://info.varnish-software.com/the-varnish-bookVarnish是一款高性能的开源HTTP加速器
系统centos7
源码包下载地址:http://varnish-cache.org/releases/
这里使用的是varnish-5.1.3.tgz
安装epel仓库
yum install -y epel-release.noarch
yum makecache fast && yum repolist enabled
安装依赖包
yum install -y autoconf automake jemalloc-devel libedit-devel libtool ncurses-devel pcre-devel pkgconfig python-docutils python-sphinx graphviz
下载(wget下载不动,用浏览器或者迅雷下载)
cd
wget http://varnish-cache.org/_downloads/varnish-5.1.3.tgz
编译安装
tar axf varnish-5.1.3.tgz
cd varnish-5.1.3
sh autogen.sh
./configure --prefix=/usr/local/varnish
make && make check && make install && echo $?
安装完成后会在/usr/local/varnish下生成文件
配置文件
mkdir config
cp ./share/doc/varnish/example.vcl config/default.vcl
编辑
vim config/default.vcl
标签:生成文件 https src 下载地址 gconf blog pkg 下载 echo
原文地址:http://blog.51cto.com/13323775/2070317