zoukankan      html  css  js  c++  java
  • ORA27125 解决方法<转>

    http://www.eygle.com/rss/20111202.html   <原文>

    启动客户的数据库,遇到:

    SQL> startup
    ORA-27125: unable to create shared memory segment
    Linux-x86_64 Error: 1: Operation not permitted

    网上找到了解决方法

    在某些操作系统上,当启动数据库或者创建数据库时都可能出现ORA-27125错误,我在Oracle Linux 6上安装Oracle 10.2.0.1,创建数据库时就遇到了这个错误。
    这个错误的解决就是修改 /proc/sys/vm/hugetlb_shm_group 文件。
    以下是老杨提到过的一个问题,解决方法相同:
    帮客户解决一个Linux上数据库无法启动的问题。
    客户的Linux 5.6 x86-64环境,安装数据库后,启动数据库报错:ORA-27125。
    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
    然后启动数据库,问题消失。
    那么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.
    另在安装过程中遇到的操作系统验证错误,可以通过如下方式解决:
    在Linux系统中安装oralce的过程中,如果Linux发行版本不是oracle的推荐版本,可能会报如下错误,导致runInstaller无法完成:
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2
    Failed <<<<
    遇到这个问题,可以通过如下三种方式解决
    1、修改Linux的发行标记
    如在redhat-5上安装oracle的时候,需要将文件 '/etc/redhat-release'的内容由
    Red Hat Enterprise Linux Server release 5 (Tikanga)
    修改为Oracle支持的版本
    Red Hat Enterprise Linux Server release 4 (Tikanga)
    2、runInstaller的时候加上-ignoreSysPreReqs参数,如:
    ./runInstaller -ignoreSysPreReqs
    3.修改oraparam.ini的参数
    增加你的系统版本号
  • 相关阅读:
    py2与py3的字符编码的区别
    深浅拷贝大法
    列表、字典、元组、集合的内置方法
    数据类型的内置方法
    与while和for的爱恨情仇
    三种格式化输出以及运算符和if
    在outlook中发邮件判断邮件发送成功的方法
    修練營ASP.NET]淺談多層式架構 (Multi Tiers)
    软考编译原理小结
    0型文法、1型文法、2型文法、3型文法
  • 原文地址:https://www.cnblogs.com/xujj/p/2548292.html
Copyright © 2011-2022 走看看