第一步 安装3台nginx服务器
地址为192.168.1.35,192.168.1.36,192.168.1.37
安装varnish的服务器IP为192.168.1.33
第二步获取安装varnish所需要的包
编译 安装varnish2.0需要pcre库,pcre库为了兼容正则表达式
下载地址http://down.51cto.com/data/2315007
#tar xvf pcre-8.39.tar.gz
#cd pcre-8.39
# ./configure --prefix=/usr/local/pcre
#make && make install
第三步 安装varnish
下载地址http://down.51cto.com/data/456650
# tar xvf varnish-2.1.2.tar.gz
# cd varnish-2.1.2
这一步是指定varnish查找pcre库的位置,根据你安装的位置自行决定
# export PKG_CONFIG_PATH=/usr/local/pcre/lib/pkgconfig
# ./configure --prefix=/usr/local/varnish --enable-dependency-tracking --enable-debugging-symbols --enable-developer-warnings
#make && make install
#cp redhat/varnish.initrc /etc/init.d/varnish
# cp redhat/varnish.sysconfig /etc/sysconfig/varnish
第四步 修改配置文件
下载地址http://down.51cto.com/data/2315096
最简单的 vcl配置文件,下载后解压出来,放入配置文件夹,例如/usr/local/varnish/etc
根据自己服务器真实情况修改配置
第五步 启动varnished
/usr/local/varnish/sbin/varnishd -f /usr/local/varnish/etc/vcl.conf
第六步 测试是否缓存命中
访问http://192.168.1.33查看 请求响应头
是否包含
x-varnish: 1807036043 1807036035
Age: 63
Via: 1.1 varnish
Connection: keep-alive
X-Cache: HIT from www.furyamber.com
如果已有,则已工作。
ps vcl.conf是最简单的配置,如果需要有新的功能需要自己研究