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

时间:2024-03-30 17:05:13

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

一、增大线程数

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

2.1 查看Weblogic并发

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

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

2.2 修改Weblogic并发

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

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

<server>

<name>AdminServer</name>

<self-tuning-thread-pool-size-min>400</self-tuning-thread-pool-size-min>

<self-tuning-thread-pool-size-max>401</self-tuning-thread-pool-size-max>

...

</server>

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

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

2.3 查看效果

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

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

方法二:增大线程

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

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

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调优(重要!!!!)

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

二、weblogic增加延时

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

三、weblogic控制台修改参数

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

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

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

  • 数据库再增加线程

查询线程总数

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

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

具体操作:

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

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

3.重启数据库