zoukankan      html  css  js  c++  java
  • ORA27300 ORA27301 ORA27302 ORA27157

    有个数据库crash了,环境是

    1
    2
    3
    os:
    [root@oracle ~]# cat /etc/redhat-release 
    CentOS Linux release 7.2.1511 (Core)
    1
    db:11.2.0.4.0

    今天上午10点25数据库挂的,报错是:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    Fri Nov 23 10:25:34 2018
    Errors in file /home/app/oracle/diag/rdbms/oracrm/oracrm/trace/oracrm_dbw2_20900.trc:
    ORA-27157: OS post/wait facility removed
    ORA-27300: OS system dependent operation:semop failed with status: 43
    ORA-27301: OS failure message: Identifier removed
    ORA-27302: failure occurred at: sskgpwwait1
    Errors in file /home/app/oracle/diag/rdbms/oracrm/oracrm/trace/oracrm_dbw3_20902.trc:
    ORA-27157: OS post/wait facility removed
    ORA-27300: OS system dependent operation:semop failed with status: 43
    ORA-27301: OS failure message: Identifier removed
    ORA-27302: failure occurred at: sskgpwwait1

    metalink上给的解释是:

    1
    2
    3
    The semaphores used by Oracle have been inadvertendly removed
    The errors are signalling that something happened at the OS level with shared memory and/or semaphores. The semaphore sets could be removed manually, or they could be dying for some reason due to a hardware error.
    Either when remounting the /dev/shm or You may want to check for any possibility of user dba using the "ipcrm" command to kill the semaphores (accidentally) since the error ora-27301 (OS failure message: Identifier removed) suggests that. Also, it could have been a bad memory stick or something else at the OS level. Someone could also have removed the shared memory segments at the OS level for some specific reason, or by accident. Most likely something had removed the shared memory and semaphore sets in use by 'oracle'. This can only be done by a root-level user or 'oracle' itself who owns the resources. If someone logged in as root and removed all IPC resources, Oracle would crash when it lost the allocated shared memory/semaphores.

    solution:

    This could be due to some outside user or application removing the semaphores/shared memory. 
    To monitor the semaphore/shared memory state we can use the following methods:

    1. Setup a cronjob to run every 5-10min and dump the output of 'ipcs' and 'ps - ef' to a file with a timestamp. 
      Rotate your logs every 4-7 days to build a history. 
      Then if the problem re-occurs, we can at least try to make sure 'ipcrm' wasn't the culprit and get some general information of the state of the IPC resources plus the processes running.

    2. You can also consult with your sysadmin to check if there is any OS level auditing that can be turned on to audit the usage of commands like 'ipcrm' which can remove shared memory segments /semaphore sets.

    Note: This issue can happen on different platform, but in case you encounter the issue in RHEL7.2, then please also check below RHEL7.2 specific information.

    In  RHEL7.2 operating system setting RemoveIPC=YES crashes the database.The default value for RemoveIPC in RHEL7.2 is YES.

             Workaround :

          1) Set RemoveIPC=no in /etc/systemd/logind.conf if it is not in that file

          2) Reboot the server or restart systemd-logind as follows:
           # systemctl daemon-reload
           # systemctl restart systemd-logind

             OR

           Migrate to Oracle Linux 7.2 resolves the problem.

  • 相关阅读:
    oracle(Xe)数据库远程连接需修改配置参数
    oracl 权限循环查询
    控件网站
    java常用类(1)
    关于webdriver和谷歌浏览器的那些事
    2020年第27周,24.75h,完成计算智能/物联网/数据挖掘大作业
    2020年第26周,24.75h,计算智能的大小作业
    2020年第25周,25.5h,随机过程考试、report和计算智能作业
    2020年24周,11.75h,以完成作业和考试为主,看了一点点论文
    2020年第23周,11h,努力完成课程作业
  • 原文地址:https://www.cnblogs.com/shujuyr/p/15554427.html
Copyright © 2011-2022 走看看