varnish服务yum安装及不同域名站点

开启三台虚拟机
实战:使用varnish加速多个不同域名站点的web服务器
varnish:192.168.80.100 //需要联网
web1:192.168.80.101——www.aa.com
web2:192.168.80.102——www.bb.com

三台服务器全都要操作
systemctl stop firewalld      //关闭防火墙
setenforce 0                       //关闭监控
yum安装varnish
cd /etc/yum.repos.d/
mv back/* ./

1.安装varnish(从Centos7开始,varnish已被收入到epel仓库)
yum   install epel-release -y            //需要联网
yum -y install varnish
2.新建varnish用户
useradd -M -s /sbin/nologin varnish
3.varnish配置文件
vi /etc/varnish/varnish.params         //主配置文件

vi /etc/varnish/default.vcl            //VCL配置文件
sub  vcl_recv{
if  (req.http.host ~ "(?i)^(www.)?aa.com$") {
set req.http.host = "www.aa.com";
set req.backend_hint = web1;
} elsif (req.http.host ~ "(?i)^www.bb.com$") {
set req.backend_hint = web2;
return(hash);
}
}
判断当访问www.aa.com域名时从web1上取数据,访问www.bb.com域名是到web2取数据。

#添加一个Header标识,以判断缓存是否命中
sub vcl_deliver {
    if (obj.hits > 0) {
                set resp.http.X-Cache = "HIT  FROM"  + req.http.host;
set  resp.http.X-Cache-Hits = obj.hits;
        } else {
                set resp.http.X-Cache = "MISS  FROM"  + req.http.host;
        }
    return (deliver);
}

重启varnish
systemctl restart varnish
vi /etc/hosts
192.168.80.100   www.aa.com
192.168.80.100   www.bb.com
yum install -y elinks          //安装elinks
elinks  www.aa.com  --dump   #elinks文本界面浏览器

或者:在windows中查找


在另一台虚拟机搭建一个web服务器:web1(80.101)
yum install httpd -y            //安装http
vi /etc/httpd/conf/httpd.conf
把 ServerName www.example.com:80 前面的#删除
vi /var/www/html/index.html
<h1>server 1</h1>

systemctl start httpd
在另一台虚拟机搭建一个web服务器:web2(80.102)
yum install httpd -y            //安装http
vi /etc/httpd/conf/httpd.conf
把 ServerName www.example.com:80 前面的#删除
vi /var/www/html/index.html
<h1>server 2</h1>

systemctl start httpd
最后在浏览器上输入www.bb.com

————————————————————————————————————————

VCL
Varnish Configuration Language (VCL) 是一种动态语言,是varnish配置语言,用来描述请求处理和制定缓存策略。vcl配置内容由manager process 创建的VCC子进程转换成C语言代码,再经由gcc编译成共享对象,最后装载到cacher process中生效。

VCL文件被分为多个子程序,不同的子程序在不同的时间里执行,比如一个子程序在接到请求时执行,另一个子程序在接受到后端服务器传送的文件时执行。
VCL处理流程图

处理过程大致分为如下几个步骤
1、Receive状态:请求处理的入口状态,根据VCL规则判断该请求应该是Pass或Pipe或者进入Lookup(本地查询)
?
2、Lookup状态,在缓存中查找用户请求的对象,如果缓存中没有其请求的对象,后续操作很可能会将其请求的对象进行缓存;进入此状态后,会在hash表中查找数据,若找到,则进入Hit(命中)状态,否则进入miss状态
?
3、Pass状态,在此状态下,会进入后端(源服务器)请求,即进入fetch状态,不走缓存
?
4、Fetch状态,在Fetch状态下,对请求,进行后端的获取,发送请求,获得源服务器的数据,并进行本地的存储
?
5、Deliver提供状态,将获取到的数据发送给客户端,然后完成本次请求。
?
注:
Pass:绕过缓存,既不从缓存中查询内容或不将内容存储至缓存中;
?
Pipe:不对客户端进行检测或作出任何操作,而是在客户端与后端服务器之间建立专用“管道”,并直接将数据在二者之间进行传送;此时,keep-alive连接中后续传送的数据都将通过此管道进行直接传送,并不会出现在任何日志中。

语法
  (1)支持注释  // # /* */
  (2)不支持循环
  (3)sub $name:用于定义子例程
        sub vcl_recv {

        }
  (4)有众多内置的变量,变量的可调用位置与state engine有密切相关性
  (5)支持终止语句,return(action),没有返回值
  (6)"域"专用
  (7)操作符 =,==,!,&&,||
常用语句
  if     else
  set name=value
  unset name
  req.http.HEADER:调用请求报文中http协议的指定的变量
  req.request:请求方法

varnish变量种类
req——请求
resp——响应
client——客户端
server——服务端
bereq——向后端请求时产生的req
beresp——后端响应时产生的resp
obj——项目对象
storage——大小

常用变量:

bereq和req:
bereq(req).http.HEADERS: 由varnish发往backend server的请求报文的指定首部;
bereq(req).request:请求方法;
bereq(req).url: 请求路径
bereq(req).proto: 请求协议
bereq(req).backend:指明要调用的后端主机;
?
beresp和resp
beresp.proto:响应使用的协议
beresp.status:响应的状态码
beresp.reason:原因短语;
beresp.backend.ip:响应的后端ip地址
beresp.backend.name:响应的后端域名
beresp.http.HEADER: 从backend server响应的报文的首部;
beresp.ttl:后端服务器响应的内容的余下的生存时
?
obj
obj.ttl: 对象的ttl值;
obj.hits:此对象从缓存中命中的次数;
?
server
server.ip
server.hostname
?
CDN

原文地址:http://blog.51cto.com/14158297/2350573

时间: 2024-11-09 00:10:07

varnish服务yum安装及不同域名站点的相关文章

varnish使用yum安装及不同域名站点

操作环境: 一台varnish服务器 两台后端web服务器 yum安装varnish 1.安装varnish(从Centos7开始,varnish已被收入到epel仓库) yum install epel-release -y yum -y install varnish 2.新建varnish用户 useradd -M -s /sbin/nologin varnish 3.varnish配置文件 /etc/varnish/varnish.params 主配置文件/etc/varnish/def

yum安装varnish

三台虚拟机都要做 systemctl stop firewalld //关闭防火墙 setenforce 0 //关闭监控 80.101 yum install -y httpd vi /etc/httpd/conf/httpd.conf 找到ServerName www.example.com:80吧#去掉 vi /var/www/html/index.html <h1>server 1</h1> systemctl start httpd 80.102 yum install

centos7配置YUM安装DNS服务

1.配置DNS地址 vim /etc/resolv.conf nameserver 192.168.1.100 #注:这里的地址是你DNS服务器本机的地址 2.安装dns服务 yum install bind bind-utils 3.启动服务 启动DNS服务:service named start 重启DNS服务:systemctl restart  named.service 设置开机启动:systemctl enable named 4.编辑dns配置文件 vim /etc/named.c

yum安装telnet服务

1.查看有无安装telnet [[email protected] ~]# rpm -qa |grep telnet 2.查看yum 源 [[email protected] ~]# yum list |grep telnet telnet.x86_64                              1:0.17-48.el6              @base telnet-server.x86_64                       1:0.17-48.el6    

centos6.6 yum安装telnet服务端和客户端

查看telent是否安装: rpm -qa | grep telnet 查看yum源上telnet有哪些软件可安装: yum search telnet telnet服务端:telnet-server telnet客户端:telnet 安装 注意,需要root权限来安装 yum -y install telnet-server yum -y install telnet 安装服务端之后其他设备就可以telnet这台设备了(这台设备有telnet服务) 安装服务端之后这台设备就可以telnet其他

linux系统利用yum安装其他软件或服务

1.下载yum的配置源(最好用网易163的源,也可以使其他的源) wget http://docs.linuxtone.org/soft/lemp/CentOS-Base.repo 下载到 /etc/yum.repos.d/ 目录下面或者wget http://mirrors.163.com/.help/CentOS6-Base-163.repo 下载到 /etc/yum.repos.d/ 目录下面 2.编辑CentOS6-Base-163.repo把文件里面的$releasever全部替换为6

docker yum安装报错 服务启动报错

在使用docker容器yum安装时出现类似的错误: Transaction check error:file /usr/lib64/libsystemd-daemon.so.0 from install of systemd-libs-219-19.el7.x86_64 conflicts with file from package systemd-container-libs-208.20-6.el7.centos.x86_64file /usr/lib64/libsystemd-id128

CentOS通过yum安装MariaDB(MySQL)无法启动服务或者找不到mysql.sock

转载自:http://www.linuxidc.com/Linux/2016-03/129396.htm 今天在Linux主机(CentOS 7)安装(yum install方式)Mariadb(即开源MySQL)后,无法启动mariadb,其实是安装不完整,当然启动不了,更不用说输入"mysql -u root"提示Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)了 .没什么技术含量的解决

yum安装ntp服务

一.安装NTP软件包: yum -y install ntp /*yum安装NTP服务*/ chkconfig --add ntpd /*添加NTP*/ chkconfig ntpd on /*开机自启动NTP*/ 二.修改NTP配置文件: vi /etc/ntp.conf *************************************************************** # For more information about this file, see the