Page 1 of 1

Several apache log lines at task manager

PostPosted: 02. May 2015 12:01
by hanpedro
My box is windows 8.1 x64 enterprize and installed xampp 5.6.3.

Image

I have seven virtual hosts at httpd-vhosts.conf.

Code: Select all
<VirtualHost *:80>
   ServerAdmin webmaster@server2.net
   DocumentRoot e:\_web\myserver
   ServerName localhost.myserver
   ServerAlias www.localhost.myserver
   CustomLog "|C:/xampp/apache/bin/rotatelogs.exe C:/xampp/apache/logs/localhost.myserver_access_log.%Y-%m-%d 86400 +540" common
   ErrorLog "|C:/xampp/apache/bin/rotatelogs.exe C:/xampp/apache/logs/localhost.myserver_error_log.%Y-%m-%d 86400 +540"
</VirtualHost>
.....

Re: Several apache log lines at task manager

PostPosted: 02. May 2015 12:49
by Nobbie
I cannot find any question?!

Re: Several apache log lines at task manager

PostPosted: 04. May 2015 14:37
by mark.mcdonald
I think the question is in the title "Why so many?"

Re: Several apache log lines at task manager

PostPosted: 05. May 2015 03:05
by gsmith
One for each log your piping to rotatelogs.
You can reduce this using mod_log_rotate. It only works with the access logs (CustomLog) unfortunately but would reduce that number by 1/2 looking at your example config.

Re: Several apache log lines at task manager

PostPosted: 13. May 2015 20:09
by hanpedro
gsmith/

Thanks a lot!