加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

oracle紧密相关的unix/linux内核参数

发布时间:2020-12-12 15:50:08 所属栏目:百科 来源:网络整理
导读:下面是几个与oracle紧密相关的unix/linux内核参数,在安装数据库的时候,一般都需要根据实际情况进行调整。 Init.ora Parameter Kernel Parameter db_block_buffers shmmax,shmall db_files(maxdatafiles) nfile,maxfiles large_pool_size shmmax,shmall log
Init.ora ParameterKernel Parameterdb_block_buffersshmmax,shmalldb_files(maxdatafiles)nfile,maxfileslarge_pool_sizeshmmax,shmalllog_buffershmmax,shmallprocessesnproc,semmsl,semmnsshared_pool_size

shmmax,shmall

具体参数的说明如下(为避免歧义,这里不做翻译):
maxfiles - Soft file limit per process.
maxuprc - Maximum number of simultaneous user processes per userid.
nfile - Maximum number of simultaneously open files systemwide at any given time.
nproc - Maximum number of processes that can exist simultaneously in the system.
shmall - This parameter sets the total amount of shared memory pages that can be used system wide. Hence,shmall should always be at least
ceil(shmmax/page_size).
shmmax - The maximum size(in bytes) of a single shared memory segment.
shmmin - The minimum size(in bytes) of a single shared memory segment.
shmmni - The number of shared memory identifiers.
shmseg - The maximum number of shared memory segments that can be attached by a process.
semmns - The number of semaphores in the system.
semmni - The number of semaphore set identifiers in the system; determines the number of semaphore sets that can be created at any one time.
semmsl - The maximum number of sempahores that can be in one semaphore set. It should be same size as maximum number of Oracle processes.
这里的大部分参数根据oracle官方的安装手册都可以进行正确的设置,但在实际工作中,发现很多DBA对shmmax和shmall这两个参数的设置经常出问题,从而影响数据的整体性能,甚至导致安装失败。
shmmax参数是单个共享内存段的最大值,单位是bytes。这里与oracle的SGA紧密相关,因为SGA使用的就是共享内存段,所以,shmmax>=sga_target,这个参数比较容易设置错误,因为在安装的时候,如果shmmax<sga_target,安装并不会报错,但是,当数据库启动后,SGA会由多个共享内存段组成,而SGA是一个整体,多个共享内存段之间会存在通信,这些通信对于oracle来说是不必要的开销,会导致数据库性能下降。
shmall参数是共享内存页面数的最大值,需要与shmmax参数进行协调设置,shmall>=ceil(shmmax/page_size),其中page_size一般为4k,以具体的操作系统为准。这里要特别注意,shmall的作用域是整个系统范围,而shmmax的作用域是单个共享内存段。因此,如果在一个系统上有多个oracle实例,shmmax设置大于等于最大的sga_target,而shmall需要大于等于所有实例的sga_target之和除以sga_target。这种情况下,如果多个实例已经启动,在添加新实例时,如果shmall参数设置过小,会出现ora-27102 out of memory,导致dbca建库失败。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

下面是几个与oracle紧密相关的unix/linux内核参数,在安装数据库的时候,一般都需要根据实际情况进行调整。

    推荐文章
      热点阅读