squid负载

squid 10.0.0.41
web1 10.0.0.42
web2 10.0.0.43

1、安装squid

yum -y install squid

2、修改squid配置,配置轮询负载

vim /etc/squid/squid.conf

http_access allow all #允许所有的访问

http_access allow all #允许所有的访问
http_port 80 vhost vport
cache_peer 10.0.0.42 parent 80 0 proxy-only no-query originserver round-robin name=web1 
cache_peer 10.0.0.43 parent 80 0 proxy-only no-query originserver round-robin name=web2

squid负载_第1张图片
cache_peer 10.0.0.42 parent 80 0 no-query ##cache_peer:缓存策略;10.0.0.41(服务端IP,缓存服务端让客户端查看); parent:没有备用的代理;80:服务端端口为80;0:没有备用端口;proxy-only表示只作代理,no-query:没有备用的代理 ,name只是个标题随便
3、启动

systemctl start squid

二、配置web1,web2
web1

yum -y install httpd
echo 'web one'>/var/www/html/index.html
systemctl start httpd

web2

yum -y install httpd
echo 'web tow'>/var/www/html/index.html
systemctl start httpd

测试
squid负载_第2张图片
squid负载_第3张图片

squid负载_第4张图片
成功

你可能感兴趣的:(squid代理服务)