darkpoon 发表于 2017-2-16 09:01:26

weblogic调优操作

一、解决30分钟超时问题处理
30分钟超时,日志报错ERROR - 没有找到符合条件的数据
javax.ejb.FinderException: Couldn't get connection:
java.sql.SQLException: Unexpected exception while enlisting XAConnection java.sql.SQLException: XA error: XAResource.XA
R_PROTO start() failed on resource 'CTDataSource': XAER_PROTO : Routine was invoked in an inproper context
需要配置JDBC—connection pool:

Advanced:
1)

2)

二 Too many open files故障处理
错误:
<Critical> <Server> <BEA-002616> <Failed to listen on channel "Default" on 10.150.0.200:8002, failure count: 1, failing for 0 seconds, java.net.SocketException: Too many open files (errno:24)>
系统资源限制所致,需要调整操作系统参数。具体方法如下:
ulimit -a         (察看当前nofiles参数的大小)
ulimit -n xxx   (修改nofiles的大小为xxx)
2、网络问题也有可能,你可以确认一下那段时间的网络是否正常。
三、connection refused故障处理
提高Accpet Backlog值,每次增加25%。
方法:console中 mydomain->servers->myserver->configuration->turing->Accept Backlog
  
页: [1]
查看完整版本: weblogic调优操作