views:

180

answers:

1

Good day,

We have Apache httpd server set up as our ColdFusion server on a Solaris box. And due to some code changes to the deployed ColdFusion application, our ColdFusion server (the httpd service and not the actual machine) is restarting frequently.

Any ideas on where to start looking? ...or which logs to turn to? ...or common culprits?

Thanks, Franz

+1  A: 

I would start by looking at the JVM logs, to see how often the garbage collector is being called.

It will most definitely have something to do with memory leaking on the new piece of code you've just deployed, so looking at the JVM logs, will give you a good clue.

Also, I'd suggest using a tool such as FusionReactor, as this will give you a great view of exactly which of your pages is doing, and how much memory each request uses.

Hope it helps

Marcos Placona