ORA-27137
Tried to startup a database to NOMOUNT, but failed.
SQL> startup nomount;
ORA-27137: unable to allocate large pages to create a shared memory segment
Linux-x86_64 Error: 12: Cannot allocate memory
Additional information: 402653184
Additional information: 1
Except that you have special reasons to use hugepages for this database, you can disable it by this.
SQL> alter system set use_large_pages=FALSE scope=spfile;
SQL> shutdown immediate;
SQL> startup;
Spot on , thanks
You’re welcome.
AHAHAHAAHAHAH so a way to solve is to disable hugepages AHAAHAHAHAH you are a genius!
Oh, thank you for the compliments. Yeah, it’s the simplest way if you don’t use hugepages. On the other hand, if you plan to use hugepages, you may also consider it as a temporary solution until you find a permanent one.