Saturday, November 11, 2017

[INS-35354] The system on which you are attempting to install Oracle RAC is not part of valid cluster

As docummentation says

Oracle Clusterware 12c supports Oracle Database 12c and Oracle Database 11g release 2 (11.2.0.3 and later)

But if you will try to install relatively old DB software (11.2.0.3 my case) on the 12.2 Grid then you will get "[INS-35354] The system on which you are attempting to install Oracle RAC is not part of valid cluster":








The reason is simple: new 12.2 oracle inventory hasn't NODE_NAME lines !
For example new 12.2 central inventory:



And central inventory with NODE_NAME limes:



What you should to do ?
SOLUTION:  Add NODE_NAME to the inventory manually 



$ /u01/app/12.2.0.1/grid/oui/bin/runInstaller -silent -ignoresysprereqs -updatenodelist ORACLE_HOME=/u01/app/12.2.0.1/grid "CLUSTER_NODES={ed03dbadm01,ed03dbadm02}" CRS=true
 




Note Doc ID 2003905.1
 






No comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Does DEALLOCATE UNUSED or SHRINK SPACE will free space occupied by LOB segment?

Lets check how it works. My env is DB 19.20@Linux-x64 1) I created the table with 4 LOB columns of 4 different LOB types: BASICFILE BLOB, BA...