Ora-27103 Internal Error Svr4 Error 11 Resource | Temporarily Unavailable
SEMMSL = 250 (or max processes per instance) SEMMNS = 32000 (or higher) SEMOPM = 100 SEMMNI = 256 (or 1024 for large systems) Set persistently:
SELECT value/1024/1024 MB FROM v$parameter WHERE name='sga_max_size'; Check free memory :
# shmmax = 80% of RAM, shmall = shmmax / 4096 (page size) echo "kernel.shmmax = 68719476736" >> /etc/sysctl.conf # 64GB echo "kernel.shmall = 16777216" >> /etc/sysctl.conf sysctl -p : SEMMSL = 250 (or max processes per instance)
# Current limits cat /proc/sys/kernel/shmmax cat /proc/sys/kernel/shmall Set for large SGA:
ls -l $ORACLE_HOME/bin/oracle # Should have setuid (rwsr-s--x) chmod 6751 $ORACLE_HOME/bin/oracle Increase (Linux): SEMMSL = 250 (or max processes per instance)
set semsys:seminfo_semmns=4096 set semsys:seminfo_semmni=1024 set semsys:seminfo_semmsl=512 (if instance is down):
vi /etc/security/limits.conf Add:
echo 65536 > /proc/sys/kernel/pid_max # temporary echo "kernel.pid_max=65536" >> /etc/sysctl.conf Check for zombie processes:
ipcs -s | grep oracle | awk 'print $2' | xargs -n1 ipcrm -s Linux : SEMMSL = 250 (or max processes per instance)
oracle soft nproc 16384 oracle hard nproc 32768 oracle soft nofile 65536 oracle hard nofile 65536 in /etc/system :