免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4404 | 回复: 5
打印 上一主题 下一主题

[proxy] squid问题探讨 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-02-24 18:31 |只看该作者 |倒序浏览
学习squid将近一年,一直在研究squid的,在这个过程中遇到些难题都得到解决!
各位;如果在squid学习和运用中有问题的可以贴到下面,我们一起探讨;也许可以解决-
互相学习;
{:2_174:}

论坛徽章:
0
2 [报告]
发表于 2011-03-07 14:27 |只看该作者
1、当前用的squid版本是squid-3.0.STABLE24.tar.gz

2、编译参数: ./configure --prefix=/usr/local/squid3 --enable-storeio=aufs,diskd,ufs --enable-linux-tproxy --enable-linux-netfilter

3、应用环境:公司做的透明代理

参数配置:
==================================
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32
acl localnet src 10.0.0.0/8     # RFC1918 possible internal network
acl localnet src 192.168.0.0/16
acl localnet src 116.236.255.222/32     # MT IPAddress
acl SSL_ports port 443
acl Safe_ports port 80          # http
acl Safe_ports port 21          # ftp
acl Safe_ports port 443         # https
acl Safe_ports port 70          # gopher
acl Safe_ports port 210         # wais
acl Safe_ports port 1025-65535  # unregistered ports
acl Safe_ports port 280         # http-mgmt
acl Safe_ports port 488         # gss-http
acl Safe_ports port 591         # filemaker
acl Safe_ports port 777         # multiling http
acl CONNECT method CONNECT
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localnet
http_access deny all
icp_access allow localnet
icp_access deny all
htcp_access allow localnet
htcp_access deny all
http_port 192.168.0.20:3128 transparent
http_port 127.0.0.1:3128
dead_peer_timeout 10 seconds
hierarchy_stoplist cgi-bin ?
cache_mem 768 MB
cache_dir aufs /cache1 5120 16 256
cache_dir aufs /cache2 5120 16 256
maximum_object_size 4096 KB
cache_swap_low 85
cache_swap_high 90
logformat squid %tl.%03tu %6tr %>a %Ss/%03Hs %<st %rm %ru %un %Sh/%<A %mt
access_log /var/log/squid/access.log squid
cache_log /var/log/squid/cache.log
cache_store_log none
refresh_pattern ^ftp:                   1440    20%     10080
refresh_pattern ^gopher:                1440    0%      1440
refresh_pattern -i (/cgi-bin/|\?)       0       0%      0
refresh_pattern .                       0       20%     4320
forward_timeout 4 minutes
connect_timeout 1 minute
peer_connect_timeout 30 seconds
request_timeout 5 minutes
persistent_request_timeout 2 minutes
ident_timeout 10 seconds
cache_effective_user squid
cache_effective_group squid
visible_hostname linkinfor
icp_port 0
maximum_icp_query_timeout 200
coredump_dir /cache1/
reply_header_access Server deny all
reply_header_access X-Cache deny all
reply_header_access Warning deny all
reply_header_access Expires deny all
reply_header_access Cache-Control deny all
reply_header_access age deny all
connect_timeout 1 minute
negative_ttl 0 minutes
read_timeout 30 seconds
pconn_timeout 120 seconds
shutdown_lifetime 5 seconds
strip_query_terms off
=========================

出现问题:

File descriptor usage for squid:
        Maximum number of file descriptors:   1024
        Largest file desc currently in use:    204
        Number of file desc currently in use:   28
        Files queued for open:                   0
        Available number of file descriptors:  996
        Reserved number of file descriptors:   100
        Store Disk files open:                   3

Store Disk files open:中打开的文件一直不能释放。

这个从/proc/squid_pid/fd/下面看到。
lrwx------ 1 squid squid 64 Mar  4 15:38 25 -> /cache2/00/55/000055DD (deleted)
lrwx------ 1 squid squid 64 Mar  4 15:38 3 -> /var/log/squid/cache.log
lrwx------ 1 squid squid 64 Mar  4 15:38 5 -> /var/log/squid/cache.log
lrwx------ 1 squid squid 64 Mar  4 15:45 64 -> /cache1/00/42/0000422D
lrwx------ 1 squid squid 64 Mar  4 15:38 81 -> /cache2/00/3E/00003E43

其中deleted的是被删除掉的。64这个文件描述符是昨天打开的,现在还没有被释放。

这台机器因为人数少。根本不存在性能上的不足。

论坛徽章:
0
3 [报告]
发表于 2011-09-10 12:51 |只看该作者
使用 Squid 将近一年,一直都是个人使用 ( 一台桌机 + 智慧型手机 )
刚开始调试参数好一阵子,目前为只的命中率也算满意 (磁盘命中率约 30%,内存约 5% )
之前看到有人说现在不少网站都使用 CDN 服务,容易遇到同一张图片但地址不同的情况
而这对 squid 来说是不同的图片,会缓存两次,有点可惜了,有简单的解决方案吗?

PS. Squid 版本为 2.7 stable8 for Windows

论坛徽章:
0
4 [报告]
发表于 2011-09-20 14:07 |只看该作者
--enable-linux-tproxy --enable-linux-netfilter报出不支持怎么办。。。。

论坛徽章:
6
CU大牛徽章
日期:2013-03-14 14:14:08CU大牛徽章
日期:2013-03-14 14:14:26CU大牛徽章
日期:2013-03-14 14:14:29处女座
日期:2014-04-21 11:51:59辰龙
日期:2014-05-12 09:15:10NBA常规赛纪念章
日期:2015-05-04 22:32:03
5 [报告]
发表于 2012-03-25 13:59 |只看该作者
denifears 发表于 2011-09-20 14:07
--enable-linux-tproxy --enable-linux-netfilter报出不支持怎么办。。。。


头像好可爱

论坛徽章:
0
6 [报告]
发表于 2012-08-02 16:14 |只看该作者
在通过使用squid上网时,是否有遇到过打开sina等有弹窗的网站会出现网页假死的状态?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP