INS-41314



I am doing installation of RAC using nfs for 11gr2 (11.2.0.2) on Linux OS- 5.4......

I am on OCR storage option page there i am getting an error as :- INS- 41314 File /u01/ already exists.
The previous page i am selected shared file system, then under external redundancy giving the OCR file location then getting the error.

Please find below  all error snap.









Issue Cause:-

As per my understanding i have create share directory on RAC1.../u01 my share directory.
Share through NFS for both Machine (RAC1 or RAC2)...Mounted on both Machine (RAC1 or RAC2).
After that start Installation part.
Now After facing issue discussed with my DBA friends cause of issue is i have mount only /u01.
Need to Mount full share path..

Solution:-
 
Mount the NFS shares on both servers(RAC1 or RAC2).

   [root@RAC1 ~] mount /u01/shared_config
   [root@RAC1 ~] mount /u01/app/11.2.0/grid
   [root@RAC1 ~] mount /u01/app/oracle/product/11.2.0/db_1
  [root@RAC1 ~]   mount /u01/oradata

Make sure the permissions on the shared directories are correct.

    [root@RAC1 ~] chown -R oracle:dba /u01/shared_config
    [root@RAC1 ~] chown -R oracle:dba /u01/app/11.2.0/grid
    [root@RAC1 ~] chown -R oracle:dba /u01/app/oracle/product/11.2.0/db_1
    [root@RAC1 ~] chown -R oracle:dba /u01/oradata

 **************finally issue resolved********
OCR automatic search share directory and select it.Have a look below snap.



  ********Hope this post helpful for You**THANKS********



No comments:

ORA-00059: Maximum Number Of DB_FILES Exceeded in 19C database

When I am adding datafile to my 19C database facing the below error. SQL> alter tablespace DATA  add datafile '/u01/data/data15.dbf&#...