We have deployed a PHP application to an Ubuntu 12.10 server running PHP 5.4.6
When restarting Apache and monitoring via top, an Apache process will spawn and start consuming 100% of CPU and never die. A few minutes later, another similar Apache process will spawn, consume 100% of CPU and not die. Below is an example.
9766 www-data 20 0 697m 384m 22m R 99,7 2,4 10:15.66 apache2
I then changed the Apache LogFormat, to also log the process ID (9766 in this case).
But in the AccessLog, no process with 9766 exists! Only the ones that spawn and die the way they should.
Anyone have any ideas on how to debug this and get more information about this process ID? Specifically, I would ideally want to know what page Apache called that spawned that process ID.
This issue only happens on the liver server, which I have upgraded from 12.04 LTS to 12.10 (but the same issue persists).