SQUID Cache Manager Error(cachemgr.cgi)解决方案
题前:cachemgr.cgi是Squid管理功能的CGI接口。为了使用它,你需要拷贝该程序到你的WEB服务器的cgi-bin目录
使用
出现如下错误:
Cache Manager Error
connect: (111) Connection refused
解决方法:
#vi /etc/squid/squid.conf /*打开squid的配置文件*/
找到如下四行
acl localhost src 127.0.0.1/255.255.255.255
http_access allow manager localhost /*看到没有,只允许本机打开manager界面,其它一概不理 */
http_access deny manager
cachemgr_passwd secret shutdown /* 这个cache管理员manager的密码,默认是secret */
所以目前我们做的是取消限制只允许本机使用cache manager,让本地网用户都可以打开
acl inside src 192.168.1.0/24 /* 定义本地网段 */
http_access allow manager /* 去掉localhost的限制 */
http_access deny manager !inside /* 拒绝非inside网段的电脑使用Cache Manager */
好了,这样就大功告成了.
#squid -k reconfigure /* 重新启用squid.conf */
试用一下吧.
/* 你的Squid主机的IP */
Cache Host: 192.168.1.1 /*
这里不要用localhost了,用Squid主机的IP或hostname */
Cache Port: 3128 /* 除非你更改了Squid的port */
Manager name: manager
Password: secret /* squid.conf有定义的地方,前面讲到了
*/
continue
OK,界面应该就会出来了
阅读(2663) | 评论(0) | 转发(0) |