热门标签 | HotTags
当前位置:  开发笔记 > 运维 > 正文

OracleEBS连接数不足

发现有的时候,EBS会报连接数不足的问题。所以尝试着提高了processes和sessions,EBS安装完之后,数据库init参数processes默认为

发现有的时候,EBS会报连接数不足的问题。所以尝试着提高了processes和sessions,EBS安装完之后,数据库init参数processes默认为

发现有的时候,EBS会报连接数不足的问题。所以尝试着提高了processes和sessions,EBS安装完之后,数据库init参数processes默认为200,sessions默认为400.这里我把DB的processes和sessions提高到了500和1000。
processes = 500 # Max. no. of users x 2
sessiOns= 1000 # 2 X processes


修改完之后,重启DB,参数就会生效。

addbctl.sh stop
addbctl.sh start


查看参数设置

show parameter processes
show parameter sessions

文章Oracle EBS DB Init Parameters里(见 ),,有提到Oracle提供一个init parameter参考的设置。

关于Processes和sessions parameters,init.ora有相关描述
#########
#
# Processes and sessions parameters
#
# A database process can be associated with one or more database
# sessions. For all technology stack components other than Oracle
# Forms, there is a one-to-one mapping between sessions and processes.
#
# For Forms processes, there will be one database session per
# open form, with a minimum of two sessions per Forms user (one
# for the navigator form, and one for the active form).
#
# The sessions parameter should be set to twice the value of the
# processes parameter.
#
#########

另外如何查询当下数据的连接数和最大连接数

  • --当前的连接数

  • 推荐阅读
    author-avatar
    骏天天在线
    这个家伙很懒,什么也没留下!
    PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
    Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有