oracle database 12c silent installation

June 26, 2013 — 6 Comments

if you are used to use silent installation for the oracle database software you need to provide additional parameters: oracle.install.db.BACKUPDBA_GROUP, oracle.install.db.DGDBA_GROUP and oracle.install.db.KMDBA_GROUP

./runInstaller oracle.install.option=INSTALL_DB_SWONLY \
    ORACLE_BASE=/opt/oracle/product/base \
    ORACLE_HOME=/opt/oracle/product/base/12.1.0.1 \
    UNIX_GROUP_NAME=oinstall \
    oracle.install.db.DBA_GROUP=dba \
    oracle.install.db.OPER_GROUP=oper \
    oracle.install.db.BACKUPDBA_GROUP=dba \
    oracle.install.db.DGDBA_GROUP=dba \
    oracle.install.db.KMDBA_GROUP=dba \
    FROM_LOCATION=../stage/products.xml \
    INVENTORY_LOCATION=/opt/oracle/oraIventory \
    SELECTED_LANGUAGES=en \
    oracle.install.db.InstallEdition=EE \
    DECLINE_SECURITY_UPDATES=true  -silent -ignoreSysPrereqs -ignorePrereq -waitForCompletion

otherwise your installation will fail with:

[FATAL] [INS-35341] The installation user is not a member of the following groups: [null, null, null]
   CAUSE: The installation user account must be a member of all groups required for installation.
   ACTION: Ensure that the installation user is a member of the system privileges operating system groups you selected.

these are used to further improve seperation of duties: documentation

6 responses to oracle database 12c silent installation

  1. 

    Waw bombastic.. I could able to install the 12c on power aix sucksexfully.

  2. 

    I see same error when applying Oracle 11.2.0.4, any suggestions?
    [FATAL] [INS-35341] The installation user is not a member of the following groups:[dba]
    user is oracle and it has oinstall and dba groups already.

Trackbacks and Pingbacks:

  1. Install Oracle 12c (12.1) - Steve Karam :: The Oracle Alchemist - June 26, 2013

    […] Oracle 12c Silent Installation […]

  2. Oracle :: 12C … The new horizon! | ... S O J O U R N ... - June 28, 2013

    […] Oracle 12c Silent Installation […]

  3. Oracle Database 12c (12.1) Installation and New Features | DBLinks Consulting Ltée - August 25, 2013

    […] Oracle 12c Silent Installation […]

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.