Basic Dumb Logging Question

2003-07-31 Thread David Hart
Suppose, for testing purposes, that I want to display my httpd access and error logs, on the screen, updating in real time. Is there a way to do this? Thanks. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list

Re: Basic Dumb Logging Question

2003-07-31 Thread Leonard Miller
tail -f /var/log/httpd/access_log tail -f /var/log/httpd/error_log [EMAIL PROTECTED] 07/31/03 09:11AM Suppose, for testing purposes, that I want to display my httpd access and error logs, on the screen, updating in real time. Is there a way to do this? Thanks. -- redhat-list mailing list

Re: Basic Dumb Logging Question

2003-07-31 Thread David Hart
On Thu, 2003-07-31 at 09:13, Leonard Miller wrote: tail -f /var/log/httpd/access_log tail -f /var/log/httpd/error_log [EMAIL PROTECTED] 07/31/03 09:11AM Suppose, for testing purposes, that I want to display my httpd access and error logs, on the screen, updating in real time. Is there a

Re: Basic Dumb Logging Question

2003-07-31 Thread sberg
Check the options on the tail command. tail -f filename will display the last 10 lines and then continue to display lines as they are written to the file. David Hart writes: Suppose, for testing purposes, that I want to display my httpd access and error logs, on the screen, updating in real

RE: Basic Dumb Logging Question

2003-07-31 Thread Cowles, Steve
David Hart wrote: Suppose, for testing purposes, that I want to display my httpd access and error logs, on the screen, updating in real time. Is there a way to do this? I keep terminal windows like this open 24x7. Another alternative to the -f option of the tail command (to compensate for

Re: Basic Dumb Logging Question

2003-07-31 Thread Richard Bewley
An alternative, although not as easy, would be to less filename, then shift + f Richard At 08:14 AM 7/31/2003 -0500, you wrote: Check the options on the tail command. tail -f filename will display the last 10 lines and then continue to display lines as they are written to the file. David Hart

Re: Basic Dumb Logging Question

2003-07-31 Thread Bret Hughes
On Thu, 2003-07-31 at 08:46, Richard Bewley wrote: An alternative, although not as easy, would be to less filename, then shift + f Yeah I use less +F filename all the time. Just as easy. Bret -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]

Re: Basic Dumb Logging Question

2003-07-31 Thread Jack Bowling
** Reply to message from Leonard Miller [EMAIL PROTECTED] on Thu, 31 Jul 2003 08:13:39 -0500 tail -f /var/log/httpd/access_log tail -f /var/log/httpd/error_log [EMAIL PROTECTED] 07/31/03 09:11AM Suppose, for testing purposes, that I want to display my httpd access and error logs, on the

RE: Basic Dumb Logging Question

2003-07-31 Thread Chris W. Parker
Cowles, Steve mailto:[EMAIL PROTECTED] on Thursday, July 31, 2003 6:45 AM said: I keep terminal windows like this open 24x7. I don't understand this. You don't mean that you have a different monitor dedicated to each tail -f do you? Thanks, Chris. -- redhat-list mailing list

Re: Basic Dumb Logging Question

2003-07-31 Thread Reuben D. Budiardja
On Thursday 31 July 2003 12:04 pm, Chris W. Parker wrote: Cowles, Steve mailto:[EMAIL PROTECTED] on Thursday, July 31, 2003 6:45 AM said: I keep terminal windows like this open 24x7. I don't understand this. You don't mean that you have a different monitor dedicated to each tail -f do

RE: Basic Dumb Logging Question

2003-07-31 Thread David Hart
Thanks all. BTW, Multitail is a great way to go if you want several logs displayed with regex filtering of the output. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list