$ grep -B 8 "# shutdown_lifetime" /etc/squid3/squid.conf
# TAG: shutdown_lifetime time-units
# When SIGTERM or SIGHUP is received, the cache is put into
# "shutdown pending" mode until all active sockets are closed.
# This value is the lifetime to set for all open descriptors
# during shutdown mode. Any active clients after this many
# seconds will receive a 'timeout' message.
# Default:
# shutdown_lifetime 30 seconds
$ vim /etc/init.d/squid3
...
78
79 stop () {
80 PID=`cat $PIDFILE 2>/dev/null`
81 start-stop-daemon --stop --quiet --pidfile $PIDFILE --exec $DAEMON
82 #
83 # Now we have to wait until squid has _really_ stopped.
84 #
85 sleep 2
86 if test -n "$PID" && kill -0 $PID 2>/dev/null
87 then
88 log_action_begin_msg " Waiting"
89 cnt=0
90 while kill -0 $PID 2>/dev/null
91 do
92 cnt=`expr $cnt + 1`
93 if [ $cnt -gt 24 ]
94 then
95 log_action_end_msg 1
96 return 1
97 fi
98 sleep 5
99 log_action_cont_msg ""
100 done
101 log_action_end_msg 0
102 return 0
103 else
104 return 0
105 fi
106 }
107...
,这个函数正在使用这个无法识别的信号(0)。
解决方法:在第 90 行,将信号更改为 SIGTERM 信号,如 15。
90 while kill -15 $PID 2>/dev/null
然后,在启动/停止 Squid 时不会有任何延迟:
$ time /etc/init.d/squid3 stop
[ ok ] Stopping Squid HTTP Proxy 3.x: squid3.
real 0m2.036s
user 0m0.004s
sys 0m0.000s
$ time /etc/init.d/squid3 start
[ ok ] Starting Squid HTTP Proxy 3.x: squid3.
real 0m0.036s
user 0m0.004s
sys 0m0.004s
有一个参数叫做shutdown_lifetime。它的默认值为 30 秒。
所以当 Squid 收到一个关闭请求时,它至少要等待 30 秒才能终止。
只需“取消注释”最后一行并设置更短的时间:
有关更多信息,请参见下文。
http://www.squid-cache.org/Doc/config/shutdown_lifetime/
我为 Debian Wheezy 的 Squid 3.1.20-2.2 软件包找到了这个。
,这个函数正在使用这个无法识别的信号(0)。
解决方法:在第 90 行,将信号更改为 SIGTERM 信号,如 15。
然后,在启动/停止 Squid 时不会有任何延迟:
注意:虽然它为服务提供了快速启动/停止,但这种解决方法可能会破坏脚本的目的,该脚本出于自身原因使用信号 0。