squid-3.0.STABLE21 安装配置 by lbj
作用:作为反向代理/缓存服务器
系统:redhat linux 企业版 5.4
- linux 要有gcc编译器,使用squid-3.0.STABLE21版本
- 查询指令
ulimit -n
vi /proc/sys/fs/file-max
vi /proc/sys/net/ipv4/ip_local_port_range - 配置指令
ulimit -HSn 65536
echo 8192 > /proc/sys/fs/file-max
echo "1024 40000" > /proc/sys/net/ipv4/ip_local_port_range - 需要将ulimit -HSn 65536设置在/etc/rc.d/rc.local中,防止重启后失效, 花费时间来增加这个限制值的大小。否则,squid在高负载时执行性能将很低。
- 将语言包的zh-cn所有ERR文件拷贝到 ../squid-3.0.STABLE21/errors/Simplify_Chinese
- 编译指令
# ./configure --prefix=/usr/local/squid3 --disable-internal-dns --enable-err-languages="Simplify_Chinese" --enable-default-err-languages="Simplify_Chinese" - 安装
[root@localhost squid-3.0.STABLE21]# make
[root@localhost squid-3.0.STABLE21]# make install - 改变目录权限
chmod -R 777 /usr/local/squid3/var/ - 创建cache空间
Creating Swap Directories,Making directories in /usr/local/squid3/var/cache/00
/usr/local/squid3/sbin/squid -z - 检查squid.conf的配置
./squid - k parse - 启动squid
./squid -N -d1 - 将squid以后台进程运行
./squid -s - 发送关闭squid进程的信号
./squid -k shutdown - -k function
指示squid执行不同的管理功能。
reconfigure, rotate, shutdown, interrupt, kill, debug, check, or parse. reconfigure导致运行中的squid重新读取配置文件。
rotate导致squid滚动它的日志,这包括了关闭日志,重命名,和再次打开它们。
shutdown发送关闭squid进程的信号。
interrupt立刻关闭squid,不必等待活动会话完成。
kill发送KILL信号给squid,这是关闭squid的最后保证。
debug将squid设置成完全的调试模式
check简单的检查运行中的squid进程,返回的值显示squid是否在运行。
parse简单的解析squid.conf文件,如果配置文件包含错误,进程返回非零值。 - 强制关闭squid进程
ps -A | grep squid
kill -9 id - 配置要点
acl QUERY urlpath_regex -i cgi-bin /? /.jsp /.asp /.php /.cgi /.aspx
cache deny QUERY
默认区分大小写,