Все спасибо за внимание и помощь!
Нашел как решить эту проблему, на самом деле был запущен другой экземпляр Сквида:
11.43 squid: ERROR: no running copy
You may get this message when you run commands like squid -krotate.This error message usually means that the squid.pid file is missing. Since the PID file is normally present when squid is running, the absence of the PID file usually means Squid is not running. If you accidentally delete the PID file, Squid will continue running, and you won't be able to send it any signals.
If you accidentally removed the PID file, there are two ways to get it back.
run ps and find the Squid process id. You'll probably see two processes, like this:
bender-wessels % ps ax | grep squid
83617 ?? Ss 0:00.00 squid -s
83619 ?? S 0:00.48 (squid) -s (squid)
You want the second process id, 83619 in this case. Create the PID file and put the process id number there. For example:
echo 83619 > /usr/local/squid/logs/squid.pid
Use the above technique to find the Squid process id. Send the process a HUP signal, which is the same as squid -kreconfigure:
kill -HUP 83619
The reconfigure process creates a new PID file automatically.