PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

ORA-00210 ORA-17503: 由于CHOWN -R ORACLE:OINSTALL 导致的

原创
2016-06-07 15:50:24 1369浏览

在启动 时候报 ORA-00210: cannot open the specified control file ORA-00202: control file: '+DATA/posdb/controlfile/current.260.822142153' ORA-17503: ksfdopn:2 Failed to open file +DATA/sharkdb/controlfile/current.260.822142153 ORA-15001: di

在启动 时候报

ORA-00210: cannot open the specified control file
ORA-00202: control file: '+DATA/posdb/controlfile/current.260.822142153'
ORA-17503: ksfdopn:2 Failed to open file +DATA/sharkdb/controlfile/current.260.822142153
ORA-15001: diskgroup "DATA" does not exist or is not mounted
ORA-15055: unable to connect to ASM instance
ORA-12547: TNS:lost contact

无法连接ASM 实例.

对 /u01/app/oracle  目录 对/u01/app CHOWN -R oracle:oinstall  /u01/app

因为安装的时候 两个用户 grid oracle 分别属于不同的组.

解决方案 把两个用户加满对方所在的组.

或者是 修改目录 把原来的目录修改回原来用户的所有者.

并且修改下面目录的S权限

[root@camsdb2 bin]#cd /u01/app/11.2.0/grid/bin
[root@camsdb2 bin]# ll oracle
-rwxr-x--x 1 grid oinstall 184286283 07-05 17:46 oracle
[root@camsdb2 bin]# chmod 6751 oracle
[root@camsdb2 bin]# ll oracle
-rwsr-s--x 1 grid oinstall 184286283 07-05 17:46 oracle
[root@camsdb2 bin]# cd /u01/app/oracle/product/11.2.0/dbhome_1/bin
[root@camsdb2 bin]# ll oracle
-r-sr-s--x 1 oracle asmadmin 210824752 07-06 10:32 oracle
[root@camsdb2 bin]# chmod 6751 oracle
[root@camsdb2 bin]# ll oracle
-rwsr-s--x 1 oracle asmadmin 210824752 07-06 10:32 oracle

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。