centos7 oracle 11g 靜態界面安裝

 

/opt/database/response/db_install.rsp,文件內容如下

##############################################################################
##                                                                          ##
##                            DBCA response file                            ##
##                            ------------------                            ##
## Copyright   1998, 2007, Oracle Corporation. All Rights Reserved.         ##
##                                                                          ##
## Specify values for the variables listed below to customize Oracle        ##
## Database Configuration installation.                                     ##
##                                                                          ##
## Each variable is associated with a comment. The comment identifies the   ##
## variable type.                                                           ##
##                                                                          ##
## Please specify the values in the following format :                      ##
##          Type       :  Example                                           ##
##          String     :  "<value>"                                         ##
##          Boolean    :  True or False                                     ##
##          Number     :  <numeric value>                                   ##
##          StringList :  {"<value1>","<value2>"}                           ##
##                                                                          ##
## Examples :                                                               ##
##     1. dbca -progress_only -responseFile <response file>                 ##
##        Display a progress bar depicting progress of database creation    ##
##        process.                                                          ##
##                                                                          ##
##     2. dbca -silent -responseFile <response file>                        ##
##        Creates database silently. No user interface is displayed.        ##
##                                                                          ##
##     3. dbca -silent -createDatabase -cloneTemplate                       ##
##             -responseFile <response file>                      ##
##        Creates database silently with clone template. The template in    ##
##      responsefile is a clone template.                         ##
##                                                                          ##
##     4. dbca -silent -deleteDatabase -responseFile <response file>        ##
##        Deletes database silently.                                        ##
##############################################################################

#-----------------------------------------------------------------------------
# GENERAL section is required for all types of database creations.
#-----------------------------------------------------------------------------
[GENERAL]

#-----------------------------------------------------------------------------
# Name          : RESPONSEFILE_VERSION
# Datatype      : String
# Description   : Version of the database to create
# Valid values  : "11.1.0"
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
RESPONSEFILE_VERSION = "11.2.0"

#-----------------------------------------------------------------------------
# Name          : OPERATION_TYPE
# Datatype      : String
# Description   : Type of operation
# Valid values  : "createDatabase" \ "createTemplateFromDB" \ "createCloneTemplate" \ "deleteDatabase" \ "configureDatabase" \ "addInstance" (RAC-only) \ "deleteInstance" (RAC-only)
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
OPERATION_TYPE = "createDatabase"

#-----------------------*** End of GENERAL section ***------------------------

#-----------------------------------------------------------------------------
# CREATEDATABASE section is used when OPERATION_TYPE is defined as "createDatabase". 
#-----------------------------------------------------------------------------
[CREATEDATABASE]

#-----------------------------------------------------------------------------
# Name          : GDBNAME
# Datatype      : String
# Description   : Global database name of the database
# Valid values  : <db_name>.<db_domain> - when database domain isn't NULL
#                 <db_name>             - when database domain is NULL
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
GDBNAME = "orcl11g.us.oracle.com"

#-----------------------------------------------------------------------------
# Name          : POLICYMANAGED
# Datatype      : Boolean
# Description   : Set to true if Database is policy managed and 
#          set to false if  Database is admin managed
# Valid values  : TRUE\FALSE
# Default value : FALSE
# Mandatory     : No
#-----------------------------------------------------------------------------
#POLICYMANAGED = "false"

#-----------------------------------------------------------------------------
# Name          : CREATESERVERPOOL
# Datatype      : Boolean
# Description   : Set to true if new server pool need to be created for database 
#          if this option is specified then the newly created database 
#          will use this newly created serverpool. 
#          Multiple serverpoolname can not be specified for database
# Valid values  : TRUE\FALSE
# Default value : FALSE
# Mandatory     : No
#-----------------------------------------------------------------------------
#CREATESERVERPOOL = "false"

#-----------------------------------------------------------------------------
# Name          : FORCE
# Datatype      : Boolean
# Description   : Set to true if new server pool need to be created by force 
#          if this option is specified then the newly created serverpool
#          will be assigned server even if no free servers are available.
#          This may affect already running database.
#          This flag can be specified for Admin managed as well as policy managed db.
# Valid values  : TRUE\FALSE
# Default value : FALSE
# Mandatory     : No
#-----------------------------------------------------------------------------
#FORCE = "false"

#-----------------------------------------------------------------------------
# Name          : SERVERPOOLNAME
# Datatype      : String
# Description   : Only one serverpool name need to be specified 
#           if Create Server Pool option is specified. 
#           Comma-separated list of Serverpool names if db need to use
#           multiple Server pool
# Valid values  : ServerPool name
# Default value : None
# Mandatory     : No [required in case of RAC service centric database]
#-----------------------------------------------------------------------------
#SERVERPOOLNAME = 

#-----------------------------------------------------------------------------
# Name          : CARDINALITY
# Datatype      : Number
# Description   : Specify Cardinality for create server pool operation
# Valid values  : any positive Integer value
# Default value : Number of qualified nodes on cluster
# Mandatory     : No [Required when a new serverpool need to be created]
#-----------------------------------------------------------------------------
#CARDINALITY = 

#-----------------------------------------------------------------------------
# Name          : SID
# Datatype      : String
# Description   : System identifier (SID) of the database
# Valid values  : Check Oracle11g Administrator's Guide
# Default value : <db_name> specified in GDBNAME
# Mandatory     : No
#-----------------------------------------------------------------------------
SID = "orcl11g"

#-----------------------------------------------------------------------------
# Name          : NODELIST
# Datatype      : String
# Description   : Comma-separated list of cluster nodes
# Valid values  : Cluster node names
# Default value : None
# Mandatory     : No (Yes for RAC database-centric database )
#-----------------------------------------------------------------------------
#NODELIST=

#-----------------------------------------------------------------------------
# Name          : TEMPLATENAME
# Datatype      : String
# Description   : Name of the template
# Valid values  : Template file name
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
TEMPLATENAME = "General_Purpose.dbc"

#-----------------------------------------------------------------------------
# Name          : OBFUSCATEDPASSWORDS
# Datatype      : Boolean
# Description   : Set to true if passwords are encrypted
# Valid values  : TRUE\FALSE
# Default value : FALSE
# Mandatory     : No
#-----------------------------------------------------------------------------
#OBFUSCATEDPASSWORDS = FALSE


#-----------------------------------------------------------------------------
# Name          : SYSPASSWORD
# Datatype      : String
# Description   : Password for SYS user
# Valid values  : Check Oracle11g Administrator's Guide
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
#SYSPASSWORD = "password"

#-----------------------------------------------------------------------------
# Name          : SYSTEMPASSWORD
# Datatype      : String
# Description   : Password for SYSTEM user
# Valid values  : Check Oracle11g Administrator's Guide
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
#SYSTEMPASSWORD = "password"

#-----------------------------------------------------------------------------
# Name          : EMCONFIGURATION
# Datatype      : String
# Description   : Enterprise Manager Configuration Type
# Valid values  : CENTRAL|LOCAL|ALL|NOBACKUP|NOEMAIL|NONE
# Default value : NONE
# Mandatory     : No
#-----------------------------------------------------------------------------
#EMCONFIGURATION = "NONE"

#-----------------------------------------------------------------------------
# Name          : DISABLESECURITYCONFIGURATION
# Datatype      : String
# Description   : Database Security Settings
# Valid values  : ALL|NONE|AUDIT|PASSWORD_PROFILE
# Default value : NONE
# Mandatory     : No
#-----------------------------------------------------------------------------
#DISABLESECURITYCONFIGURATION = "NONE"


#-----------------------------------------------------------------------------
# Name          : SYSMANPASSWORD
# Datatype      : String
# Description   : Password for SYSMAN user
# Valid values  : Check Oracle11g Administrator's Guide
# Default value : None
# Mandatory     : Yes, if LOCAL specified for EMCONFIGURATION
#-----------------------------------------------------------------------------
#SYSMANPASSWORD = "password"

#-----------------------------------------------------------------------------
# Name          : DBSNMPPASSWORD
# Datatype      : String
# Description   : Password for DBSNMP user
# Valid values  : Check Oracle11g Administrator's Guide
# Default value : None
# Mandatory     : Yes, if EMCONFIGURATION is specified
#-----------------------------------------------------------------------------
#DBSNMPPASSWORD = "password"

#-----------------------------------------------------------------------------
# Name          : CENTRALAGENT
# Datatype      : String
# Description   : Grid Control Central Agent Oracle Home
# Default value : None
# Mandatory     : Yes, if CENTRAL is specified for EMCONFIGURATION
#-----------------------------------------------------------------------------
#CENTRALAGENT = 

#-----------------------------------------------------------------------------
# Name          : HOSTUSERNAME
# Datatype      : String
# Description   : Host user name for EM backup job
# Default value : None
# Mandatory     : Yes, if ALL or NOEMAIL are specified for EMCONFIGURATION
#-----------------------------------------------------------------------------
#HOSTUSERNAME = 

#-----------------------------------------------------------------------------
# Name          : HOSTUSERPASSWORD
# Datatype      : String
# Description   : Host user password for EM backup job
# Default value : None
# Mandatory     : Yes, if ALL or NOEMAIL are specified for EMCONFIGURATION
#-----------------------------------------------------------------------------
#HOSTUSERPASSWORD= 

#-----------------------------------------------------------------------------
# Name          : BACKUPSCHEDULE
# Datatype      : String
# Description   : Daily backup schedule in the form of hh:mm
# Default value : 2:00
# Mandatory     : Yes, if ALL or NOEMAIL are specified for EMCONFIGURATION
#-----------------------------------------------------------------------------
#BACKUPSCHEDULE=

#-----------------------------------------------------------------------------
# Name          : SMTPSERVER
# Datatype      : String
# Description   : Outgoing mail (SMTP) server for email notifications
# Default value : None
# Mandatory     : Yes, if ALL or NOBACKUP are specified for EMCONFIGURATION
#-----------------------------------------------------------------------------
#SMTPSERVER =

#-----------------------------------------------------------------------------
# Name          : EMAILADDRESS
# Datatype      : String
# Description   : Email address for email notifications
# Default value : None
# Mandatory     : Yes, if ALL or NOBACKUP are specified for EMCONFIGURATION
#-----------------------------------------------------------------------------
#EMAILADDRESS =

#-----------------------------------------------------------------------------
# Name          : DVOWNERNAME
# Datatype      : String
# Description   : DataVault Owner
# Valid values  : Check Oracle11g Administrator's Guide
# Default value : None
# Mandatory     : Yes, if DataVault option is chosen
#-----------------------------------------------------------------------------
#DVOWNERNAME = ""

#-----------------------------------------------------------------------------
# Name          : DVOWNERPASSWORD
# Datatype      : String
# Description   : Password for DataVault Owner
# Valid values  : Check Oracle11g Administrator's Guide
# Default value : None
# Mandatory     : Yes, if DataVault option is chosen
#-----------------------------------------------------------------------------
#DVOWNERPASSWORD = ""

#-----------------------------------------------------------------------------
# Name          : DVACCOUNTMANAGERNAME
# Datatype      : String
# Description   : DataVault Account Manager
# Valid values  : Check Oracle11g Administrator's Guide
# Default value : None
# Mandatory     : No
#-----------------------------------------------------------------------------
#DVACCOUNTMANAGERNAME = ""

#-----------------------------------------------------------------------------
# Name          : DVACCOUNTMANAGERPASSWORD
# Datatype      : String
# Description   : Password for  DataVault Account Manager
# Valid values  : Check Oracle11g Administrator's Guide
# Default value : None
# Mandatory     : No
#-----------------------------------------------------------------------------
#DVACCOUNTMANAGERPASSWORD = ""

#-----------------------------------------------------------------------------
# Name          : DATAFILEJARLOCATION 
# Datatype      : String
# Description   : Location of the data file jar 
# Valid values  : Directory containing compressed datafile jar
# Default value : None
# Mandatory     : No
#-----------------------------------------------------------------------------
#DATAFILEJARLOCATION =

#-----------------------------------------------------------------------------
# Name          : DATAFILEDESTINATION 
# Datatype      : String
# Description   : Location of the data file's
# Valid values  : Directory for all the database files
# Default value : $ORACLE_BASE/oradata
# Mandatory     : No
#-----------------------------------------------------------------------------
#DATAFILEDESTINATION =

#-----------------------------------------------------------------------------
# Name          : RECOVERYAREADESTINATION
# Datatype      : String
# Description   : Location of the data file's
# Valid values  : Recovery Area location
# Default value : $ORACLE_BASE/flash_recovery_area
# Mandatory     : No
#-----------------------------------------------------------------------------
#RECOVERYAREADESTINATION=

#-----------------------------------------------------------------------------
# Name          : STORAGETYPE
# Datatype      : String
# Description   : Specifies the storage on which the database is to be created
# Valid values  : FS (CFS for RAC), ASM
# Default value : FS
# Mandatory     : No
#-----------------------------------------------------------------------------
#STORAGETYPE=FS

#-----------------------------------------------------------------------------
# Name          : DISKGROUPNAME
# Datatype      : String
# Description   : Specifies the disk group name for the storage
# Default value : DATA
# Mandatory     : No
#-----------------------------------------------------------------------------
#DISKGROUPNAME=DATA

#-----------------------------------------------------------------------------
# Name          : ASMSNMP_PASSWORD
# Datatype      : String
# Description   : Password for ASM Monitoring
# Default value : None
# Mandatory     : No
#-----------------------------------------------------------------------------
#ASMSNMP_PASSWORD=""

#-----------------------------------------------------------------------------
# Name          : RECOVERYGROUPNAME
# Datatype      : String
# Description   : Specifies the disk group name for the recovery area
# Default value : RECOVERY
# Mandatory     : No
#-----------------------------------------------------------------------------
#RECOVERYGROUPNAME=RECOVERY


#-----------------------------------------------------------------------------
# Name          : CHARACTERSET
# Datatype      : String
# Description   : Character set of the database
# Valid values  : Check Oracle11g National Language Support Guide
# Default value : "US7ASCII"
# Mandatory     : NO
#-----------------------------------------------------------------------------
#CHARACTERSET = "US7ASCII"

#-----------------------------------------------------------------------------
# Name          : NATIONALCHARACTERSET
# Datatype      : String
# Description   : National Character set of the database
# Valid values  : "UTF8" or "AL16UTF16". For details, check Oracle11g National Language Support Guide
# Default value : "AL16UTF16"
# Mandatory     : No
#-----------------------------------------------------------------------------
#NATIONALCHARACTERSET= "UTF8"

#-----------------------------------------------------------------------------
# Name          : REGISTERWITHDIRSERVICE
# Datatype      : Boolean
# Description   : Specifies whether to register with Directory Service.
# Valid values  : TRUE \ FALSE
# Default value : FALSE
# Mandatory     : No
#-----------------------------------------------------------------------------
#REGISTERWITHDIRSERVICE= TRUE

#-----------------------------------------------------------------------------
# Name          : DIRSERVICEUSERNAME
# Datatype      : String
# Description   : Specifies the name of the directory service user
# Mandatory     : YES, if the value of registerWithDirService is TRUE
#-----------------------------------------------------------------------------
#DIRSERVICEUSERNAME= "name"

#-----------------------------------------------------------------------------
# Name          : DIRSERVICEPASSWORD
# Datatype      : String
# Description   : The password of the directory service user.
#          You can also specify the password at the command prompt instead of here.
# Mandatory     : YES, if the value of registerWithDirService is TRUE
#-----------------------------------------------------------------------------
#DIRSERVICEPASSWORD= "password"

#-----------------------------------------------------------------------------
# Name          : WALLETPASSWORD
# Datatype      : String
# Description   : The password for wallet to created or modified.
#          You can also specify the password at the command prompt instead of here.
# Mandatory     : YES, if the value of registerWithDirService is TRUE
#-----------------------------------------------------------------------------
#WALLETPASSWORD= "password"

#-----------------------------------------------------------------------------
# Name          : LISTENERS
# Datatype      : String
# Description   : Specifies list of listeners to register the database with.
#          By default the database is configured for all the listeners specified in the 
#          $ORACLE_HOME/network/admin/listener.ora     
# Valid values  : The list should be space separated names like "listener1 listener2".
# Mandatory     : NO
#-----------------------------------------------------------------------------
#LISTENERS = "listener1 listener2"

#-----------------------------------------------------------------------------
# Name          : VARIABLESFILE 
# Datatype      : String
# Description   : Location of the file containing variable value pair
# Valid values  : A valid file-system file. The variable value pair format in this file 
#          is <variable>=<value>. Each pair should be in a new line.
# Default value : None
# Mandatory     : NO
#-----------------------------------------------------------------------------
#VARIABLESFILE =

#-----------------------------------------------------------------------------
# Name          : VARIABLES
# Datatype      : String
# Description   : comma separated list of name=value pairs. Overrides variables defined in variablefile and templates
# Default value : None
# Mandatory     : NO
#-----------------------------------------------------------------------------
#VARIABLES =

#-----------------------------------------------------------------------------
# Name          : INITPARAMS
# Datatype      : String
# Description   : comma separated list of name=value pairs. Overrides initialization parameters defined in templates
# Default value : None
# Mandatory     : NO
#-----------------------------------------------------------------------------
#INITPARAMS =

#-----------------------------------------------------------------------------
# Name          : MEMORYPERCENTAGE
# Datatype      : String
# Description   : percentage of physical memory for Oracle
# Default value : None
# Mandatory     : NO
#-----------------------------------------------------------------------------
#MEMORYPERCENTAGE = "40"

#-----------------------------------------------------------------------------
# Name          : DATABASETYPE
# Datatype      : String
# Description   : used for memory distribution when MEMORYPERCENTAGE specified
# Valid values  : MULTIPURPOSE|DATA_WAREHOUSING|OLTP
# Default value : MULTIPURPOSE
# Mandatory     : NO
#-----------------------------------------------------------------------------
#DATABASETYPE = "MULTIPURPOSE"

#-----------------------------------------------------------------------------
# Name          : AUTOMATICMEMORYMANAGEMENT
# Datatype      : Boolean
# Description   : flag to indicate Automatic Memory Management is used
# Valid values  : TRUE/FALSE
# Default value : TRUE
# Mandatory     : NO
#-----------------------------------------------------------------------------
#AUTOMATICMEMORYMANAGEMENT = "TRUE"

#-----------------------------------------------------------------------------
# Name          : TOTALMEMORY
# Datatype      : String
# Description   : total memory in MB to allocate to Oracle
# Valid values  : 
# Default value : 
# Mandatory     : NO
#-----------------------------------------------------------------------------
#TOTALMEMORY = "800"


#-----------------------*** End of CREATEDATABASE section ***------------------------

#-----------------------------------------------------------------------------
# createTemplateFromDB section is used when OPERATION_TYPE is defined as "createTemplateFromDB". 
#-----------------------------------------------------------------------------
[createTemplateFromDB]
#-----------------------------------------------------------------------------
# Name          : SOURCEDB 
# Datatype      : String
# Description   : The source database from which to create the template
# Valid values  : The format is <host>:<port>:<sid>
# Default value : none
# Mandatory     : YES
#-----------------------------------------------------------------------------
SOURCEDB = "myhost:1521:orcl"

#-----------------------------------------------------------------------------
# Name          : SYSDBAUSERNAME 
# Datatype      : String
# Description   : A user with DBA role.
# Default value : none
# Mandatory     : YES
#-----------------------------------------------------------------------------
SYSDBAUSERNAME = "system"

#-----------------------------------------------------------------------------
# Name          : SYSDBAPASSWORD 
# Datatype      : String
# Description   : The password of the DBA user.
#          You can also specify the password at the command prompt instead of here.
# Default value : none
# Mandatory     : YES
#-----------------------------------------------------------------------------
#SYSDBAPASSWORD = "password"

#-----------------------------------------------------------------------------
# Name          : TEMPLATENAME
# Datatype      : String
# Description   : Name for the new template.
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
TEMPLATENAME = "My Copy TEMPLATE"

#-----------------------*** End of createTemplateFromDB section ***------------------------

#-----------------------------------------------------------------------------
# createCloneTemplate section is used when OPERATION_TYPE is defined as "createCloneTemplate". 
#-----------------------------------------------------------------------------
[createCloneTemplate]
#-----------------------------------------------------------------------------
# Name          : SOURCEDB
# Datatype      : String
# Description   : The source database is the SID from which to create the template. 
#          This database must be local and on the same ORACLE_HOME.
# Default value : none
# Mandatory     : YES
#-----------------------------------------------------------------------------
SOURCEDB = "orcl"

#-----------------------------------------------------------------------------
# Name          : SYSDBAUSERNAME
# Datatype      : String
# Description   : A user with DBA role.
# Default value : none
# Mandatory     : YES, if no OS authentication
#-----------------------------------------------------------------------------
#SYSDBAUSERNAME = "sys"

#-----------------------------------------------------------------------------
# Name          : SYSDBAPASSWORD
# Datatype      : String
# Description   : The password of the DBA user.
#          You can also specify the password at the command prompt instead of here.
# Default value : none
# Mandatory     : YES
#-----------------------------------------------------------------------------
#SYSDBAPASSWORD = "password"

#-----------------------------------------------------------------------------
# Name          : TEMPLATENAME
# Datatype      : String
# Description   : Name for the new template.
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
TEMPLATENAME = "My Clone TEMPLATE"

#-----------------------------------------------------------------------------
# Name          : DATAFILEJARLOCATION
# Datatype      : String
# Description   : Location of the data file jar 
# Valid values  : Directory where the new compressed datafile jar will be placed
# Default value : $ORACLE_HOME/assistants/dbca/templates
# Mandatory     : NO
#-----------------------------------------------------------------------------
#DATAFILEJARLOCATION = 

#-----------------------*** End of createCloneTemplate section ***------------------------

#-----------------------------------------------------------------------------
# DELETEDATABASE section is used when DELETE_TYPE is defined as "deleteDatabase". 
#-----------------------------------------------------------------------------
[DELETEDATABASE]
#-----------------------------------------------------------------------------
# Name          : SOURCEDB
# Datatype      : String
# Description   : The source database is the SID 
#          This database must be local and on the same ORACLE_HOME.
# Default value : none
# Mandatory     : YES
#-----------------------------------------------------------------------------
SOURCEDB = "orcl"

#-----------------------------------------------------------------------------
# Name          : SYSDBAUSERNAME
# Datatype      : String
# Description   : A user with DBA role.
# Default value : none
# Mandatory     : YES, if no OS authentication
#-----------------------------------------------------------------------------
#SYSDBAUSERNAME = "sys"

#-----------------------------------------------------------------------------
# Name          : SYSDBAPASSWORD
# Datatype      : String
# Description   : The password of the DBA user.
#          You can also specify the password at the command prompt instead of here.
# Default value : none
# Mandatory     : YES, if no OS authentication
#-----------------------------------------------------------------------------
#SYSDBAPASSWORD = "password"
#-----------------------*** End of deleteDatabase section ***------------------------

#-----------------------------------------------------------------------------
# GENERATESCRIPTS section 
#-----------------------------------------------------------------------------
[generateScripts]
#-----------------------------------------------------------------------------
# Name          : TEMPLATENAME
# Datatype      : String
# Description   : Name of the template
# Valid values  : Template name as seen in DBCA
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
TEMPLATENAME = "New Database"

#-----------------------------------------------------------------------------
# Name          : GDBNAME
# Datatype      : String
# Description   : Global database name of the database
# Valid values  : <db_name>.<db_domain> - when database domain isn't NULL
#                 <db_name>             - when database domain is NULL
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
GDBNAME = "orcl11.us.oracle.com"

#-----------------------------------------------------------------------------
# Name          : SCRIPTDESTINATION 
# Datatype      : String
# Description   : Location of the scripts
# Valid values  : Directory for all the scripts
# Default value : None
# Mandatory     : No
#-----------------------------------------------------------------------------
#SCRIPTDESTINATION =

#-----------------------*** End of deleteDatabase section ***------------------------

#-----------------------------------------------------------------------------
# CONFIGUREDATABASE section is used when OPERATION_TYPE is defined as "configureDatabase". 
#-----------------------------------------------------------------------------
[CONFIGUREDATABASE]

#-----------------------------------------------------------------------------
# Name          : SOURCEDB
# Datatype      : String
# Description   : The source database is the SID 
#          This database must be local and on the same ORACLE_HOME.
# Default value : none
# Mandatory     : YES
#-----------------------------------------------------------------------------
#SOURCEDB = "orcl"

#-----------------------------------------------------------------------------
# Name          : SYSDBAUSERNAME
# Datatype      : String
# Description   : A user with DBA role.
# Default value : none
# Mandatory     : YES, if no OS authentication
#-----------------------------------------------------------------------------
#SYSDBAUSERNAME = "sys"


#-----------------------------------------------------------------------------
# Name          : SYSDBAPASSWORD
# Datatype      : String
# Description   : The password of the DBA user.
#          You can also specify the password at the command prompt instead of here.
# Default value : none
# Mandatory     : YES, if no OS authentication
#-----------------------------------------------------------------------------
#SYSDBAPASSWORD =

#-----------------------------------------------------------------------------
# Name          : REGISTERWITHDIRSERVICE
# Datatype      : Boolean
# Description   : Specifies whether to register with Directory Service.
# Valid values  : TRUE \ FALSE
# Default value : FALSE
# Mandatory     : No
#-----------------------------------------------------------------------------
#REGISTERWITHDIRSERVICE= TRUE

#-----------------------------------------------------------------------------
# Name          : UNREGISTERWITHDIRSERVICE
# Datatype      : Boolean
# Description   : Specifies whether to unregister with Directory Service.
# Valid values  : TRUE \ FALSE
# Default value : FALSE
# Mandatory     : No
#-----------------------------------------------------------------------------
#UNREGISTERWITHDIRSERVICE= TRUE

#-----------------------------------------------------------------------------
# Name          : REGENERATEDBPASSWORD
# Datatype      : Boolean
# Description   : Specifies whether regenerate database password in OID/Wallet
# Valid values  : TRUE \ FALSE
# Default value : FALSE
# Mandatory     : No
#-----------------------------------------------------------------------------
#REGENERATEDBPASSWORD= TRUE

#-----------------------------------------------------------------------------
# Name          : DIRSERVICEUSERNAME
# Datatype      : String
# Description   : Specifies the name of the directory service user
# Mandatory     : YES, if the any of the reg/unreg/regenPasswd options specified
#-----------------------------------------------------------------------------
#DIRSERVICEUSERNAME= "name"

#-----------------------------------------------------------------------------
# Name          : DIRSERVICEPASSWORD
# Datatype      : String
# Description   : The password of the directory service user.
#          You can also specify the password at the command prompt instead of here.
# Mandatory     : YES, if the any of the reg/unreg/regenPasswd options specified
#-----------------------------------------------------------------------------
#DIRSERVICEPASSWORD= "password"

#-----------------------------------------------------------------------------
# Name          : WALLETPASSWORD
# Datatype      : String
# Description   : The password for wallet to created or modified.
#          You can also specify the password at the command prompt instead of here.
# Mandatory     : YES, if the any of the reg/unreg/regenPasswd options specified
#-----------------------------------------------------------------------------
#WALLETPASSWORD= "password"

#-----------------------------------------------------------------------------
# Name          : DISABLESECURITYCONFIGURATION
# Datatype      : String
# Description   : Database Security Settings
# Valid values  : ALL|NONE|AUDIT|PASSWORD_PROFILE
# Default value : NONE
# Mandatory     : No
#-----------------------------------------------------------------------------
#DISABLESECURITYCONFIGURATION = "NONE"

#-----------------------------------------------------------------------------
# Name          : ENABLESECURITYCONFIGURATION
# Datatype      : String
# Description   : Database Security Settings
# Valid values  : true|false
# Default value : true
# Mandatory     : No
#-----------------------------------------------------------------------------
#ENABLESECURITYCONFIGURATION = "true"


#-----------------------------------------------------------------------------
# Name          : EMCONFIGURATION
# Datatype      : String
# Description   : Enterprise Manager Configuration Type
# Valid values  : CENTRAL|LOCAL|ALL|NOBACKUP|NOEMAIL|NONE
# Default value : NONE
# Mandatory     : No
#-----------------------------------------------------------------------------
#EMCONFIGURATION = "NONE"

#-----------------------------------------------------------------------------
# Name          : SYSMANPASSWORD
# Datatype      : String
# Description   : Password for SYSMAN user
# Valid values  : Check Oracle11g Administrator's Guide
# Default value : None
# Mandatory     : Yes, if LOCAL specified for EMCONFIGURATION
#-----------------------------------------------------------------------------
#SYSMANPASSWORD = "password"

#-----------------------------------------------------------------------------
# Name          : DBSNMPPASSWORD
# Datatype      : String
# Description   : Password for DBSNMP user
# Valid values  : Check Oracle11g Administrator's Guide
# Default value : None
# Mandatory     : Yes, if EMCONFIGURATION is specified
#-----------------------------------------------------------------------------
#DBSNMPPASSWORD = "password"

#-----------------------------------------------------------------------------
# Name          : CENTRALAGENT
# Datatype      : String
# Description   : Grid Control Central Agent Oracle Home
# Default value : None
# Mandatory     : Yes, if CENTRAL is specified for EMCONFIGURATION
#-----------------------------------------------------------------------------
#CENTRALAGENT = 

#-----------------------------------------------------------------------------
# Name          : HOSTUSERNAME
# Datatype      : String
# Description   : Host user name for EM backup job
# Default value : None
# Mandatory     : Yes, if ALL or NOEMAIL are specified for EMCONFIGURATION
#-----------------------------------------------------------------------------
#HOSTUSERNAME = 

#-----------------------------------------------------------------------------
# Name          : HOSTUSERPASSWORD
# Datatype      : String
# Description   : Host user password for EM backup job
# Default value : None
# Mandatory     : Yes, if ALL or NOEMAIL are specified for EMCONFIGURATION
#-----------------------------------------------------------------------------
#HOSTUSERPASSWORD= 

#-----------------------------------------------------------------------------
# Name          : BACKUPSCHEDULE
# Datatype      : String
# Description   : Daily backup schedule in the form of hh:mm
# Default value : 2:00
# Mandatory     : Yes, if ALL or NOEMAIL are specified for EMCONFIGURATION
#-----------------------------------------------------------------------------
#BACKUPSCHEDULE=

#-----------------------------------------------------------------------------
# Name          : SMTPSERVER
# Datatype      : String
# Description   : Outgoing mail (SMTP) server for email notifications
# Default value : None
# Mandatory     : Yes, if ALL or NOBACKUP are specified for EMCONFIGURATION
#-----------------------------------------------------------------------------
#SMTPSERVER =

#-----------------------------------------------------------------------------
# Name          : EMAILADDRESS
# Datatype      : String
# Description   : Email address for email notifications
# Default value : None
# Mandatory     : Yes, if ALL or NOBACKUP are specified for EMCONFIGURATION
#-----------------------------------------------------------------------------
#EMAILADDRESS =

#-----------------------*** End of CONFIGUREDATABASE section ***------------------------


#-----------------------------------------------------------------------------
# ADDINSTANCE section is used when OPERATION_TYPE is defined as "addInstance". 
#-----------------------------------------------------------------------------
[ADDINSTANCE]

#-----------------------------------------------------------------------------
# Name          : DB_UNIQUE_NAME
# Datatype      : String
# Description   : DB Unique Name of the RAC database
# Valid values  : <db_unique_name>
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
DB_UNIQUE_NAME = "orcl11g.us.oracle.com"

#-----------------------------------------------------------------------------
# Name          : INSTANCENAME
# Datatype      : String
# Description   : RAC instance name to be added
# Valid values  : Check Oracle11g Administrator's Guide
# Default value : <sid_prefix>+<highest_current_thread+1>
# Mandatory     : No
#-----------------------------------------------------------------------------
#INSTANCENAME = "orcl1"

#-----------------------------------------------------------------------------
# Name          : NODELIST
# Datatype      : String
# Description   : Node on which to add new instance 
#                 (in 10gR2, instance addition is supported on 1 node at a time)
# Valid values  : Cluster node name
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
NODELIST=

#-----------------------------------------------------------------------------
# Name          : OBFUSCATEDPASSWORDS
# Datatype      : Boolean
# Description   : Set to true if passwords are encrypted
# Valid values  : TRUE\FALSE
# Default value : FALSE
# Mandatory     : No
#-----------------------------------------------------------------------------
#OBFUSCATEDPASSWORDS = FALSE

#-----------------------------------------------------------------------------
# Name          : SYSDBAUSERNAME 
# Datatype      : String
# Description   : A user with DBA role.
# Default value : none
# Mandatory     : YES
#-----------------------------------------------------------------------------
SYSDBAUSERNAME = "sys"

#-----------------------------------------------------------------------------
# Name          : SYSDBAPASSWORD 
# Datatype      : String
# Description   : The password of the DBA user.
# Default value : none
# Mandatory     : YES
#-----------------------------------------------------------------------------
#SYSDBAPASSWORD = "password"

#-----------------------*** End of ADDINSTANCE section ***------------------------


#-----------------------------------------------------------------------------
# DELETEINSTANCE section is used when OPERATION_TYPE is defined as "deleteInstance". 
#-----------------------------------------------------------------------------
[DELETEINSTANCE]

#-----------------------------------------------------------------------------
# Name          : DB_UNIQUE_NAME
# Datatype      : String
# Description   : DB Unique Name of the RAC database
# Valid values  : <db_unique_name>
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
DB_UNIQUE_NAME = "orcl11g.us.oracle.com"

#-----------------------------------------------------------------------------
# Name          : INSTANCENAME
# Datatype      : String
# Description   : RAC instance name to be deleted
# Valid values  : Check Oracle11g Administrator's Guide
# Default value : None
# Mandatory     : Yes
#-----------------------------------------------------------------------------
INSTANCENAME = "orcl11g"

#-----------------------------------------------------------------------------
# Name          : NODELIST
# Datatype      : String
# Description   : Node on which instance to be deleted (SID) is located
# Valid values  : Cluster node name
# Default value : None
# Mandatory     : No
#-----------------------------------------------------------------------------
#NODELIST=

#-----------------------------------------------------------------------------
# Name          : OBFUSCATEDPASSWORDS
# Datatype      : Boolean
# Description   : Set to true if passwords are encrypted
# Valid values  : TRUE\FALSE
# Default value : FALSE
# Mandatory     : No
#-----------------------------------------------------------------------------
#OBFUSCATEDPASSWORDS = FALSE

#-----------------------------------------------------------------------------
# Name          : SYSDBAUSERNAME 
# Datatype      : String
# Description   : A user with DBA role.
# Default value : none
# Mandatory     : YES
#-----------------------------------------------------------------------------
SYSDBAUSERNAME = "sys"

#-----------------------------------------------------------------------------
# Name          : SYSDBAPASSWORD 
# Datatype      : String
# Description   : The password of the DBA user.
# Default value : none
# Mandatory     : YES
#-----------------------------------------------------------------------------
#SYSDBAPASSWORD = "password"


#-----------------------*** End of DELETEINSTANCE section ***------------------------
 

 

 

 

./runInstaller -silent -responseFile /opt/database/response/db_install.rsp -ignorePrereq

su - oracle

cd /opt/database

./runInstaller -silent -responseFile /opt/database/response/db_install.rsp -ignorePrereq

注意:擴展名必須.rsp,否則會報格式不正確,內容正確也不能被執行。

查看安裝日誌,日誌是在在執行完之後,終端提示出來的


tail -300f /opt/data/inventory/logs/installActions2019-11-04_04-57-16PM.log

INFO: Calling Action fileActions10.2.0.6.0  instantiateFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/deinstall/deinstall
    destination = /opt/data/oracle/product/11/db_1/deinstall/deinstall
    variables = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/deinstall/deinstall'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/deinstall/deinstall'.
INFO: Setting up 'Oracle Help for the  Web 2.0.14.0.0 '
INFO: Setting up 'Oracle Help for the  Web 2.0.14.0.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Help for the  Web
INFO: Setting up 'Oracle LDAP administration 11.2.0.1.0 '
INFO: Setting up 'Oracle LDAP administration 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle LDAP administration
INFO: Setting up 'Buildtools Common Files 11.2.0.1.0 '
INFO: Setting up 'Buildtools Common Files 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Buildtools Common Files
INFO: Setting up 'Assistant Common Files 11.2.0.1.0 '
INFO: Setting up 'Assistant Common Files 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Assistant Common Files
INFO: Setting up 'Oracle Recovery Manager 11.2.0.1.0 '
INFO: Setting up 'Oracle Recovery Manager 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Recovery Manager
INFO: Setting up 'PL/SQL 11.2.0.1.0 '
INFO: Setting up 'PL/SQL 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component PL/SQL
INFO: Setting up 'Generic Connectivity Common Files 11.2.0.1.0 '
INFO: Setting up 'Generic Connectivity Common Files 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Generic Connectivity Common Files
INFO: Calling Action fileActions10.2.0.6.0  createDirRecurse
    destination = /opt/data/oracle/product/11/db_1/hs/log
    selectedNodes = null
    permissions = null
    owner = null
    group = null

INFO: Setting up 'Oracle Database Gateway for ODBC 11.2.0.1.0 '
INFO: Setting up 'Oracle Database Gateway for ODBC 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Database Gateway for ODBC
INFO: Calling Action fileActions10.2.0.6.0  instantiateFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/hs/admin/listener.ora.sample
    destination = /opt/data/oracle/product/11/db_1/hs/admin/listener.ora.sample
    variables = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/hs/admin/listener.ora.sample'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/hs/admin/listener.ora.sample'.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/hs/admin/tnsnames.ora.sample
    destination = /opt/data/oracle/product/11/db_1/hs/admin/tnsnames.ora.sample
    variables = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/hs/admin/tnsnames.ora.sample'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/hs/admin/tnsnames.ora.sample'.
INFO: Setting up 'Oracle Programmer 11.2.0.1.0 '
INFO: Setting up 'Oracle Programmer 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Programmer
INFO: Setting up 'Oracle Database Utilities 11.2.0.1.0 '
INFO: Setting up 'Oracle Database Utilities 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Database Utilities
INFO: Calling Query fileQueries10.1.0.3.0  exists

filename = /opt/data/oracle/product/11/db_1/Apache/Apache/conf/oracle_apache.conf
INFO: Query Returned: false
INFO: Calling Action generalActions10.2.0.9.0  addUtilConfigTool
    configToolName = oracle.rdbms.util
    configToolLocation = /opt/data/oracle/product/11/db_1/install/config

INFO: Setting variable 'ADDL_UTIL_CONFIG_TOOL_NAME' to 'oracle.rdbms.util'. Received the value from a code block.
INFO: Setting variable 'ADDL_UTIL_CONFIG_TOOL_LOC' to '/opt/data/oracle/product/11/db_1/install/config'. Received the value from a code block.
INFO: Setting up 'Enterprise Manager Agent 10.2.0.4.2 '
INFO: Setting up 'Enterprise Manager Agent 10.2.0.4.2 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Enterprise Manager Agent
INFO: Calling Query globalVarQueries2.1.0.4.1  getGlobalVariable

variable = oracle.sysman.emd.iasconsoleport
INFO: 
Query Exception: VariableNotFoundException
Query Exception Class: class oracle.sysman.oii.oiil.OiilQueryException
INFO: 
INFO: Setting variable 'EM_IAS_CONSOLE_PORT' to ''. Received the value from a code block.
INFO: Calling Query globalVarQueries2.1.0.4.1  getGlobalVariable

variable = oracle.sysman.top.agent.s_agentSrvcName
INFO: 
Query Exception: VariableNotFoundException
Query Exception Class: class oracle.sysman.oii.oiil.OiilQueryException
INFO: 
INFO: Setting variable 'AGENT_SRVC_NAME' to ''. Received the value from a code block.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFileEx
    source = /opt/data/oracle/product/11/db_1/install/unix/rootadd.orc
    destination = /opt/data/oracle/product/11/db_1/install/unix/rootadd.orc
    variables = ORACLE_HOME,ORACLE_OWNER
    delimiter = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/install/unix/rootadd.orc'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/install/unix/rootadd.orc'.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFileEx
    source = /opt/data/oracle/product/11/db_1/install/unix/rootadd.orc
    destination = /opt/data/oracle/product/11/db_1/install/unix/rootadd.sh
    variables = null
    delimiter = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/install/unix/rootadd.orc'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/install/unix/rootadd.orc'.
INFO: Calling Action unixActions10.2.0.3.0  appendStringToRootSh
    stringToAppend = /opt/data/oracle/product/11/db_1/install/unix/rootadd.sh
    requiredBeforeConfig = null

INFO: Setting variable 'ROOTSH_STATUS' to '1'. Received the value from a code block.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/bin/emtgtctl
    destination = /opt/data/oracle/product/11/db_1/bin/emtgtctl
    variables = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/bin/emtgtctl'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/bin/emtgtctl'.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFileEx
    source = /opt/data/oracle/product/11/db_1/sysman/config/emd.properties.template
    destination = /opt/data/oracle/product/11/db_1/sysman/config/emd.properties
    variables = AGENT_SEED,CONTEXT_PATH,EMDROOT,EMD_EMAIL_ADDRESS,EMD_EMAIL_GATEWAY,EMD_FROM_EMAIL_ADDRESS,EMD_TRUSTCERTS_DIR,EM_HTTP_PORT,EM_REPOS_HOST,EM_REPOS_PROXYHOST,EM_REPOS_PROXYPORT,EM_SERVLET_PORT,EM_UPLOAD_DISABLE,EM_UPLOAD_PORT,HOSTNAME,JAVA_HOME,JRE_HOME,OC4JLOC,ORACLE_HOME,OUILOC,PSEP,PerlBin,n_uploadInterval,s_javapOracleHome
    delimiter = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/sysman/config/emd.properties.template'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/sysman/config/emd.properties.template'.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFileEx
    source = /opt/data/oracle/product/11/db_1/sysman/config/emd.properties.template
    destination = /opt/data/oracle/product/11/db_1/sysman/config/emd.properties.emca
    variables = AGENT_SEED,CONTEXT_PATH,EMDROOT,EMD_EMAIL_ADDRESS,EMD_EMAIL_GATEWAY,EMD_FROM_EMAIL_ADDRESS,EMD_TRUSTCERTS_DIR,EM_REPOS_PROXYHOST,EM_REPOS_PROXYPORT,EM_UPLOAD_DISABLE,JAVA_HOME,JRE_HOME,OC4JLOC,ORACLE_HOME,OUILOC,PSEP,PerlBin,n_uploadInterval,s_javapOracleHome
    delimiter = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/sysman/config/emd.properties.template'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/sysman/config/emd.properties.template'.
INFO: Calling Action fileActions10.2.0.6.0  lineDelete
    fileName = /opt/data/oracle/product/11/db_1/sysman/config/emd.properties.emca
    searchString = UploadMaxBytesXML
    ignoreCase = true

INFO: updating '/opt/data/oracle/product/11/db_1/sysman/config/emd.properties.emca.
INFO: updating '/opt/data/oracle/product/11/db_1/sysman/config/emd.properties.emca.
INFO: Calling Action fileActions10.2.0.6.0  appendStringToFile
    source = /opt/data/oracle/product/11/db_1/sysman/config/emd.properties.emca
    stringToAppend = UploadMaxBytesXML=20M

INFO: updating '/opt/data/oracle/product/11/db_1/sysman/config/emd.properties.emca.
INFO: updating '/opt/data/oracle/product/11/db_1/sysman/config/emd.properties.emca.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFileEx
    source = /opt/data/oracle/product/11/db_1/bin/emagentdeploy.pl
    destination = /opt/data/oracle/product/11/db_1/bin/emagentdeploy.pl
    variables = null
    delimiter = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/bin/emagentdeploy.pl'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/bin/emagentdeploy.pl'.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/sysman/config/emagentlogging.properties.template
    destination = /opt/data/oracle/product/11/db_1/sysman/config/emagentlogging.properties
    variables = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/sysman/config/emagentlogging.properties.template'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/sysman/config/emagentlogging.properties.template'.
INFO: Setting up 'Oracle Netca Client 11.2.0.1.0 '
INFO: Setting up 'Oracle Netca Client 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Netca Client
INFO: Setting variable 's_responseFileName' to '/opt/data/oracle/product/11/db_1/network/install/netca_typ.rsp'. Received the value from a code block.
INFO: Calling Query fileQueries10.1.0.3.0  exists

filename = /opt/data/oracle/product/11/db_1/network/install/netca_typ.rsp
INFO: Query Returned: true
INFO: Setting variable 's_netCAInstalledProtocols' to 'tcp'. Received the value from a code block.
INFO: Calling Query fileQueries10.1.0.3.0  exists

filename = /opt/data/oracle/product/11/db_1/bin/ntspxctl
INFO: Query Returned: false
INFO: Calling Query fileQueries10.1.0.3.0  exists

filename = /opt/data/oracle/product/11/db_1/bin/ntllsnr
INFO: Query Returned: false
INFO: Calling Query fileQueries10.1.0.3.0  exists

filename = /opt/data/oracle/product/11/db_1/lib/libntcps9.a
INFO: Query Returned: false
INFO: Setting variable 's_netCA_Args' to '/orahome /opt/data/oracle/product/11/db_1 /orahnam OraDb11g_home1 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp /cfg local /authadp NO_VALUE /responseFile /opt/data/oracle/product/11/db_1/network/install/netca_typ.rsp /silent'. Received the value from a code block.
INFO: component has plugIns in XML: no configlog.xml written
INFO: Setting up 'SQL*Plus 11.2.0.1.0 '
INFO: Setting up 'SQL*Plus 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component SQL*Plus
INFO: Setting up 'Oracle Call Interface (OCI) 11.2.0.1.0 '
INFO: Setting up 'Oracle Call Interface (OCI) 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Call Interface (OCI)
INFO: Setting up 'Oracle Multimedia Locator 11.2.0.1.0 '
INFO: Setting up 'Oracle Multimedia Locator 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Multimedia Locator
INFO: Setting up 'Oracle Multimedia 11.2.0.1.0 '
INFO: Setting up 'Oracle Multimedia 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Multimedia
INFO: Calling Action fileActions10.2.0.6.0  instantiateFileEx
    source = /opt/data/oracle/product/11/db_1/ord/im/admin/imimdloc.sql
    destination = /opt/data/oracle/product/11/db_1/ord/im/admin/imimdloc.sql
    variables = null
    delimiter = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/ord/im/admin/imimdloc.sql'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/ord/im/admin/imimdloc.sql'.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFileEx
    source = /opt/data/oracle/product/11/db_1/ord/admin/ordisys.sql
    destination = /opt/data/oracle/product/11/db_1/ord/admin/ordisys.sql
    variables = null
    delimiter = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/ord/admin/ordisys.sql'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/ord/admin/ordisys.sql'.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFileEx
    source = /opt/data/oracle/product/11/db_1/ord/im/admin/ordlib.sql
    destination = /opt/data/oracle/product/11/db_1/ord/im/admin/ordlib.sql
    variables = null
    delimiter = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/ord/im/admin/ordlib.sql'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/ord/im/admin/ordlib.sql'.
INFO: Setting up 'Oracle Net 11.2.0.1.0 '
INFO: Setting up 'Oracle Net 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Net
INFO: Setting up 'Database Configuration and Upgrade Assistants 11.2.0.1.0 '
INFO: Setting up 'Database Configuration and Upgrade Assistants 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Database Configuration and Upgrade Assistants
INFO: Calling Action fileActions10.2.0.6.0  instantiateFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/assistants/dbca/dbca.sbs
    destination = /opt/data/oracle/product/11/db_1/bin/dbca
    variables = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/assistants/dbca/dbca.sbs'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/assistants/dbca/dbca.sbs'.
INFO: Calling Action fileActions10.2.0.6.0  removeFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/assistants/dbca/dbca.sbs

INFO: deleting '/opt/data/oracle/product/11/db_1/assistants/dbca/dbca.sbs'
INFO: deleting '/opt/data/oracle/product/11/db_1/assistants/dbca/dbca.sbs'
INFO: Calling Action unixActions10.2.0.3.0  changePermissions
    source = /opt/data/oracle/product/11/db_1/bin/dbca
    permissions = 755

INFO: changing permissions for '/opt/data/oracle/product/11/db_1/bin/dbca'
INFO: changing permissions for '/opt/data/oracle/product/11/db_1/bin/dbca'
INFO: Setting variable 's_oratabLocation' to '/opt/data/oracle/product/11/db_1/install/oratab'. Received the value from a code block.
INFO: Calling Query fileQueries10.1.0.3.0  exists

filename = /opt/data/oracle/product/11/db_1/install/oratab
INFO: Query Returned: false
INFO: Calling Action fileActions10.2.0.6.0  createFile
    source = /opt/data/oracle/product/11/db_1/install/oratab
    permissions = 755
    owner = null
    group = null

INFO: component has plugIns in XML: no configlog.xml written
INFO: Setting up 'Oracle XML Development Kit 11.2.0.1.0 '
INFO: Setting up 'Oracle XML Development Kit 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle XML Development Kit
INFO: Setting up 'Oracle JVM 11.2.0.1.0 '
INFO: Setting up 'Oracle JVM 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle JVM
INFO: Setting up 'Oracle Advanced Security 11.2.0.1.0 '
INFO: Setting up 'Oracle Advanced Security 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Advanced Security
INFO: Setting up 'Oracle Internet Directory Client 11.2.0.1.0 '
INFO: Setting up 'Oracle Internet Directory Client 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Internet Directory Client
INFO: Setting up 'HAS Files for DB 11.2.0.1.0 '
INFO: Setting up 'HAS Files for DB 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component HAS Files for DB
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/bin/ldapbind

INFO: touching '/opt/data/oracle/product/11/db_1/bin/ldapbind'
INFO: touching '/opt/data/oracle/product/11/db_1/bin/ldapbind'
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/lib/ldflags

INFO: touching '/opt/data/oracle/product/11/db_1/lib/ldflags'
INFO: touching '/opt/data/oracle/product/11/db_1/lib/ldflags'
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/lib/nnfgt.o

INFO: touching '/opt/data/oracle/product/11/db_1/lib/nnfgt.o'
INFO: touching '/opt/data/oracle/product/11/db_1/lib/nnfgt.o'
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/rdbms/lib/config.o

INFO: touching '/opt/data/oracle/product/11/db_1/rdbms/lib/config.o'
INFO: touching '/opt/data/oracle/product/11/db_1/rdbms/lib/config.o'
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/rdbms/lib/nmliblist

INFO: touching '/opt/data/oracle/product/11/db_1/rdbms/lib/nmliblist'
INFO: touching '/opt/data/oracle/product/11/db_1/rdbms/lib/nmliblist'
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/lib/libclntsh.so

INFO: touching '/opt/data/oracle/product/11/db_1/lib/libclntsh.so'
INFO: touching '/opt/data/oracle/product/11/db_1/lib/libclntsh.so'
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/precomp/public/BNDDSC.FOR

INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/BNDDSC.FOR'
INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/BNDDSC.FOR'
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/precomp/public/ORACA.COB

INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/ORACA.COB'
INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/ORACA.COB'
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/precomp/public/ORACA.FOR

INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/ORACA.FOR'
INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/ORACA.FOR'
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/precomp/public/ORACA.H

INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/ORACA.H'
INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/ORACA.H'
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/precomp/public/SELDSC.FOR

INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/SELDSC.FOR'
INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/SELDSC.FOR'
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/precomp/public/SQLCA.COB

INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/SQLCA.COB'
INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/SQLCA.COB'
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/precomp/public/SQLCA.FOR

INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/SQLCA.FOR'
INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/SQLCA.FOR'
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/precomp/public/SQLCA.H

INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/SQLCA.H'
INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/SQLCA.H'
INFO: Calling Action unixActions10.2.0.3.0  touchFile
    source = /opt/data/oracle/product/11/db_1/precomp/public/SQLDA.H

INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/SQLDA.H'
INFO: touching '/opt/data/oracle/product/11/db_1/precomp/public/SQLDA.H'
INFO: Setting up 'Oracle Enterprise Manager Console DB 11.2.0.1.0 '
INFO: Setting up 'Oracle Enterprise Manager Console DB 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Enterprise Manager Console DB
INFO: Calling Query globalVarQueries2.1.0.4.1  getGlobalVariable

variable = oracle.sqlplus.isqlplus.httpport
INFO: 
Query Exception: VariableNotFoundException
Query Exception Class: class oracle.sysman.oii.oiil.OiilQueryException
INFO: 
INFO: Setting variable 'ISQLPLUS_PORT' to ''. Received the value from a code block.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/sysman/config/emoms.properties
    destination = /opt/data/oracle/product/11/db_1/sysman/config/emoms.properties.emca
    variables = NO_PC_MODE,USE_HTTP_PROXY,EM_PING_COMMAND,SET_CONSOLE_MODE,USE_DB_CONSOLE,CONSOLE_MODE,ISQLPLUS_PORT,ISQLPLUS_HOST,ISQLPLUS_PROTOCOL
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/sysman/config/emoms.properties'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/sysman/config/emoms.properties'.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/bin/db2gc
    destination = /opt/data/oracle/product/11/db_1/bin/db2gc
    variables = NO_PC_MODE,USE_HTTP_PROXY,EM_PING_COMMAND,SET_CONSOLE_MODE,USE_DB_CONSOLE,CONSOLE_MODE,ISQLPLUS_PORT,ISQLPLUS_HOST,ISQLPLUS_PROTOCOL
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/bin/db2gc'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/bin/db2gc'.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml
    destination = /opt/data/oracle/product/11/db_1/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml
    variables = ORACLE_HOME
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml'.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/sysman/config/emomslogging.properties.template
    destination = /opt/data/oracle/product/11/db_1/sysman/config/emomslogging.properties
    variables = EMDROOT,LOGGING_LEVEL,s_javapOracleHome
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/sysman/config/emomslogging.properties.template'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/sysman/config/emomslogging.properties.template'.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFileEx
    source = /opt/data/oracle/product/11/db_1/sysman/config/emomsintg.xml
    destination = /opt/data/oracle/product/11/db_1/sysman/config/emomsintg.xml
    variables = EMDROOT,LOGGING_LEVEL
    delimiter = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/sysman/config/emomsintg.xml'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/sysman/config/emomsintg.xml'.
INFO: Calling Query RepositoryQueries3.0.0.2.17  Obfuscate

InputString = *Protected value, not to be logged*

OracleHome = /opt/data/oracle/product/11/db_1

JavaLocation = null

JarLocation = null
INFO: Query Returned: *Protected value, not to be logged*
INFO: Setting variable 's_obfOc4jAdmPasswd' to '*Protected value, not to be logged*'. Received the value from a code block.
INFO: Calling Query RepositoryQueries3.0.0.2.17  Obfuscate

InputString = *Protected value, not to be logged*

OracleHome = /opt/data/oracle/product/11/db_1

JavaLocation = null

JarLocation = null
INFO: Query Returned: *Protected value, not to be logged*
INFO: Setting variable 's_obfJtaAdmPasswd' to '*Protected value, not to be logged*'. Received the value from a code block.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/oc4j/j2ee//OC4J_DBConsole/config/system-jazn-data.xml
    destination = /opt/data/oracle/product/11/db_1/oc4j/j2ee//OC4J_DBConsole/config/system-jazn-data.xml
    variables = s_obfOc4jAdmPasswd,s_obfJtaAdmPasswd
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/oc4j/j2ee//OC4J_DBConsole/config/system-jazn-data.xml'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/oc4j/j2ee//OC4J_DBConsole/config/system-jazn-data.xml'.
INFO: Calling Action unixActions10.2.0.3.0  changePermissions
    source = /opt/data/oracle/product/11/db_1/sysman/config/emoms.properties.emca
    permissions = 0640

INFO: changing permissions for '/opt/data/oracle/product/11/db_1/sysman/config/emoms.properties.emca'
INFO: changing permissions for '/opt/data/oracle/product/11/db_1/sysman/config/emoms.properties.emca'
INFO: Calling Action unixActions10.2.0.3.0  changePermissions
    source = /opt/data/oracle/product/11/db_1/oc4j/j2ee//OC4J_DBConsole
    permissions = 0750

INFO: changing permissions for '/opt/data/oracle/product/11/db_1/oc4j/j2ee//OC4J_DBConsole'
INFO: changing permissions for '/opt/data/oracle/product/11/db_1/oc4j/j2ee//OC4J_DBConsole'
INFO: Calling Action fileActions10.2.0.6.0  removeFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/oc4j/j2ee/oc4j_applications/applications/em.ear

INFO: deleting '/opt/data/oracle/product/11/db_1/oc4j/j2ee/oc4j_applications/applications/em.ear'
INFO: deleting '/opt/data/oracle/product/11/db_1/oc4j/j2ee/oc4j_applications/applications/em.ear'
INFO: Calling Action fileActions10.2.0.6.0  removeFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/oc4j/j2ee/oc4j_applications/applications/em/em.war

INFO: deleting '/opt/data/oracle/product/11/db_1/oc4j/j2ee/oc4j_applications/applications/em/em.war'
INFO: deleting '/opt/data/oracle/product/11/db_1/oc4j/j2ee/oc4j_applications/applications/em/em.war'
INFO: Calling Query globalVarQueries2.1.0.4.1  getGlobalVariable

variable = oracle.assistants.server.sid
INFO: 
Query Exception: VariableNotFoundException
Query Exception Class: class oracle.sysman.oii.oiil.OiilQueryException
INFO: 
INFO: Setting variable 's_sid' to ''. Received the value from a code block.
INFO: Setting variable 'b_launchBrowser' to 'true'. Received the value from a code block.
INFO: Setting up 'Oracle Net Listener 11.2.0.1.0 '
INFO: Setting up 'Oracle Net Listener 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Net Listener
INFO: Calling Action fileActions10.2.0.6.0  instantiateFileEx
    source = /opt/data/oracle/product/11/db_1/network/install/sqlnet/setowner.sh
    destination = /opt/data/oracle/product/11/db_1/network/install/sqlnet/setowner.sh
    variables = ORACLE_HOME
    delimiter = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/network/install/sqlnet/setowner.sh'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/network/install/sqlnet/setowner.sh'.
INFO: Calling Action fileActions10.2.0.6.0  appendStringToFile
    source = /opt/data/oracle/product/11/db_1/root.sh
    stringToAppend = 
#
# Root Actions related to network
#

INFO: updating '/opt/data/oracle/product/11/db_1/root.sh.
INFO: updating '/opt/data/oracle/product/11/db_1/root.sh.
INFO: Calling Action fileActions10.2.0.6.0  appendStringToFile
    source = /opt/data/oracle/product/11/db_1/root.sh
    stringToAppend = /opt/data/oracle/product/11/db_1/network/install/sqlnet/setowner.sh 

INFO: updating '/opt/data/oracle/product/11/db_1/root.sh.
INFO: updating '/opt/data/oracle/product/11/db_1/root.sh.
INFO: Setting up 'Oracle Text 11.2.0.1.0 '
INFO: Setting up 'Oracle Text 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Text
INFO: Setting up 'Oracle Net Services 11.2.0.1.0 '
INFO: Setting up 'Oracle Net Services 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Net Services
INFO: Setting up 'Oracle Database 11g 11.2.0.1.0 '
INFO: Setting up 'Oracle Database 11g 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Database 11g
INFO: Calling Action fileActions10.2.0.6.0  instantiateFileEx
    source = /opt/data/oracle/product/11/db_1/rdbms/install/rootadd_filemap.sh
    destination = /opt/data/oracle/product/11/db_1/rdbms/install/rootadd_filemap.sh
    variables = ORACLE_HOME
    delimiter = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/rdbms/install/rootadd_filemap.sh'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/rdbms/install/rootadd_filemap.sh'.
INFO: Calling Action fileActions10.2.0.6.0  appendStringToFile
    source = /opt/data/oracle/product/11/db_1/root.sh
    stringToAppend = 
#
# Invoke standalone rootadd_rdbms.sh
#
/opt/data/oracle/product/11/db_1/rdbms/install/rootadd_rdbms.sh


INFO: updating '/opt/data/oracle/product/11/db_1/root.sh.
INFO: updating '/opt/data/oracle/product/11/db_1/root.sh.
INFO: Calling Action fileActions10.2.0.6.0  appendStringToFile
    source = /opt/data/oracle/product/11/db_1/root.sh
    stringToAppend = /opt/data/oracle/product/11/db_1/rdbms/install/rootadd_filemap.sh 

INFO: updating '/opt/data/oracle/product/11/db_1/root.sh.
INFO: updating '/opt/data/oracle/product/11/db_1/root.sh.
INFO: Calling Action fileActions10.2.0.6.0  instantiateFile
    selectedNodes = 
    source = /opt/data/oracle/product/11/db_1/rdbms/install/config_filemap.sbs
    destination = /opt/data/oracle/product/11/db_1/rdbms/install/filemap.ora
    variables = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/rdbms/install/config_filemap.sbs'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/rdbms/install/config_filemap.sbs'.
INFO: Calling Action fileActions10.2.0.6.0  createDir
    selectedNodes = 
    destination = /opt/data/oracle/product/11/db_1/rdbms/audit
    permissions = null
    owner = null
    group = null

INFO: Calling Action fileActions10.2.0.6.0  createDir
    selectedNodes = 
    destination = /opt/data/oracle/product/11/db_1/rdbms/log
    permissions = null
    owner = null
    group = null

INFO: Calling Action fileActions10.2.0.6.0  instantiateFile
    selectedNodes = null
    source = /opt/data/oracle/product/11/db_1/demo/schema/mk_dir.sql.sbs
    destination = /opt/data/oracle/product/11/db_1/demo/schema/mk_dir.sql
    variables = null
    encoding = null

INFO: instantiating '/opt/data/oracle/product/11/db_1/demo/schema/mk_dir.sql.sbs'.
INFO: instantiating '/opt/data/oracle/product/11/db_1/demo/schema/mk_dir.sql.sbs'.
INFO: Setting up 'Oracle OLAP 11.2.0.1.0 '
INFO: Setting up 'Oracle OLAP 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle OLAP
INFO: Setting up 'Oracle Spatial 11.2.0.1.0 '
INFO: Setting up 'Oracle Spatial 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Spatial
INFO: Setting up 'Oracle Partitioning 11.2.0.1.0 '
INFO: Setting up 'Oracle Partitioning 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Partitioning
INFO: Setting up 'Enterprise Edition Options 11.2.0.1.0 '
INFO: Setting up 'Enterprise Edition Options 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Enterprise Edition Options
INFO: Setting up 'Oracle Database 11g 11.2.0.1.0 '
INFO: Setting up 'Oracle Database 11g 11.2.0.1.0 '
INFO: 11/4/19 4:59:30 PM CST: Starting install Install Phase 2 of component Oracle Database 11g
INFO: Calling Action fileActions10.2.0.6.0  createDirRecurse
    destination = /opt/data/oracle/product/11/db_1/oc4j/opmn/lib
    selectedNodes = null
    permissions = null
    owner = null
    group = null

INFO: Calling Action unixActions10.2.0.3.0  registerRootsh
    rootShLocation = /opt/data/oracle/product/11/db_1/root.sh
    requiredBeforeConfig = false

INFO: Setting variable 'ROOTSH_LOCATION' to '/opt/data/oracle/product/11/db_1/root.sh'. Received the value from a code block.
INFO: Setting variable 'ROOTSH_STATUS' to '1'. Received the value from a code block.
INFO: InstallProgressMonitor: Completed phase 8
INFO: Install Phase 2 JRE files in Scratch :0
INFO: Checkpoint:Failed Checkpoint found returning it for getAllFailedCheckPoints.
INFO: Checkpoint:Failed Checkpoint found returning null for getLastFailedCheckPoint.
INFO: Checkpoint:Index file written and updated
INFO: OiicSaveInvWCCE:Before saving the inventory. This is a install session.
INFO: OiicSaveInvWCCE:Before saving the inventory. The platform is unix.
INFO: OiicSaveInvWCCE:Before saving the inventory. The root.sh location is /opt/data/oracle/product/11/db_1/root.sh
INFO: OiicSaveInvWCCE:Before saving the inventory. The root.sh location exists.
INFO: Initializing OUI save inventory
INFO: Saving global variables for component oracle.server
INFO: Saving global variables completed
INFO: Saving the install inventory which has the access of 1
INFO: 

INFO: Start output from spawned process:
INFO: ----------------------------------
INFO: 

INFO: The flags set for this home (/opt/data/oracle/product/11/db_1) are:aruID|aruDesc|guid|addedToCI|additionalOHProps
INFO: Updating XML inventory.
INFO: Saving a backup of inventory for home:/opt/data/oracle/product/11/db_1
INFO: 

INFO: Start output from spawned process:
INFO: ----------------------------------
INFO: 

INFO: Saving comps.xml for /opt/data/oracle/product/11/db_1
INFO: Current Inventory:
    Oracle Home: OraDb11g_home1
        Sun JDK 1.5.0.17.0 
        Installer SDK Component 11.2.0.1.0 
        Oracle One-Off Patch Installer 11.2.0.0.2 
        Oracle Universal Installer 11.2.0.1.0 
        Oracle Configuration Manager Deconfiguration 10.3.1.0.0 
        Oracle DBCA Deconfiguration 11.2.0.1.0 
        Oracle RAC Deconfiguration 11.2.0.1.0 
        Oracle Database Deconfiguration 11.2.0.1.0 
        Oracle Configuration Manager 10.3.1.1.0 
        Oracle ODBC Driverfor Instant Client 11.2.0.1.0 
        LDAP Required Support Files 11.2.0.1.0 
        SSL Required Support Files for InstantClient 11.2.0.1.0 
        Bali Share 1.1.18.0.0 
        Oracle Extended Windowing Toolkit 3.4.47.0.0 
        Oracle JFC Extended Windowing Toolkit 4.2.36.0.0 
        Oracle Real Application Testing 11.2.0.1.0 
        Oracle Database Vault J2EE Application 11.2.0.1.0 
        Oracle Label Security 11.2.0.1.0 
        Oracle Data Mining RDBMS Files 11.2.0.1.0 
        Oracle OLAP RDBMS Files 11.2.0.1.0 
        Oracle OLAP API 11.2.0.1.0 
        Platform Required Support Files 11.2.0.1.0 
        Oracle Database Vault option 11.2.0.1.0 
        Oracle RAC Required Support Files-HAS 11.2.0.1.0 
        SQL*Plus Required Support Files 11.2.0.1.0 
        Oracle Display Fonts 9.0.2.0.0 
        Oracle Ice Browser 5.2.3.6.0 
        Oracle JDBC Server Support Package 11.2.0.1.0 
        Oracle SQL Developer 11.2.0.1.0 
        Oracle Application Express 11.2.0.1.0 
        XDK Required Support Files 11.2.0.1.0 
        RDBMS Required Support Files for Instant Client 11.2.0.1.0 
        SQLJ Runtime 11.2.0.1.0 
        Database Workspace Manager 11.2.0.1.0 
        RDBMS Required Support Files 11.2.0.1.0 
        Oracle Globalization Support 11.2.0.1.0 
        Exadata Storage Server 11.2.0.1.0 
        Provisioning Advisor Framework 10.2.0.4.2 
        Enterprise Manager Database Plugin -- Repository Support 11.2.0.1.0 
        Enterprise Manager Repository Core Files 10.2.0.4.2 
        Enterprise Manager Database Plugin -- Agent Support 11.2.0.1.0 
        Enterprise Manager Grid Control Core Files 10.2.0.4.2 
        Enterprise Manager Common Core Files 10.2.0.4.2 
        Enterprise Manager Agent Core Files 10.2.0.4.2 
        Agent Required Support Files 10.2.0.4.2 
        regexp 2.1.9.0.0 
        Parser Generator Required Support Files 11.2.0.1.0 
        Oracle 11g Warehouse Builder Required Files 11.2.0.1.0 
        Oracle Notification Service (eONS) 11.2.0.1.0 
        Oracle Text Required Support Files 11.2.0.1.0 
        Precompiler Required Support Files 11.2.0.1.0 
        Oracle Database 11g Multimedia Files 11.2.0.1.0 
        Oracle Multimedia Java Advanced Imaging 11.2.0.1.0 
        Oracle Multimedia Annotator 11.2.0.1.0 
        Oracle JDBC/OCI Instant Client 11.2.0.1.0 
        Oracle Multimedia Locator RDBMS Files 11.2.0.1.0 
        Oracle Core Required Support Files 11.2.0.1.0 
        Oracle Help For Java 4.2.9.0.0 
        Sample Schema Data 11.2.0.1.0 
        Oracle Starter Database 11.2.0.1.0 
        Oracle Message Gateway Common Files 11.2.0.1.0 
        Oracle XML Query 11.2.0.1.0 
        XML Parser for Oracle JVM 11.2.0.1.0 
        Expat libraries 2.0.1.0.1 
        Installation Plugin Files 11.2.0.1.0 
        Enterprise Manager Common Files 10.2.0.4.2 
        Perl Modules 5.10.0.0.1 
        Deinstallation Tool 11.2.0.1.0 
        Oracle Quality of Service Management (Client) 11.2.0.1.0 
        Perl Interpreter 5.10.0.0.1 
        JAccelerator (COMPANION) 11.2.0.1.0 
        Oracle Containers for Java 11.2.0.1.0 
        Oracle Code Editor 1.2.1.0.0I 
        Oracle Net Required Support Files 11.2.0.1.0 
        Secure Socket Layer 11.2.0.1.0 
        Oracle Universal Connection Pool 11.2.0.1.0 
        Oracle JDBC/THIN Interfaces 11.2.0.1.0 
        Oracle Multimedia Client Option 11.2.0.1.0 
        Oracle Java Client 11.2.0.1.0 
        Character Set Migration Utility 11.2.0.1.0 
        Oracle Locale Builder 11.2.0.1.0 
        PL/SQL Embedded Gateway 11.2.0.1.0 
        OLAP SQL Scripts 11.2.0.1.0 
        Database SQL Scripts 11.2.0.1.0 
        Oracle Globalization Support 11.2.0.1.0 
        Required Support Files 11.2.0.1.0 
        SQL*Plus Files for Instant Client 11.2.0.1.0 
        Oracle ODBC Driver 11.2.0.1.0 
        Oracle Database User Interface 2.2.13.0.0 
        Oracle Notification Service 11.2.0.0.0 
        Enterprise Manager Minimal Integration 11.2.0.1.0 
        XML Parser for Java 11.2.0.1.0 
        Oracle Security Developer Tools 11.2.0.1.0 
        Oracle Wallet Manager 11.2.0.1.0 
        Cluster Verification Utility Common Files 11.2.0.1.0 
        Oracle Clusterware RDBMS Files 11.2.0.1.0 
        Oracle UIX 2.2.24.5.0 
        Enterprise Manager plugin Common Files 11.2.0.1.0 
        HAS Common Files 11.2.0.1.0 
        Precompiler Common Files 11.2.0.1.0 
        Installation Common Files 11.2.0.1.0 
        Oracle Help for the  Web 2.0.14.0.0 
        Oracle LDAP administration 11.2.0.1.0 
        Buildtools Common Files 11.2.0.1.0 
        Assistant Common Files 11.2.0.1.0 
        Oracle Recovery Manager 11.2.0.1.0 
        PL/SQL 11.2.0.1.0 
        Generic Connectivity Common Files 11.2.0.1.0 
        Oracle Database Gateway for ODBC 11.2.0.1.0 
        Oracle Programmer 11.2.0.1.0 
        Oracle Database Utilities 11.2.0.1.0 
        Enterprise Manager Agent 10.2.0.4.2 
        Oracle Netca Client 11.2.0.1.0 
        SQL*Plus 11.2.0.1.0 
        Oracle Call Interface (OCI) 11.2.0.1.0 
        Oracle Multimedia Locator 11.2.0.1.0 
        Oracle Multimedia 11.2.0.1.0 
        Oracle Net 11.2.0.1.0 
        Database Configuration and Upgrade Assistants 11.2.0.1.0 
        Oracle XML Development Kit 11.2.0.1.0 
        Oracle JVM 11.2.0.1.0 
        Oracle Advanced Security 11.2.0.1.0 
        Oracle Internet Directory Client 11.2.0.1.0 
        HAS Files for DB 11.2.0.1.0 
        Oracle Enterprise Manager Console DB 11.2.0.1.0 
        Oracle Net Listener 11.2.0.1.0 
        Oracle Text 11.2.0.1.0 
        Oracle Net Services 11.2.0.1.0 
        Oracle Database 11g 11.2.0.1.0 
        Oracle OLAP 11.2.0.1.0 
        Oracle Spatial 11.2.0.1.0 
        Oracle Partitioning 11.2.0.1.0 
        Enterprise Edition Options 11.2.0.1.0 
        Oracle Database 11g 11.2.0.1.0 

INFO: OiicSaveInvWCCE:After saving the inventory. This is an Install session.
INFO: OiicSaveInvWCCE:After saving the inventory. The platform is unix.
INFO: OiicSaveInvWCCE:After saving the inventory. The location of root.sh is /opt/data/oracle/product/11/db_1/root.sh
INFO: OiicSaveInvWCCE:After saving the inventory. The root.sh location exists
INFO: 

INFO: Start output from spawned process:
INFO: ----------------------------------
INFO: 

INFO: SaveInvWCCE JRE files in Scratch :0
INFO: oracle.installer.mandatorySetup property is set to false, so skipping the execution of additional tools
INFO: oracle.installer.installUpdates property is set to false, so skipping the checking of updates
INFO: Config Initialize JRE files in Scratch :0
INFO: stage loc: /tmp/OraInstall2019-11-04_04-57-16PM/
INFO: Copying Aggr XML for: Oracle Configuration Manager
INFO: stage loc: /tmp/OraInstall2019-11-04_04-57-16PM/
INFO: Copying Aggr XML for: HAS Common Files
INFO: stage loc: /tmp/OraInstall2019-11-04_04-57-16PM/
INFO: Copying Aggr XML for: Oracle Netca Client
INFO: stage loc: /tmp/OraInstall2019-11-04_04-57-16PM/
INFO: Copying Aggr XML for: Database Configuration and Upgrade Assistants
INFO: stage loc: /tmp/OraInstall2019-11-04_04-57-16PM/
INFO: Copying Aggr XML for: Oracle Enterprise Manager Console DB
INFO: stage loc: /tmp/OraInstall2019-11-04_04-57-16PM/
INFO: Copying Aggr XML for: Oracle Database 11g
INFO: The Top level Aggreage File = /opt/data/oracle/product/11/db_1/inventory/ContentsXML/ConfigXML/oracle.server.11_2_0_1_0.xml
INFO: OUI_CAPlugIn is not found in XML
INFO: no. of tools to supress: 0 for comp: Oracle Enterprise Manager Console DB
INFO: cf session will be created for OH: /opt/data/oracle/product/11/db_1/ TLAggr: oracle.server instancePath: inventory/ContentsXML/ConfigXML/
INFO: cf session for OH: /opt/data/oracle/product/11/db_1/ TL Aggr: [oracle.server] instancePath: inventory/ContentsXML/ConfigXML/
INFO: aggr ref length : 6
INFO: cf session hashcode: 1184634322
INFO: cf session saved with key: OraDb11g_home1 oracle.server
INFO: cf session is ok
INFO: created and saved cf session for oh: OraDb11g_home1
INFO: passing params to cf
INFO: Handling the storing of variables for aggr name  oracle.sysman.ccr
INFO: This variable s_OPSNodeInfoString is not added to the global context map
INFO: This variable b_isUNIX is not added to the global context map
INFO: This variable b_createResponseFile is not added to the global context map
INFO: This variable s_ps is not added to the global context map
INFO: This variable s_oraName is not added to the global context map
INFO: This variable s_ccrJarDestination is not added to the global context map
INFO: This variable b_localInstall is not added to the global context map
INFO: This variable b_doConfigCCR is not added to the global context map
INFO: This variable b_ccrUpgrade is not added to the global context map
INFO: This variable s_rspFilePath is not added to the global context map
INFO: This variable PROD_HOME is not added to the global context map
INFO: for oracle.has.common no aggregate found by cf: no configuration
INFO: Handling the storing of variables for aggr name  oracle.assistants.netca.client
INFO: This variable s_swingallName is not added to the global context map
INFO: This variable s_shareName is not added to the global context map
INFO: This variable s_runtimeLib is not added to the global context map
INFO: This variable s_runTimeJar is not added to the global context map
INFO: This variable s_responseFileName is not added to the global context map
INFO: This variable s_operatingSystem is not added to the global context map
INFO: This variable s_netcfgName is not added to the global context map
INFO: This variable s_netcahelpName is not added to the global context map
INFO: This variable s_netcaUpgradeFlag is not added to the global context map
INFO: This variable s_netcaClass is not added to the global context map
INFO: This variable s_netCA_Args is not added to the global context map
INFO: This variable s_netCAInstalledProtocols is not added to the global context map
INFO: This variable s_netAPIName is not added to the global context map
INFO: This variable s_ldapclnt9 is not added to the global context map
INFO: This variable s_ldapclnt11 is not added to the global context map
INFO: This variable s_ldapclnt10 is not added to the global context map
INFO: This variable s_jreLocation is not added to the global context map
INFO: This variable s_jreJarFile is not added to the global context map
INFO: This variable s_jreJar is not added to the global context map
INFO: This variable s_jewtName is not added to the global context map
INFO: This variable s_installTypeForLaunchNETCA is not added to the global context map
INFO: This variable s_icebrowserName is not added to the global context map
INFO: This variable s_helpName is not added to the global context map
INFO: This variable s_ewtcompatName is not added to the global context map
INFO: This variable s_ewtName is not added to the global context map
INFO: This variable s_ewtFile is not added to the global context map
INFO: This variable s_ewtCompat is not added to the global context map
INFO: This variable s_cfgMethod is not added to the global context map
INFO: This variable s_caHelpZhTwJar is not added to the global context map
INFO: This variable s_caHelpZhCnJar is not added to the global context map
INFO: This variable s_caHelpPtBRJar is not added to the global context map
INFO: This variable s_caHelpKoJar is not added to the global context map
INFO: This variable s_caHelpJar is not added to the global context map
INFO: This variable s_caHelpJaJar is not added to the global context map
INFO: This variable s_caHelpItJar is not added to the global context map
INFO: This variable s_caHelpFrJar is not added to the global context map
INFO: This variable s_caHelpEsJar is not added to the global context map
INFO: This variable s_caHelpDeJar is not added to the global context map
INFO: This variable s_authAdaptors is not added to the global context map
INFO: This variable ps_netCA_Args_OverRide is not added to the global context map
INFO: This variable b_net8ServerInstalling is not added to the global context map
INFO: This variable b_javavmIsInstalling is not added to the global context map
INFO: This variable b_isWindows is not added to the global context map
INFO: This variable b_isUNIX is not added to the global context map
INFO: This variable b_cmanIsInstalling is not added to the global context map
INFO: This variable b_anoIsInstalling is not added to the global context map
INFO: This variable s_xmlparservLoc is not added to the global context map
INFO: This variable s_ouiJlibDir is not added to the global context map
INFO: This variable s_opsmJlib is not added to the global context map
INFO: This variable s_ntwkTools is not added to the global context map
INFO: This variable s_netjlibDir is not added to the global context map
INFO: This variable s_netcahelpLocation is not added to the global context map
INFO: This variable s_netcaJlibDir is not added to the global context map
INFO: This variable s_netcaDocDir is not added to the global context map
INFO: This variable s_netPropertiesFile is not added to the global context map
INFO: This variable s_netCA is not added to the global context map
INFO: This variable s_net8caFileToInstantiate is not added to the global context map
INFO: This variable s_jre15Location is not added to the global context map
INFO: This variable s_jlibDir is not added to the global context map
INFO: This variable s_inventoryPrereqOui is not added to the global context map
INFO: This variable s_emdwLibDir is not added to the global context map
INFO: This variable s_caHelpDir is not added to the global context map
INFO: This variable s_assistantJlibDir is not added to the global context map
INFO: This variable s_JavaFlag is not added to the global context map
INFO: This variable b_isOPS is not added to the global context map
INFO: This variable s_windowsCommandLine is not added to the global context map
INFO: This variable s_net8caExecutable is not added to the global context map
INFO: This variable s_netcaUserDirArg is not added to the global context map
INFO: This variable s_installTypeForNetCA is not added to the global context map
INFO: This variable s_netcaSilentFlag is not added to the global context map
INFO: This variable s_netCAInstalledProducts is not added to the global context map
INFO: This variable s_netcaClasspath is not added to the global context map
INFO: This variable PROD_HOME is not added to the global context map
INFO: ORACLE_HOME is not settable, hence not setting the value
INFO: Handling the storing of variables for aggr name  oracle.assistants.server
INFO: This variable s_operatingSystem is not added to the global context map
INFO: This variable s_jreLocation is not added to the global context map
INFO: This variable pn_dboffset is not added to the global context map
INFO: This variable cs_swingName is not added to the global context map
INFO: This variable cs_komodoName is not added to the global context map
INFO: This variable cs_kodiakName is not added to the global context map
INFO: This variable cs_jewtName is not added to the global context map
INFO: This variable cs_iceBrowserName is not added to the global context map
INFO: This variable cs_ewtcompatName is not added to the global context map
INFO: This variable cs_ewtName is not added to the global context map
INFO: This variable cs_baliShareName is not added to the global context map
INFO: This variable b_orabaseContainsOrahome is not added to the global context map
INFO: This variable b_isWINDOWS is not added to the global context map
INFO: This variable b_isUNIX is not added to the global context map
INFO: This variable sl_dbmaParameterListForIcon is not added to the global context map
INFO: This variable sl_dbcaParameterListForIcon is not added to the global context map
INFO: This variable s_xmlparservLoc is not added to the global context map
INFO: This variable s_ouiJlibLocation is not added to the global context map
INFO: This variable s_oratabLocation is not added to the global context map
INFO: This variable s_opsmLocation is not added to the global context map
INFO: This variable s_dbuaLocation is not added to the global context map
INFO: This variable s_dbcaLocation is not added to the global context map
INFO: This variable s_OracleBinLocation is not added to the global context map
INFO: This variable s_dbcaInstLaunchFile is not added to the global context map
INFO: This variable s_dbcaLaunchFile is not added to the global context map
INFO: This variable s_dbmaLaunchFile is not added to the global context map
INFO: This variable s_dbmaInstLaunchFile is not added to the global context map
INFO: This variable PROD_HOME is not added to the global context map
INFO: ORACLE_HOME is not settable, hence not setting the value
INFO: Handling the storing of variables for aggr name  oracle.sysman.console.db
INFO: This variable s_sid is not added to the global context map
INFO: This variable s_serverInstallType is not added to the global context map
INFO: This variable s_platform is not added to the global context map
INFO: HashMap added with the key oracle.sysman.console.db and an empty variable Vector
INFO: Adding the variable s_obfOc4jAdmPasswd to the aggregate oracle.sysman.console.db
INFO: Adding the variable s_obfOc4jAdmPasswd to the global context map for the aggregate oracle.sysman.console.db
INFO: Adding the variable s_obfJtaAdmPasswd to the aggregate oracle.sysman.console.db
INFO: Adding the variable s_obfJtaAdmPasswd to the global context map for the aggregate oracle.sysman.console.db
INFO: This variable s_nlsLang is not added to the global context map
INFO: This variable s_emailServer is not added to the global context map
INFO: This variable s_emailAddress is not added to the global context map
INFO: This variable s_cfgtyperet is not added to the global context map
INFO: Adding the variable s_JtaAdmPasswd to the aggregate oracle.sysman.console.db
INFO: Adding the variable s_JtaAdmPasswd to the global context map for the aggregate oracle.sysman.console.db
INFO: This variable n_uploadInterval is not added to the global context map
INFO: This variable localhost is not added to the global context map
INFO: This variable b_launchTools is not added to the global context map
INFO: This variable b_launchBrowser is not added to the global context map
INFO: This variable b_isUNIX is not added to the global context map
INFO: This variable b_centralConsole is not added to the global context map
INFO: This variable USE_HTTP_PROXY is not added to the global context map
INFO: This variable USE_DB_CONSOLE is not added to the global context map
INFO: This variable SET_CONSOLE_MODE is not added to the global context map
INFO: This variable SA_SETUP is not added to the global context map
INFO: This variable OC4JLOC is not added to the global context map
INFO: This variable NO_PC_MODE is not added to the global context map
INFO: This variable LOGGING_LEVEL is not added to the global context map
INFO: This variable JRE_HOME is not added to the global context map
INFO: This variable ISQLPLUS_PROTOCOL is not added to the global context map
INFO: This variable ISQLPLUS_PORT is not added to the global context map
INFO: This variable HOST_SID_OFFSET_ENABLED is not added to the global context map
INFO: This variable HOSTNAME is not added to the global context map
INFO: This variable EM_UPLOAD_DISABLE is not added to the global context map
INFO: This variable EM_UIX_DEBUG_FLAG is not added to the global context map
INFO: This variable EMPRODVER is not added to the global context map
INFO: This variable CONSOLE_MODE is not added to the global context map
INFO: This variable CONSOLE_CFG is not added to the global context map
INFO: This variable sl_oraclehomes is not added to the global context map
INFO: This variable s_oc4jDir is not added to the global context map
INFO: This variable s_oc4jAppsDir is not added to the global context map
INFO: This variable s_jreHome is not added to the global context map
INFO: This variable s_configcommand is not added to the global context map
INFO: This variable b_isRAC is not added to the global context map
INFO: This variable b_UNIX is not added to the global context map
INFO: This variable OJSP_JAR_LOC is not added to the global context map
INFO: This variable OJSPUTIL_JAR_LOC is not added to the global context map
INFO: This variable LDAP_JAR_LOC is not added to the global context map
INFO: This variable JAVA_HOME is not added to the global context map
INFO: This variable ISQLPLUS_HOST is not added to the global context map
INFO: This variable EM_UIX_LOCATION is not added to the global context map
INFO: This variable EM_REPOS_HOST is not added to the global context map
INFO: This variable EM_PING_COMMAND is not added to the global context map
INFO: This variable EM_OC4J_HOME is not added to the global context map
INFO: This variable EM_EAR_LOC is not added to the global context map
INFO: This variable EMDROOT is not added to the global context map
INFO: Adding the variable s_oc4jAdmPasswd to the aggregate oracle.sysman.console.db
INFO: Adding the variable s_oc4jAdmPasswd to the global context map for the aggregate oracle.sysman.console.db
INFO: This variable s_launchBrowserClasspath is not added to the global context map
INFO: This variable s_javapOracleHome is not added to the global context map
INFO: This variable PROD_HOME is not added to the global context map
INFO: {Parameter:TOPLEVEL_COMPONENT in {Aggregate:OuiConfigVariables:1.0.0.0.0:common}}: Parameter data type is not compatible with the provided String Array.
INFO: passing params to cf done
INFO: done saving info by cf
INFO: This is a shared oracle home or remote nodes are null. No copy required.
INFO: Checkpoint:Failed Checkpoint found returning it for getAllFailedCheckPoints.
INFO: Checkpoint:Failed Checkpoint found returning null for getLastFailedCheckPoint.
INFO: Checkpoint:Index file written and updated
INFO: Checkpoint:Transfer of file done from remote node
INFO: Adding iterator oracle.sysman.oii.oiif.oiifw.OiifwRootShWCDE
INFO: Updating the global context
INFO: Path To 'globalcontext.xml' = /opt/data/oracle/product/11/db_1/install/chainedInstall/globalcontext
INFO: Since operation was successful, move the current OiicAPISessionDetails to installed list
INFO: Number of root scripts to be executed = 2
INFO: isSuccessfullInstallation: true
INFO: isSuccessfullRemoteInstallation: true
INFO: Adding ExitStatus SUCCESS to the exit status set
INFO: Completed setting up InstallDB
INFO: Number of root scripts to be executed = 2
The following configuration scripts need to be executed as the "root" user. 
 #!/bin/sh 
 #Root scripts to run

/opt/data/inventory/orainstRoot.sh
/opt/data/oracle/product/11/db_1/root.sh
To execute the configuration scripts:
     1. Open a terminal window 
     2. Log in as "root" 
     3. Run the scripts 
     4. Return to this window and hit "Enter" key to continue 

INFO: Shutting down OUISetupDriver.JobExecutorThread
INFO: Cleaning up, please wait...
INFO: Dispose the install area control object
INFO: Update the state machine to STATE_CLEAN
Successfully Setup Software.
INFO: All forked task are completed at state setup
INFO: Completed background operations
INFO: Moved to state <setup>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <setup>
WARNING: Validation disabled for the state setup
INFO: Completed validating state <setup>
INFO: Verifying route success
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state finish
INFO: FinishAction Actions.execute called
INFO: Completed executing action at state <finish>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <finish>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <finish>
WARNING: Validation disabled for the state finish
INFO: Completed validating state <finish>
INFO: Terminating all background operations
INFO: Terminated all background operations
INFO: Successfully executed the flow in SILENT mode
INFO: Finding the most appropriate exit status for the current application
INFO: Exit Status is 0
INFO: Shutdown Oracle Database 11g Release 2 Installer
INFO: Unloading Setup Driver
 

 

 

切換到root執行

[root@mawei2 /]# /opt/data/inventory/orainstRoot.sh
Changing permissions of /opt/data/inventory.
Adding read,write permissions for group.
Removing read,write,execute permissions for world.

Changing groupname of /opt/data/inventory to oinstall.
The execution of the script is complete.
[root@mawei2 /]# /opt/data/oracle/product/11/db_1/root.sh
Check /opt/data/oracle/product/11/db_1/install/root_mawei2_2019-11-04_17-07-54.log for the output of root script
 

 cat  /opt/data/oracle/product/11/db_1/install/root_mawei2_2019-11-04_17-07-54.log

Running Oracle 11g root.sh script...

The following environment variables are set as:
    ORACLE_OWNER= oracle
    ORACLE_HOME=  /opt/data/oracle/product/11/db_1

Creating /etc/oratab file...
Entries will be added to the /etc/oratab file as needed by
Database Configuration Assistant when a database is created
Finished running generic part of root.sh script.
Now product-specific root actions will be performed.
Finished product-specific root actions.
驗證是否安裝成功。

lsnrctl start 

 dbca -silent -createDatabase -templateName General_Purpose.dbc -gdbName test -sysPassword oracle -systemPassword oracle

SQL> startup
ORA-01078: failure in processing system parameters
LRM-00109: could not open parameter file '/opt/data/oracle/product/11/db_1/dbs/inituidorcl.ora'
SQL> startup nomount;
ORA-01078: failure in processing system parameters
LRM-00109: could not open parameter file '/opt/data/oracle/product/11/db_1/dbs/inituidorcl.ora'
SQL> exit
Disconnected
[oracle@mawei2 ~]$ exit       
logout
您在 /var/spool/mail/root 中有新郵件
[root@mawei2 /]# cd /
[root@mawei2 /]# fin -name init.ora*
bash: fin: 未找到命令...
[root@mawei2 /]# find -name init.ora*
./opt/data/oracle/admin/test/pfile/init.ora.104201917320
./opt/data/oracle/product/11/db_1/srvm/admin/init.ora
./opt/data/oracle/product/11/db_1/dbs/init.ora
[root@mawei2 /]# cp ./opt/data/oracle/admin/test/pfile/init.ora.104201917320 /opt/data/oracle/product/11/db_1/dbs/inituidorcl.ora
 

 chown -R oracle:dba /opt/data/oracle/product/11/db_1/dbs/inituidorcl.ora

從Oracle Database 11g開始,自動內存管理特性需要更多的共享內存(/dev/shm)和文件描述符。對於計算機上的每個Oracle實例,共享內存的大小至少應該大於MEMORY_MAX_TARGET和MEMORY_TARGET。如果MEMORY_MAX_TARGET或MEMORY_TARGET被設置爲非零值,並且分配給共享內存的大小不正確,那麼在啓動時將導致ORA-00845錯誤。

解決: --EMORY_MAX_TARGET 的設置不能超過 /dev/shm 的大小。

1.通過更改配置生效: 

[oracle@mawei2 ~]$ df -h|grep shm
tmpfs                     32G   15G   17G  48% /dev/shm

切換到root

vim /etc/fstab

tmpfs                   /dev/shm                tmpfs   defaults,size=64G 0 0

 

# cat /etc/fstab | grep tmpfs

tmpfs                   /dev/shm                tmpfs   defaults,size=64G 0 0 

 

2.通過重新掛載來修改其大小:

mount -o remount,size=64G /dev/shm

 df -h | grep shm

 

SQL> startup
ORACLE instance started.

Total System Global Area 2.6991E+10 bytes
Fixed Size            2213976 bytes
Variable Size         1.3690E+10 bytes
Database Buffers     1.3153E+10 bytes
Redo Buffers          145174528 bytes
ORA-01102: cannot mount database in EXCLUSIVE mode

您在 /var/spool/mail/root 中有新郵件
[root@mawei2 ~]# su - oracle
上一次登錄:一 11月  4 20:49:04 CST 2019pts/1 上
[oracle@mawei2 ~]$ cd $ORACLE_HOME/dbs
[oracle@mawei2 dbs]$ ls
hc_DBUA0.dat  hc_test.dat  hc_uidorcl.dat  init.ora  inituidorcl.ora  lkTEST  orapwtest  spfiletest.ora

 

果然,lk<sid>文件沒有被刪除。將它刪除掉
[oracle@mawei2 dbs]$ ls lk*            
lkTEST
[oracle@mawei2 dbs]$ rm lk* 
[oracle@mawei2 dbs]$ sqlplus / as sysdba

 SQL> startup
ORA-01081: cannot start already-running ORACLE - shut it down first

SQL> shutdown immediate;
ORA-01507: database not mounted

SQL> startup
ORACLE instance started.

Total System Global Area 2.6991E+10 bytes
Fixed Size            2213976 bytes
Variable Size         1.3690E+10 bytes
Database Buffers     1.3153E+10 bytes
Redo Buffers          145174528 bytes
ORA-00205: error in identifying control file, check alert log for more info


SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
 

分析原因:

一、在HA系統中,已經有其他節點啓動了實例,將雙機共享的資源(如磁盤陣列上的裸設備)佔用了;

 

二、說明Oracle被異常關閉時,有資源沒有被釋放,一般有以下幾種可能,

1、 Oracle的共享內存段或信號量沒有被釋放;

2、 Oracle的後臺進程(如SMON、PMON、DBWn等)沒有被關閉;

3、 用於鎖內存的文件lk<sid>和sgadef<sid>.dbf文件沒有被刪除。

 

解決思路:

當發生1102錯誤時,可以按照以下流程檢查、排錯:

如果是HA系統,檢查其他節點是否已經啓動實例檢查Oracle進程是否存在,如果存在則殺掉進程檢查信號量是否存在,如果存在,則清除信號量檢查共享內存段是否存在,如果存在,則清除共享內存段檢查鎖內存文件lk<sid>和sgadef<sid>.dbf是否存在,如果存在,則刪除。

 

具體做法:

首先,雖然我們的系統是HA系統,但是備節點的實例始終處在關閉狀態,這點通過在備節點上查數據庫狀態可以證實。

其次、是因系統掉電引起數據庫宕機的,系統在接電後被重啓,因此我們排除了第二種可能種的1、2點。最可疑的就是第3點了。

查$ORACLE_HOME/dbs目錄:

[oracle@mawei2 ~]$ cd $ORACLE_HOME/dbs
[oracle@mawei2 dbs]$ ls
hc_DBUA0.dat  hc_test.dat  hc_uidorcl.dat  init.ora  inituidorcl.ora  lkTEST  orapwtest  spfiletest.ora
[oracle@mawei2 dbs]$ ls lk*            
lkTEST
[oracle@mawei2 dbs]$ rm lk* 
[oracle@mawei2 dbs]$ sqlplus / as sysdba

SQL> startup
ORA-01081: cannot start already-running ORACLE - shut it down first
SQL> shutdown immediate;
ORA-01507: database not mounted


ORACLE instance shut down.
SQL> startup
ORACLE instance started.

Total System Global Area 2.6991E+10 bytes
Fixed Size            2213976 bytes
Variable Size         1.3690E+10 bytes
Database Buffers     1.3153E+10 bytes
Redo Buffers          145174528 bytes
ORA-00205: error in identifying control file, check alert log for more info


SQL> exit
 

 

[oracle@mawei2 dbs]$ exit
 查看信號量
[root@mawei2 ~]# ipcs -s

--------- 信號量數組 -----------
鍵        semid      擁有者  權限     nsems     
0x00000000 5668864    apache     600        1         
0x00000000 5701633    apache     600        1         
0x00000000 5734402    apache     600        1         
0x00000000 5767171    apache     600        1         
0x00000000 5799940    apache     600        1         
0x00000000 819205     zabbix     600        14        
0x00000000 1376262    zabbix     600        14        
0x77318c74 6324231    oracle     660        154       
0x5e56f100 6586376    oracle     660        154       

  清除oracle的信號量

[root@mawei2 ~]# ipcrm -s 6324231

[root@mawei2 ~]# ipcrm -s 6586376


[root@mawei2 ~]# ipcs -s

--------- 信號量數組 -----------
鍵        semid      擁有者  權限     nsems     
0x00000000 5701633    apache     600        1         
0x00000000 5734402    apache     600        1         
0x00000000 5767171    apache     600        1         
0x00000000 5799940    apache     600        1         
0x00000000 819205     zabbix     600        14        
0x00000000 1376262    zabbix     600        14        

查看共享內存段

[root@mawei2 ~]# ipcs -m

------------ 共享內存段 --------------
鍵        shmid      擁有者  權限     字節     nattch     狀態      
0x01132a06 1835008    root       600        1000       6                       
0x00000000 327681     zabbix     600        16777216   34         目標       
0x00000000 360450     zabbix     600        4194304    34         目標       
0x00000000 393219     zabbix     600        4194304    34         目標       
0x00000000 425988     zabbix     600        7130317    34         目標       
0x00000000 458757     zabbix     600        1258291    34         目標       
0x00000000 491526     zabbix     600        10288      34         目標       
0x00000000 524295     zabbix     600        8388608    34         目標       
0x00000000 950280     zabbix     600        657056     6          目標       

 

[root@mawei2 ~]# su - oracle
上一次登錄:一 11月  4 21:30:32 CST 2019pts/1 上

[oracle@mawei2 ~]$ sqlplus / as sysdba


SQL> startup
ORACLE instance started.

Total System Global Area 2.6991E+10 bytes
Fixed Size            2213976 bytes
Variable Size         1.3690E+10 bytes
Database Buffers     1.3153E+10 bytes
Redo Buffers          145174528 bytes
Database mounted.
Database opened.
SQL> select * from dual;
終於啓動成功

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章