Squid error kernel: pid 10869 (squid), uid 62: exited on signal 6
-
Hello all
My pf box was working since 190 days non stop with out any problem. My ISP change my static IP this morning!! After 2 hr tech call finally they change back to my previous old static IP. While this happen my squid start giving me problem.
kernel: pid 10869 (squid), uid 62: exited on signal 6
I am try to restart, un/re install squid,sarg, change squid cache setting as instructed in other forum here but still no luck here is my current log. (squid was running on transparent mode)
Sep 9 22:17:25 squid[87600]: Exiting due to repeated, frequent failures
Sep 9 22:17:25 kernel: pid 10869 (squid), uid 62: exited on signal 6
Sep 9 22:17:25 squid[87600]: Squid Parent: child process 10869 exited due to signal 6
Sep 9 22:17:24 squid[87600]: Squid Parent: child process 10869 started
Sep 9 22:17:21 kernel: pid 10327 (squid), uid 62: exited on signal 6
Sep 9 22:17:21 squid[87600]: Squid Parent: child process 10327 exited due to signal 6
Sep 9 22:17:21 squid[87600]: Squid Parent: child process 10327 started
Sep 9 22:17:20 php: rc.filter_configure_sync: Could not find IPv6 gateway for interface(wan).
Sep 9 22:17:20 php: rc.filter_configure_sync: Could not find IPv6 gateway for interface(wan).
Sep 9 22:17:19 php: rc.filter_configure_sync: Could not find IPv6 gateway for interface(wan).
Sep 9 22:17:19 php: rc.filter_configure_sync: Could not find IPv6 gateway for interface(wan).
Sep 9 22:17:18 kernel: pid 3091 (squid), uid 62: exited on signal 6
Sep 9 22:17:18 squid[87600]: Squid Parent: child process 3091 exited due to signal 6
Sep 9 22:17:18 squid[87600]: Squid Parent: child process 3091 started
Sep 9 22:17:15 check_reload_status: Reloading filter
Sep 9 22:17:15 kernel: pid 89529 (squid), uid 62: exited on signal 6
Sep 9 22:17:15 squid[87600]: Squid Parent: child process 89529 exited due to signal 6
Sep 9 22:17:14 Squid_Alarm[91539]: Squid has resumed. Reconfiguring filter.
Sep 9 22:17:14 check_reload_status: Reloading filter
Sep 9 22:17:14 squid[87600]: Squid Parent: child process 89529 started
Sep 9 22:17:14 Squid_Alarm[88948]: Reconfiguring filter…
Sep 9 22:17:11 kernel: pid 88036 (squid), uid 62: exited on signal 6
Sep 9 22:17:11 squid[87600]: Squid Parent: child process 88036 exited due to signal 6
Sep 9 22:17:11 squid[87600]: Squid Parent: child process 88036 started
Sep 9 22:17:11 Squid_Alarm[86226]: Attempting restart…
Sep 9 22:17:11 Squid_Alarm[85991]: Squid has exited. Reconfiguring filter.
Sep 9 22:16:25 squid[15997]: Exiting due to repeated, frequent failures
Sep 9 22:16:25 kernel: pid 52032 (squid), uid 62: exited on signal 6
Sep 9 22:16:25 squid[15997]: Squid Parent: child process 52032 exited due to signal 6
Sep 9 22:16:25 squid[15997]: Squid Parent: child process 52032 started
Sep 9 22:16:22 kernel: pid 30620 (squid), uid 62: exited on signal 6
Sep 9 22:16:22 squid[15997]: Squid Parent: child process 30620 exited due to signal 6
Sep 9 22:16:21 squid[15997]: Squid Parent: child process 30620 started
Sep 9 22:16:20 php: rc.filter_configure_sync: Could not find IPv6 gateway for interface(wan)my current settings are:
log storage dir /var/squid/logs
rotate log 2000
proxy port 3128Cache Management setting:
HD cache size 3000
Mem cache size 200
Min object size 0
Maximum object size 1000
Min object size in RAM 32 and rest of setting are set to default….The problem is I do not know how to use command line or their is no instruction available how to fix this using cmd line...Please help...thanks in advance.
-
Squid shouldn't care about your IP address AFAIK since it just uses a port forward rule to redirect all LAN port 80 traffic to 127.0.0.1:3128. I've read that this error can happen if you have cache issues or a full filesystem, so check those. What's up with the IP6 gateway errors?
-
Thanks for reply KOM…
Their are lots of IP6 errors in logs, I don't know how to fix it but it does not stop internet. But this squid error slow internet a lot. Can you guide me how to clear cache from gui or cmd line? I did try to remove and re install squid but no luck...my box spec..
2.1.4-RELEASE (i386) (did not update to 2 1 5 bcs I try on my other box but did not go well bcs dns, on gui can't click on system and help,gold member over lapping on menu bar)
Intel(R) Atom(TM) CPU N280 @ 1.66GHz
2 CPUs: 1 package(s) x 1 core(s) x 2 HTT threads
3 GB memory, 4GB swap, 50 GB HD
My squid setup is listed on my previous post... -
Shell in and run
rm -r /var/squid/cache/*
-
Usually when that happens the cache has been corrupted somehow (usually a sudden power loss).
It's a bit quicker to run:
mv /var/squid/cache /var/squid/cache.old squid -z rm -rf /var/squid/cache.old
You can then safely restart squid while the rm runs, rather than having to wait for it. If your cache was large it could take a significant amount of time to run the rm command.
-
rm -rf /var/squid/cache
I guess you intended this to be:
rm -rf /var/squid/cache.old
Yep. fixed.
-
Thanks for reply guys…
I did set my box to default twice but no luck. When I install squid/sarg again even after default my all old setting and logs was already there on both packages!! Did fresh install 2.1.5. -
rm -r /var/squid/cache/*
it's work
thanks bro