zoukankan      html  css  js  c++  java
  • /dev/shm过小导致ORA00845错误解决方法

    The workaround, if you encounter the ORA-00845 error, is to increase the /dev/shm
    mountpoint size.
    For example:
    # mount -t tmpfs shmfs -o size=7g /dev/shm
    To make this change persistent across system restarts, add an entry in /etc/fstab
    similar to the following:
    shmfs /dev/shm tmpfs size=7g 0

    Starting with Oracle Database 11g, the Automatic Memory Management feature
    requires more shared memory (/dev/shm)and file descriptors. The size of the shared
    memory must be at least the greater of the MEMORY_MAX_TARGET and MEMORY_
    TARGET parameters for each Oracle instance on the computer. If the MEMORY_MAX_
    TARGET parameter or the MEMORY_TARGET parameter is set to a non-zero value, and
    an incorrect size is assigned to the shared memory, it results in an ORA-00845 error at
    startup. On Linux systems, if the operating system /dev/shm mount size is too small
    for the Oracle system global area (SGA) and program global area (PGA), it will result
    in an ORA-00845 error.
    The number of file descriptors for each Oracle instance must be at least
    512*PROCESSES. The limit of descriptors for each process must be at least 512. If file
    descriptors are not sized correctly, you will see an ORA-27123 error from various
    Oracle processes and potentially Linux Error EMFILE (Too many open
    files)in non-Oracle processes.
    To determine the amount of shared

  • 相关阅读:
    P3254 圆桌问题
    P4868 Preprefix sum
    2021sd省选游记
    P4145 上帝造题的七分钟2 / 花神游历各国
    P2801 教主的魔法
    P4147 玉蟾宫(悬线法)
    P1944 最长括号匹配
    CF1214D Treasure Island
    Loadrunner与kylinPET的能力对比测试--web动态请求
    Summer——从头开始写一个简易的Spring框架
  • 原文地址:https://www.cnblogs.com/jimeper/p/2556538.html
Copyright © 2011-2022 走看看