网上参阅资料,整理到这里,以备查阅。
主要由于内存的分配问题,导致oracle数据库启动失败。
数据库关闭之后重新启动,出现下面的错误:
SQL> startup;
ORA-27102: out of memory
Linux-x86_64 Error: 28: No space left on device
SQL> startup;
ORA-27102: out of memory
Linux-x86_64 Error: 28: No space left on device
Cause
shmall is the total amount of shared memory, in pages, that the system can use at one time.
Solution
Set shmall equal to the sum of all the SGAs on the system, divided by the page size.
The page size can be determined using the following command:
做了如下操作,可正常启动:
vi /etc/sysctl.conf
kernel.shmall = 2097152
kernel.shmall = 4194304(4×1024×1024)
即
kernel.core_uses_pid = 1
#kernel.shmall = 2097152
kernel.shmall = 4194304
kernel.shmmax = 5368709120
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
then run the following command:
# sysctl -p
net.ipv4.ip_forward = 0
net.ipv4.conf.default.rp_filter = 1
net.ipv4.conf.default.accept_source_route = 0
kernel.sysrq = 0
kernel.core_uses_pid = 1
kernel.shmall = 4194304
kernel.shmmax = 5368709120
kernel.shmmni = 4096
kernel.sem = 250 32000 100 12
# cat /proc/sys/kernel/shmall
4194304
参考网文:
http://yuekczy.spaces.live.com/blog/cns!139B3FC812B094AB!397.entry
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/24558279/viewspace-694636/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/24558279/viewspace-694636/
本文解决了一个由于内存分配问题导致的Oracle数据库启动失败的问题。通过调整Linux系统的共享内存参数,成功解决了ORA-27102: out of memory错误。
888

被折叠的 条评论
为什么被折叠?



