Pool abc is Suspended, cannot allocate resources to appl
(2016-05-23 16:46:22)分类: oracle |
weblogic报错挂起:Pool abc is Suspended, cannot allocate resources to
applications
检查数据库连接数:ps -ef|grep LOCAL=NO|wc -l发现已经占满processes
处理方法:
确定weblogic所在服务器主机名为:host11
在数据库层面检查inactive的连接:
select b.SPID,a.SID,a.machine,a.USERNAME,a.status,a.process
from v$session a,v$process b where
a.PADDR=b.ADDR
and a.sid in(select sid from v$session where (machine like
'host11%') and
status='INACTIVE')
将spid在系统层面kill -9
释放连接数后,weblogic连接正常。
类似问题: