安装Oracle后数据库不能启动,出现ORA-27125错误

iamlaosong文

HP DL580G9安装RHEL6.6+Oracle11后因导入数据太慢无法使用,找到厂家,测试后表示硬件没有问题,所能做的就是升级BIOS。重新安装时选择的是RHEL6.6+Oracle10,Oracle安装也还顺利,安装后测试正常,只是第二天设置Oracle自启动时发现服务器重启后Oracle却无法启动了,错误是:

ORA-27125:unabletocreatesharedmemorysegment

好在网上有解决办法,按其办法,问题解决

当初DL580G7安装RHEL5.5+Oracle10并没有出现不能启动的现象,而且下面提到的hugetlb_shm_group文件内容也是0,并不需要将其改为dba的组ID,数据库启动正常,不知道为什么,只能解释为环境变了,本服务器内存64G,而以前的G7是16G。

问题解决方法摘录如下:

在某些操作系统上,当启动数据库或者创建数据库时都可能出现ORA-27125错误,在Linux 6上安装Oracle 10.2.0.1,创建数据库时就遇到了这个错误。 这个错误解决就是修改 /proc/sys/vm/hugetlb_shm_group 文件

Oracle文档上关于ORA-27125错误的描述为: ORA-27125: unable to create shared memory segment Cause: shmget() call Failed Action: contact Oracle support
查询了一下,发现问题和linux上的hugetbl有关。 解决方法也很简单,首先检查oracle用户的组信息:

[oracle@yans1 ~]$ id oracle

uid=500(oracle) gid=502(oinstall) groups=502(oinstall),501(dba)

[oracle@yans1 ~]$ more /proc/sys/vm/hugetlb_shm_group 0

下面用root执行下面的命令,将dba组添加到系统内核中:

# echo 501 > /proc/sys/vm/hugetlb_shm_group 然后启动数据库,问题消失。

但以上这种方式在重启操作系统后失效, /proc/sys/vm/hugetlb_shm_group又变为了0,建议采用以下方式解决
加入vm.hugetlb_shm_group = 501 到/etc/sysctl.conf中来解决

# vi /etc/sysctl.conf
加入如下的内容,其中501为dba组号,需要根据你实际的情况进行改变。 vm.hugetlb_shm_group = 501

# sysctl -p 那么hugetlb_shm_group组是什么呢?以下是解释: hugetlb_shm_group contains group id that is allowed to create SysV shared memory segment using hugetlb page 这里反复提到了HugePage,以下是关于HugePage的说明和解释: When a process uses some memory,the cpu is marking the RAM as used by that process. For efficiency,the cpu allocate RAM by chunks of 4K bytes (it's the default value on many platforms). Those chunks are named pages. Those pages can be swapped to disk,etc. Since the process address space are virtual,the cpu and the operating system have to remember which page belong to which process,and where it is stored. ObvIoUsly,the more pages you have,the more time it takes to find where the memory is mapped. When a process uses 1GB of memory,that's 262144 entries to look up (1GB / 4K). If one Page Table Entry consume 8bytes,that's 2MB (262144 * 8) to look-up. Most current cpu architectures support bigger pages (so the cpu/OS have less entries to look-up),those are named Huge pages (on Linux),Super Pages (on BSD) or Large Pages (on Windows),but it all the same thing.

相关文章

Java Oracle 结果集是Java语言中处理数据库查询结果的一种方...
Java AES和Oracle AES是现代加密技术中最常使用的两种AES加密...
Java是一种广泛应用的编程语言,具备可靠性、安全性、跨平台...
随着移动互联网的发展,抽奖活动成为了营销活动中不可或缺的...
Java和Oracle都是在计算机领域应用非常广泛的技术,他们经常...
Java 是一门非常流行的编程语言,它可以运行于各种操作系统上...