[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] RE: [cobalt-users]
- Subject: Re: [cobalt-users] RE: [cobalt-users]
- From: Nic Rodgers <nic@xxxxxxxxxxxxxx>
- Date: Wed Oct 25 05:41:53 2000
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
> 2) i need a console based LOGFILE viewer so i can see conection attempts
> (something easy to use and install)
Try ssh'ing (or telnet) to your RaQ and type:
"tail -f /var/log/httpd/access"
Alternatively, if you wish to exclude certain Ips (perhaps if you don¹t wish
to display log entries from your own machine:
"tail -f /var/log/httpd/access | grep -v 192.168.0.1"
Replacing the IP address with the IP to ignore.