PHP suexec Error

No matter what PHP script I run, I get the following error in my error_log:

[Mon May 23 16:37:02 2005] [notice] caught SIGTERM, shutting down
[Mon May 23 16:37:02 2005] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Mon May 23 16:37:03 2005] [warn] RSA server certificate CommonName (CN) localhost.localdomain' does NOT match server name!? [Mon May 23 16:37:04 2005] [notice] mod_python: Creating 32 session mutexes based on 150 max processes and 0 max threads. [Mon May 23 16:37:04 2005] [warn] RSA server certificate CommonName (CN) localhost.localdomain’ does NOT match server name!?
[Mon May 23 16:37:04 2005] [notice] Digest: generating secret for digest authentication …
[Mon May 23 16:37:04 2005] [notice] Digest: done
[Mon May 23 16:37:05 2005] [notice] Apache configured – resuming normal operations

Any ideas on the suexec / localhost.localdomain error?

A default certificate is made for Apache with SSL when it’s installed. Since the ServerName variable in your httpd.conf isn’t set to “localhost.localdomain” the SSL subsystem complains. This really isn’t a problem (hence the ‘warn’ status) since you’ll rarely (if ever) use this default cert for anything. You can safely ignore it.

Chris

That’s not what people have told me, but ok, if you say so =)

I was under the impression that this led to the SEGFAULTs I was having as well?