I'm using apache-2.0.55-r1. When logrotate archives the log file and creates a new one, apache crashes. I get the following log:
[Wed Mar 01 03:05:56 2006] [notice] Graceful restart requested, doing restart
[Wed Mar 01 03:05:56 2006] [notice] seg fault or similar nasty error detected in the parent process
the httpd process dies, so I need to do a "killall apache2" to get apache working again
I've seen this is because the logrotate scripts call /etc/init.d/apache2 reload, and this command crashes the server. If I change "reload" by "restart" in /etc/logrotate.d/apache2 it works fine.

