I have installed 10gR2 on linux environment, When running DBCA it got filed with below error
ORA-27125: unable to create shared memory segment
SOLUTION:
cd $ORACLE_HOME/bin mv oracle oracle.bin —- Paste it as one — cat >oracle <<“EOF” #!/bin/bash export DISABLE_HUGETLBFS=1 exec $ORACLE_HOME/bin/oracle.bin $@ EOF —- End of paste —chmod +x oracle
Thank You !!
本文介绍了如何解决在Linux环境下安装Oracle 10g R2时遇到的DBCA错误ORA-27125:无法创建共享内存段的问题。通过修改Oracle二进制文件,设置环境变量DISABLE_HUGETLBFS为1来规避此错误。
1万+

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



