Squid Proxy Sever View logs / log files

by Vivek Gite on September 24, 2007 · 18 comments

Q. How do I view squid proxy server log files under CentOS Linux server 5.0?

A. squid is a high-performance proxy caching server for web clients, supporting FTP, gopher, and HTTP data objects. Unlike traditional caching software, squid handles all requests in a single, non-blocking, I/O-driven process.

/var/log/squid/ log file directory

The logs are a valuable source of information about Squid workloads and performance. The logs record not only access information, but also system configuration errors and resource consumption (eg, memory, disk space). There are several log file maintained by Squid. Some have to be explicitely activated during compile time, others can safely be deactivated during.

  • /var/log/squid/access.log : Most log file analysis program are based on the entries in access.log. You can use this file to find out who is using squid server and what they are doing etc
  • /var/log/squid/cache.log : The cache.log file contains the debug and error messages that Squid generates. If you start your Squid using the default RunCache script, or start it with the -s command line option, a copy of certain messages will go into your syslog facilities. It is a matter of personal preferences to use a separate file for the squid log data.
  • /var/log/squid/store.log : The store.log file covers the objects currently kept on disk or removed ones. As a kind of transaction log it is ususally used for debugging purposes. A definitive statement, whether an object resides on your disks is only possible after analysing the complete log file. The release (deletion) of an object may be logged at a later time than the swap out (save to disk).

How do I view Squid Log files / logs?

You can use standard UNIX / Linux command such as grep / tail to view log files. You must login as root or sudo command to view log files.

Display log files in real time

Use tail command as follows:
# tail -f /var/log/squid/access.log
OR
$ sudo tail -f /var/log/squid/access.log

Search log files

Use grep command as follows:
grep 'string-to-search' /var/log/squid/access.log

View log files

Finally you can use text editor such as vi to view log files:
# vi /var/log/squid/access.log

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 18 comments… read them below or add one }

1 goose October 17, 2007

this rokes

Reply

2 WebTenet January 10, 2008

When squid is running if a log file is opened using vi, will it lock the file and cause problem with squid?

Reply

3 vivek January 11, 2008

WebTenet,

Noop, it will keep log in the message

Reply

4 Pradeep Singh April 28, 2008

hi ,
i m a new squid user, i m getting all d loged in information of users through psacct services n various commands, but what i m really searching 4 is the particular users downloaded dat information while using services of internet via SQUID server, please help me out with dis .

thanking in advance
Pradeep Singh
http://www.excelsoftware.net

Reply

5 V.Balaviswanathan May 5, 2009

Thanks for this information… Cool one, and I have a doubt in this that if we need to browse something that is in the blocked list,I often need to delete that entry in that list. Is the any other way i can do this without deleting the entry in the file squidblock.acl , can we access those sites which are blocked….

Reply

6 rey May 23, 2009

Hello all, I have configure a squid at ubuntu, for 3 or 4 days it works perfect, but after that it dont work any more, it give many errors at the log file
ie: TCP_MISS/504
TCP_MISS/302 and others

but I discover that if I make a request to the squit proxy using IP and not the domain name it works

so if I need to navigate on google.com the squit don’t work, but the google IP are 74.125.45.100 (one of them) if I put http://74.125.45.100 it works, I like to know why this is happening, what can be wrong at my squid.conf file ?.

thanks for any help in advance

Reply

7 mezgani July 27, 2009
8 candice November 17, 2009

i go t clarendon college school and need a proxy website or something that i can get on to go on facebook.
xx

Reply

9 raMiz January 8, 2010

plz tell mee….

how to maintain users downloaded information at server’s side………. in a wire less network….

in detail ……. im doing a pjct on this…

Reply

10 Thomas Conor June 23, 2010

This is how we get the time stamp corrected
perl -pe ‘s/[\d\.]+/localtime($&)/e’ /var/log/squid/access.log > /tmp/access.log

Reply

11 Live July 15, 2010

OK this is what I do,

tail -f /var/log/squid/access.log | grep [ipaddress_of_a_client_workstation]

Then it only shows the webpages that client_workstation is accessing, this is good for client surveillance.

How can I save this to a file? I mean, if I’m not in the office, the Proxy should save the addresses that client went throughout the day. And I review them at night.

How do you do that? Thanks.

Reply

12 Rakesh Ray October 7, 2010

is there any log maintained for the EMail access through squid. if yes where it get the email id and access time??????

Reply

13 John March 20, 2011

Is there any way to find a few ip addresses in a few logfiles and append it to a output file?

Reply

14 John March 20, 2011

Is there anyway to find a few ip addresses in a different log files and append it to another file?

Thanks

Reply

15 mukeshchaudhary June 19, 2011

plzzz. can anyone let me know except proxy what are the other work of squid on linux server………….

Thanks and Regards

Mukesh Chaudhary

Reply

16 Vkram June 20, 2011

You can block Websites, Block downloading, Restrict users to internet, Make users Authenticate to use internet, Surveillance the users net using, In short you can control internet using at every side.

Reply

17 mukesh chaudhary June 21, 2011

thax vikrm!

Reply

18 sathish November 26, 2011

Hi i need a script to generate the report from the squid log file which should display the ip of the visitor. web response sites accessed and denied,etc.

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 7 + 3 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: