博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
web缓存值varnish使用
阅读量:5264 次
发布时间:2019-06-14

本文共 2508 字,大约阅读时间需要 8 分钟。

具体的介绍到官网 https://www.varnish-software.com/static/book 

一、简介

   Varnish is a reverse HTTP proxy, sometimes referred to as a HTTP accelerator or a web accelerator. It is designed for modern hardware, modern operating systems and modern work loads.

   Varnish is designed for hardware that you buy today, not the hardware you bought 15 years ago. Varnish is designed to run on 64-bit architectures and will scale almost proportional to the number of CPU cores you have available. Though CPU-power is rarely a problem.

   所以它是为64位操作系统打造的,服务于现在高性能的服务器。

  Varnish does not keep track of whether your cache is on disk or in memory. Instead, Varnish will request a large chump of memory and leave it to the operating system to figure out where that memory really is. The operating system can generally do a better job than a user-space program.

  它把一部分功能交给了处理能力更强的操作系统,由操作系统来维护缓存,这样系能更能提高

 

二、下载安装

      wget http://repo.varnish-cache.org/source/varnish-3.0.4.tar.gz

      tar -xzvf 

      ./configure  报错 error: Package requirements (libpcre) were not met

      但是我rpm -qa | grep pcre是有东西的

      export PKG_CONFIG=/usr/local/lib/pkgconfig/还是不行,报错 The pkg-config script could not be found or is too old. 

      既然这么麻烦,我就不用PK_CONFIG了,

     export PCRE_LIBS=/usr/lib64/

     export PCRE_CFLAGS=/usr/lib64/

     ./configure --prefix=/usr/loca/varnish

    但是make的时候出错 :undefined reference to `pcre_free

     好吧,尼玛的我重新安装pkg-config

     wget http://pkgconfig.freedesktop.org/releases/pkg-config-0.27.1.tar.gz

     tar -xzvf 

     ./configure --with-libiconv=gnu

     make && maike install

     然后 调用./pkg-config又报错: error while loading shared libraries: libiconv.so.2:

       libiconv.so.2在/usr/local/lib目录下

       vim /etc/ld.so.conf,增加一行/usr/local/lib

      ldconfig,再运行pkg-config就不报错了

     再次进入varnish的安装目录,这次configure make make install都不报错了。尼玛的坑爹货。早知道这么麻烦我直接 yum install varnish一句搞定

 

 

三、运行 

      vim /usr/local/varnish/etc/varnish/default.把

  backend default {

    .host = "127.0.0.1";
    .port = "8080";
  }前面的注释去掉

      chown www:www -R /usr/local/varnish/var/varnish/

  /usr/local/varnish/sbin/varnishd -P /var/run/varnish.pid -a :80 -f /usr/local/varnish/etc/varnish/default.vcl -T 127.0.0.1:6082 -t 120 -w 50,1000,120 -u www -g www -s file,/usr/local/varnish/var/varnish/varnish_storage.bin,1G

    

四、配合nginx

      1、把nginx监听的端口从80改成上面的8080

      2、重启nginx服务,然后开启varnish服务即可

  

五、重启varnish

     /usr/local/varnish/bin/varnishadm

     vcl.load reload01 /usr/local/varnish/etc/varnish/default.vcl

     vcl.use reload01

    这样就重启了。更改了default.vcl以后可以这样简单的重新加载配置

 

六、一些配置 

        未完待续

七、一些小注意事项

     1、如果http的请求中带有cookie,默认情况下varnish是不会缓存的。如果想对cookie做一些筛选,可以参照

 

 

转载于:https://www.cnblogs.com/sky20081816/p/3165266.html

你可能感兴趣的文章
axure学习点
查看>>
javascript: 处理URL字符串
查看>>
MATLAB数值计算与数据分析(2)
查看>>
JUnit
查看>>
WPF文本框只允许输入数字[转]
查看>>
事务的四种隔离级别和七种传播行为
查看>>
dom4j 通用解析器,解析成List<Map<String,Object>>
查看>>
13. 用Roberts、Sobel、Prewitt和Laplace算子对一幅灰度图像进行边缘检测。观察异同。...
查看>>
第一个项目--用bootstrap实现美工设计的首页
查看>>
使用XML传递数据
查看>>
手机自带输入法emoji表情的输入,提交及显示——前端解决方案
查看>>
TYVJ.1864.[Poetize I]守卫者的挑战(概率DP)
查看>>
LOJ.6160.[美团CodeM初赛 RoundA]二分图染色(容斥 组合)
查看>>
基于CMMI的敏捷开发过程文档裁剪
查看>>
0925 韩顺平java视频
查看>>
软件需求规格说明书
查看>>
53. Maximum Subarray
查看>>
iOS-程序启动原理和UIApplication
查看>>
SpringMVC入门(二)—— 参数的传递、Controller方法返回值、json数据交互、异常处理、图片上传、拦截器...
查看>>
git的安装
查看>>