0% found this document useful (0 votes)
28 views1 page

Database Silent Install and Creation

The document provides commands to install Oracle database software silently using response files, create a multitenant container database and pluggable database, export certificates to DER and PKCS12 formats, and perform switchover to physical standby.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views1 page

Database Silent Install and Creation

The document provides commands to install Oracle database software silently using response files, create a multitenant container database and pluggable database, export certificates to DER and PKCS12 formats, and perform switchover to physical standby.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

.

/runInstaller -ignorePrereq -waitforcompletion -silent \


-responseFile ${ORACLE_HOME}/install/response/db_install.rsp \
oracle.install.option=INSTALL_DB_SWONLY \
ORACLE_HOSTNAME=${HOSTNAME} \
UNIX_GROUP_NAME=oinstall \
INVENTORY_LOCATION=/u01/app/oraInventory \
SELECTED_LANGUAGES=en,en_GB \
ORACLE_HOME=${ORACLE_HOME} \
ORACLE_BASE=${ORACLE_BASE} \
oracle.install.db.InstallEdition=EE \
oracle.install.db.OSDBA_GROUP=dba \
oracle.install.db.OSBACKUPDBA_GROUP=dba \
oracle.install.db.OSDGDBA_GROUP=dba \
oracle.install.db.OSKMDBA_GROUP=dba \
oracle.install.db.OSRACDBA_GROUP=dba \
SECURITY_UPDATES_VIA_MYORACLESUPPORT=false \
DECLINE_SECURITY_UPDATES=true

export ORACLE_SID=CBKCONT

dbca -silent -createDatabase \


-templateName General_Purpose.dbc \
-gdbname ${ORACLE_SID} -sid ${ORACLE_SID} \
-characterSet AL32UTF8 \
-sysPassword enterCDB#123 \
-systemPassword enterCDB#123 \
-createAsContainerDatabase true \
-totalMemory 2000 \
-storageType FS \
-datafileDestination /u01/oradata \
-emConfiguration NONE \
\
-pdbName CBKGDI \
-pdbAdminPassword enterPDB#123 \
-ignorePreReqs

x509 -inform PEM -in mycert.pem -outform DER -out micertout.cer


pkcs12 -export -out keystore.p12 -inkey key.pem -in Certificate.pem

ALTER DATABASE COMMIT TO SWITCHOVER TO PHYSICAL STANDBY;

ALTER DATABASE COMMIT TO SWITCHOVER TO PHYSICAL STANDBY

You might also like