Check shmmax kernel parameter and set to recommended value-
This parameter defines the maximum size in bytes of a single shared memory segment that a Linux process can allocate in its virtual address space.
Caution - when tying to allocate SGA size bigger than SHMMAX the error below occur.
“SGA size con not be greater than maximum shared memory segment size (shmmax value)”
If shm* parameter are set, then look at hugepages (it may be due to insufficient HugePages)
Check shmmax kernel parameter and set to recommended value- This parameter defines the maximum size in bytes of a single shared memory segment that a Linux process can allocate in its virtual address space.
Caution - when tying to allocate SGA size bigger than SHMMAX the error below occur. “SGA size con not be greater than maximum shared memory segment size (shmmax value)”
If shm* parameter are set, then look at hugepages (it may be due to insufficient HugePages)
grep -huge /proc/meminfo
and try to free it.