Linux Process

Dear all,

I have a Oracle BI server process which is running in one linux machine.

But the process gets killed itself automatically once every 3 days .

It has a DB connection with another server.

Is there any way to find out what is the reason behind this process kill.

And also becaue of this users could not login in to the application.

Regards
Rj

If it is like clockwork, perhaps some overhead process thinks it is hung or has exhausted some rationed resource. Check for core files, and if found, get a stack trace from them with a debug tool. If you know when it will be killed, run strace/truss/tusc on it just before (since the trace overhead is high) to see where the killing signal comes from.

Thanks DGPickett. I am also trying to do work on that.