Thread: log files
View Single Post
  #1  
Old 10-25-2006, 10:38 AM
inspirix inspirix is offline
Member
 
Join Date: Sep 2006
Posts: 25
Default log files

Not quite a bug, not quite a feature.... hopefully it would be a quick fix:

The log files (stderr.log for example) get locked/closed/something on a server restart:

tail -f stderr.log &
(logs tailed)
lswsctrl restart
(no more logs from tail show up)

in which case you need to break out of the current tail, and redo:

tail -f stderr.log

and then you can continue following the tail

Not sure how this actually happens, but this doesnt seem to be a common thing among any apps ive tried. I cant think of any where the tail wouldnt keep working.

Anyways, not a huge deal, just a little thing I noticed.
Reply With Quote