10201启动时候报ORA-27125

  1. [ora10g@oracle ~]$ sqlplus / as sysdba
  2. SQL*Plus: Release 10.2.0.1.0 - Production on Thu Feb 26 18:46:02 2015
  3. Copyright (c) 1982, 2005, Oracle. All rights reserved.
  4. Connected to an idle instance.
  5. SQL>
  6. SQL>
  7. SQL> startup
  8. ORA-27125: unable to create shared memory segment
  9. Linux-x86_64 Error: 1: Operation not permitted

解决办法

  1. [root@oracle ~]# more /proc/sys/vm/hugetlb_shm_group
  2. 0
  3. [root@oracle ~]# echo 502 >/proc/sys/vm/hugetlb_shm_group
  4. [root@oracle ~]# more /proc/sys/vm/hugetlb_shm_group
  5. 502
  6. [root@oracle ~]# su - ora10g
  7. [ora10g@oracle ~]
  8. [ora10g@oracle ~]$
  9. [ora10g@oracle ~]
  10. [ora10g@oracle ~]$ sqlplus / as sysdba
  11. SQL*Plus: Release 10.2.0.1.0 - Production on Thu Feb 26 18:52:21 2015
  12. Copyright (c) 1982, 2005, Oracle. All rights reserved.
  13. Connected to an idle instance.
  14. SQL> startup
  15. ORACLE instance started.
  16. Total System Global Area 595591168 bytes
  17. Fixed Size 2022600 bytes
  18. Variable Size 167772984 bytes
  19. Database Buffers 423624704 bytes
  20. Redo Buffers 2170880 bytes
  21. Database mounted.
  22. Database opened.

参考:
Oracle 10g ORA-27125:unable to create shared memory segment 解决方法





原文地址:https://www.cnblogs.com/haoxiaoyu/p/07137d973704c5813476b0c034214e1a.html