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:

How to add a datafile to a bigfile tablespace in Oracle 23ai Database.

  Syntax for Bigfile Tablespace: SQL > ALTER TABLESPACE tablespace_name ADD DATAFILE SIZE 10G AUTOEXTEND ON NEXT 1G MAXSIZE UNLIMITED; Ho...