Oracle People:
I recieved a good tip from dbasupport to try the PROFILES with "resource_limit" and "IDLE_TIME". Thats great but 2 problems have occured:
1.) Once the user is killed by "IDLE_TIME" timeout his listener process remains untill he attempts another action:
-------
oracle 22701 22700 0 10:09:12 ? 0:00 oraclefreddy (DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))
-------
So I get stuck with ghost listener procs even though I got rid of the user.
2.) I try to use my brain and think- OK try to find the way to timeout listener procs. So I try the following which doesn't seem to kill off the ghost listener procs:
edit listerner.ora:
---------------------------
(SID_DESC =
(GLOBAL_DBNAME = freddy)
(ORACLE_HOME = /u00/app/oracle/product/8.1.7)
(SID_NAME = freddy)
(PRESPAWN_MAX = 99)
(PRESPAWN_LIST =
(PRESPAWN_DESC =
(PROTOCOL = TCP)
(POOL_SIZE = 10)
(TIMEOUT = 5)
)
)
----------------------------------
I guess I guessed wrong and this timeout is only for prespawned procs. If so ...
How do I automatically get rid of listener procs that hang around after the user is killed. This is bad because I seem to get these ghost procs from web servers.
Thanks,
Roger
