ORA-27125: unable to create shared memory segment

不进行创建数据库的操作;修改$ORACLE_HOME/bin 下的oracle脚本。

cd $ORACLE_HOME/bin
mv oracle oracle.bin
cat >oracle <<"EOF"
#!/bin/bash
export DISABLE_HUGETLBFS=1
exec $ORACLE_HOME/bin/oracle.bin $@
EOF
chmod +x oracle

这一步是为了解决 ORA-27125: unable to create shared memory segment 这个错误。ORACLE的问题?Fedora的问题?

猜你喜欢

转载自ethan163.iteye.com/blog/1156808