weblogic及oracle调优(重要!!!!)

       weblogic部署系统,应用运行一段时间经常自动宕机,解决方式:增加weblogic线程、增加oracle数据库线程、weblogic添加数据库时,如果weblogic版本为10.3.6,驱动选择要选第三个,以下是具体操作:

一、增大线程数

Weblogic服务器可以通过配置config.xml文件来达到效果的。

2.1 查看Weblogic并发

首先登录domain的console,然后点击环境>服务器>AdminServer>监控>线程,如下图所示:

weblogic及oracle调优(重要!!!!)_第1张图片

2.2 修改Weblogic并发

打开config.xml文件,这里示例位置为C:\weblogic\Middleware\Oracle_Home\user_projects\domains\base_domain\config\config.xml(需要自己的工程查找)。

在对应位置加入红色标注的两行内容:

AdminServer

400

401

...

weblogic及oracle调优(重要!!!!)_第2张图片

注:修改后需重启服务器生效

2.3 查看效果

点击环境>服务器>AdminServer>监控>线程,可以看到刚刚的设置已经生效,如下图所示:

weblogic及oracle调优(重要!!!!)_第3张图片

方法二:增大线程

-Dweblogic.threadpool.MinPoolSize=300 -Dweblogic.threadpool.MaxPoolSize=450

weblogic及oracle调优(重要!!!!)_第4张图片

2.    bea\user_projects\domains\ctbjoss\bin下找到下面文件夹

set JAVA_OPTIONS=%JAVA_OPTIONS% -Dweblogic.threadpool.MinPoolSize=100

set JAVA_OPTIONS=%JAVA_OPTIONS% -Dweblogic.threadpool.MaxPoolSize=500

weblogic及oracle调优(重要!!!!)_第5张图片

3weblogic及oracle调优(重要!!!!)_第6张图片

二、增加延时

weblogic及oracle调优(重要!!!!)_第7张图片

三、weblogic控制台修改参数(重要!!!!!!!!

weblogic及oracle调优(重要!!!!)_第8张图片

weblogic及oracle调优(重要!!!!)_第9张图片

weblogic及oracle调优(重要!!!!)_第10张图片

  • 数据库再增加线程

查询线程总数

select * from v$parameter t where name='processes'

weblogic及oracle调优(重要!!!!)_第11张图片

具体操作:

1.select * from v$parameter t where name='processes';

2.alter system set processes=300 scope = spfile;

3.重启数据库

 

 

你可能感兴趣的:(Java技术开发,数据库,weblogic)