01 varnish程序结构及配置初步
配置环境
node1: CentOS 6.7 192.168.1.121
[[email protected] ~]# yum -y install httpd
[[email protected] ~]# service httpd start
[[email protected] ~]# echo "<h1>Web1</h1>" > /var/www/html/index.html
[[email protected] ~]# yum -y install httpd
[[email protected] ~]# echo "<h1>Web2</h1>" > /var/www/html/index.html
[[email protected] ~]# service httpd start
[[email protected] ~]# ls *rpm
varnish-3.0.6-1.el6.x86_64.rpm varnish-libs-3.0.6-1.el6.x86_64.rpm
[[email protected] ~]# rpm -ivh *rpm
[[email protected] ~]# vim /etc/sysconfig/varnish #配置文件
修改
VARNISH_LISTEN_PORT=6081
为
VARNISH_LISTEN_PORT=80
添加
VARNISH_STORAGE_SHM=64M
修改
VARNISH_STORAGE="file,${VARNISH_STORAGE_FILE},${VARNISH_STORAGE_SIZE}"
为
VARNISH_STORAGE="malloc,${VARNISH_STORAGE_SHM}"
[[email protected] ~]# service varnish start
[[email protected] ~]# cd /etc/varnish/
[[email protected] varnish]# cp default.vcl{,.bak}
[[email protected] varnish]# vim default.vcl
修改backend段的内容为:
backend default {
.host = "192.168.1.122";
.port = "80";
}
[[email protected] varnish]# service varnish restart
[[email protected] varnish]# varnishadm -S /etc/varnish/secret -T 127.0.0.1:6082
测试
#1、更改后端主机
[[email protected] ~]# cd /etc/varnish/
[[email protected] varnish]# vim default.vcl
修改backend段的内容为:
backend default {
.host = "192.168.1.123";
.port = "80";
}
#重新加载配置
varnish> vcl.load test1 default.vcl
200
VCL compiled.
varnish> vcl.use test1
200
#示例2
[[email protected] varnish]# vim default.vcl
修改vcl_deliver段的内容为:
sub vcl_deliver {
if (obj.hits>0) {
set resp.http.X-Cache = "HIT";
} else {
set resp.http.X-Cache = "MISS";
}
return (deliver);
}
加载配置文件
varnish> vcl.load test2 ./default.vcl
200
VCL compiled.
varnish> vcl.use test2
200
02 vcl使用详解
1、vcl_recv程序段
[[email protected] varnish]# vim default.vcl
去掉该程序段的所有注释,具体内容如下:
sub vcl_recv {
if (req.restarts == 0) {
if (req.http.x-forwarded-for) {
set req.http.X-Forwarded-For =
req.http.X-Forwarded-For + ", " + client.ip;
} else {
set req.http.X-Forwarded-For = client.ip;
}
}
if (req.request != "GET" &&
req.request != "HEAD" &&
req.request != "PUT" &&
req.request != "POST" &&
req.request != "TRACE" &&
req.request != "OPTIONS" &&
req.request != "DELETE") {
/* Non-RFC2616 or CONNECT which is weird. */
return (pipe);
}
if (req.request != "GET" && req.request != "HEAD") {
/* We only deal with GET and HEAD by default */
return (pass);
}
if (req.http.Authorization || req.http.Cookie) {
/* Not cacheable by default */
return (pass);
}
return (lookup);
}
#显示客户端的真实IP
[[email protected] ~]# vim /etc/httpd/conf/httpd.conf
修改
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
为
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
[[email protected] ~]# service httpd restart
加载配置文件:
varnish> vcl.load test3 ./default.vcl
200
VCL compiled.
varnish> vcl.use test3
200
2、拒绝某个主机访问服务器
[[email protected] ~]# vim /etc/httpd/conf/httpd.conf
在vcl_recv段中添加
if (client.ip == "192.168.1.191") {
error 404 "Not Found";
}
加载配置文件:
varnish> vcl.load test4 ./default.vcl
200
VCL compiled.
varnish> vcl.use test4
200
3、移除单个缓存对象
[[email protected] varnish]# vim default.vcl
1)添加
acl purgers {
"127.0.0.1";
"192.168.1.0"/24;
}
2)修改vcl_recv中的内容为:
sub vcl_recv {
if (req.restarts == 0) {
if (req.http.x-forwarded-for) {
set req.http.X-Forwarded-For =
req.http.X-Forwarded-For + ", " + client.ip;
} else {
set req.http.X-Forwarded-For = client.ip;
}
}
if (req.request == "PURGE") {
if (!client.ip ~ purgers) {
error 405 "Method not allowed";
}
return (lookup);
}
if (req.request != "GET" &&
req.request != "HEAD" &&
req.request != "PUT" &&
req.request != "POST" &&
req.request != "TRACE" &&
req.request != "OPTIONS" &&
req.request != "DELETE" && req.request !="PURGE" ) {
/* Non-RFC2616 or CONNECT which is weird. */
return (pipe);
}
if (req.request != "GET" && req.request != "HEAD" && req.request != "PURGE") {
/* We only deal with GET and HEAD by default */
return (pass);
}
if (req.http.Authorization || req.http.Cookie) {
/* Not cacheable by default */
return (pass);
}
return (lookup);
}
3)修改vcl_hit段内容为:
sub vcl_hit {
if (req.request == "PURGE") {
purge;
error 200 "Purged";
}
return (deliver);
}
4)修改vcl_miss段内容为:
sub vcl_miss {
if (req.request == "PURGE") {
purge;
error 404 "Not in cache";
}
return (fetch);
}
5)修改vcl_pass段的内容为
sub vcl_pass {
if (req.request == "PURGE") {
error 502 "PURGE on a passed object";
}
return (pass);
}
重新加载配置:
varnish> vcl.load test6 ./default.vcl
200
VCL compiled.
varnish> vcl.use test6
200
测试:
[[email protected] varnish]# curl -I 192.168.1.121/index.html
HTTP/1.1 200 OK
Server: Apache/2.2.15 (CentOS)
Last-Modified: Thu, 01 Sep 2016 15:14:26 GMT
ETag: "102e3c-e-53b73ab6b0642"
Content-Type: text/html; charset=UTF-8
Content-Length: 14
Accept-Ranges: bytes
Date: Thu, 01 Sep 2016 18:57:16 GMT
X-Varnish: 1231869016
Age: 0
Via: 1.1 varnish
Connection: keep-alive
X-Cache: MISS
[[email protected] varnish]# curl -I 192.168.1.121/index.html
HTTP/1.1 200 OK
Server: Apache/2.2.15 (CentOS)
Last-Modified: Thu, 01 Sep 2016 15:14:26 GMT
ETag: "102e3c-e-53b73ab6b0642"
Content-Type: text/html; charset=UTF-8
Content-Length: 14
Accept-Ranges: bytes
Date: Thu, 01 Sep 2016 18:57:18 GMT
X-Varnish: 1231869017 1231869016
Age: 2
Via: 1.1 varnish
Connection: keep-alive
X-Cache: HIT
[[email protected] varnish]# curl -I -X PURGE 192.168.1.121/index.html
HTTP/1.1 200 Purged
Server: Varnish
Content-Type: text/html; charset=utf-8
Retry-After: 5
Content-Length: 380
Accept-Ranges: bytes
Date: Thu, 01 Sep 2016 18:57:22 GMT
X-Varnish: 1231869018
Age: 0
Via: 1.1 varnish
Connection: close
X-Cache: MISS
结果:成功
03 vcl使用详解及varnish命令行工具
1、管理后端主机
[[email protected] varnish]# vim default.vcl
修改backend段的内容为:
backend web1 {
.host = "192.168.1.122";
.port = "80";
}
backend web2 {
.host = "192.168.1.123";
.port = "80";
}
在vcl_recv段中添加
if (req.url ~ "test.html") {
set req.backend = web1;
} else {
set req.backend = web2;
}
重新加载配置
varnish> vcl.load test7 ./default.vcl
200
VCL compiled.
varnish> vcl.use test7
200
测试:
[[email protected] ~]# echo "<h1>Test Page on Web1</h1>" > /var/www/html/test.html
[[email protected] ~]# echo "<h1>Test Page on Web2</h1>" > /var/www/html/test.html
[[email protected] ~]# curl 192.168.1.121/test.html
<h1>Test Page on Web1</h1>
测试成功
2、设置动静分离
[[email protected] ~]# yum -y install php
[[email protected] ~]# vim /var/www/html/index.php
<?php
phpinfo();
?>
[[email protected] ~]# service httpd restart
[[email protected] varnish]# vim default.vcl
修改backend段的内容为:
backend appsrv {
.host = "192.168.1.122";
.port = "80";
}
backend static {
.host = "192.168.1.123";
.port = "80";
}
在vcl_recv段中添加
if (req.url ~ "\.php$") {
set req.backend = appsrv;
} else {
set req.backend = static;
}
重新加载配置:
varnish> vcl.load test8 ./default.vcl
200
VCL compiled.
varnish> vcl.use test8
200
测试成功
3、定义健康状态检测
[[email protected] varnish]# vim default.vcl
添加
probe chk {
.url = "/test.html";
.window = 5;
.threshold =3;
.interval = 3s;
.timeout = 1s;
}
修改backend段的内容为:
backend appsrv {
.host = "192.168.1.122";
.port = "80";
.probe = chk;
}
backend static {
.host = "192.168.1.123";
.port = "80";
.probe = chk;
}
重新加载配置
varnish> vcl.load test9 ./default.vcl
200
VCL compiled.
varnish> vcl.use test9
200
varnish> backend.list #显示后端所有主机
200
Backend name Refs Admin Probe
default(192.168.1.122,,80) 1 probe Healthy (no probe)
default(192.168.1.123,,80) 10 probe Healthy (no probe)
web1(192.168.1.122,,80) 1 probe Healthy (no probe)
web2(192.168.1.123,,80) 1 probe Healthy (no probe)
appsrv(192.168.1.122,,80) 2 probe Healthy 5/5
static(192.168.1.123,,80) 2 probe Healthy 5/5
测试:
把test.html改名为2.html
[[email protected] ~]# cd /var/www/html/
[[email protected] html]# mv test.html 2.html
[[email protected] html]# ll
total 8
-rw-r--r-- 1 root root 27 Sep 2 17:22 2.html
-rw-r--r-- 1 root root 14 Sep 1 23:14 index.html
[[email protected] html]# tail /var/log/httpd/access_log
- - - [21/Oct/2016:09:48:24 +0800] "GET /test.html HTTP/1.1" 404 286 "-" "-"
varnish> backend.list
200
Backend name Refs Admin Probe
default(192.168.1.122,,80) 1 probe Healthy (no probe)
default(192.168.1.123,,80) 10 probe Healthy (no probe)
web1(192.168.1.122,,80) 1 probe Healthy (no probe)
web2(192.168.1.123,,80) 1 probe Healthy (no probe)
appsrv(192.168.1.122,,80) 2 probe Healthy 5/5
static(192.168.1.123,,80) 2 probe Sick 0/5
结果:显示该网址错误,测试成功
4、如何使用director
[[email protected] varnish]# vim default.vcl
在backend段后添加director段
director mysrvs random {
.retries = 3;
{
.backend = appsrv;
.weight = 1;
}
{
.backend = static;
.weight = 1;
}
}
在vcl_recv段中添加:
if (req.url ~ "/test.html") {
return(pass);
}
if (req.url ~ "\.php$") {
set req.backend = appsrv;
} else {
set req.backend = mysrvs;
}
功能:动态网页访问appsrv服务器,静态网页访问mysrvs服务器。
重新加载配置:
varnish> vcl.load test10 ./default.vcl
200
VCL compiled.
varnish> vcl.use test10
200