启动数据库报错:ORA-27123: unable to attach to shared memory segment

客户配置tuxedo连接oracle,一直报错,无法使用tuxedo用户登录oracle。

oracle open的状态下,使用tuxedo用户,进入sqlplus,显示connect to an idle instance

然后尝试startup,报错如下:


ORA-27123: unable to attach to shared memory segment
SVR4 Error: 13: Permission denied


对于非oracle用户使用sqlplus时,需要将该用户加到oracle dba组中,并且拥有访问$ORACLE_HOME/bin/oracle的权限

比较奇怪,我之前给了777的权限,依然不可以,然后给了6755的权限,便可以正常登录了。也不会显示连接到一个空实例上。

解决方法:

chmod 6755 $ORACLE_HOME/bin/oracle

原文地址:https://www.cnblogs.com/shujuyr/p/15135788.html