码迷,mamicode.com
首页 > 其他好文 > 详细

解决办法:ORA-00845: MEMORY_TARGET not supported on thi

时间:2018-06-04 11:49:42      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:oracle

ORA-00845: MEMORY_TARGET not supported on this system


RA:Linux系统的shm大小比SGA设置的小造成的,SGA设置为4G,而shm只有1G


解决办法:

1.临时解决

mount -o size=8G -o nr_inodes=1000000 -o noatime,nodiratime -o remount /dev/shm

2.永久解决

调整shm大小,

vim /etc/fstab

tmpfs                   /dev/shm                tmpfs   defaults        0 0

改成

tmpfs                   /dev/shm                tmpfs   defaults,size=6G        0 0

wq保存退出

重新mount,使shm生效

mount -o remount /dev/shm


解决办法:ORA-00845: MEMORY_TARGET not supported on thi

标签:oracle

原文地址:http://blog.51cto.com/qingmiao/2124470

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!