...
Make sure the environment variables for Oracle are set. For further information, see Setting Environment Variables for Platform.
Make sure the Oracle data directories exist. These directories must be owned by the Oracle user. For further information see Properties for Oracle.
Configure and start an Oracle listener for the database instance. The working directory for the listener is
$ORACLE_HOME/network/admin
.
Edit thelistener.ora
file to match what is set in install.xml.
See Appendix A - Oracle Home Settings for an example.When the listener has been is configured, it needs to be restarted:
$ lsnrctl stop
$ lsnrctl start
Create the Oracle database instance. The working directory is
oracle
.$ source ./oracle_create_instance.sh
Depending on the hardware and the size of the database, this command may take up to one hour to execute. If no error occurredoccurs, the database creation will is now be completed complete and the rest of this section can be ignored. titleTip Hint!
WhenAfter the instance creation script
has beenis executed, there
arewill be three log files in the
trouble shooting/tmp
directory that can be used fortroubleshooting. The
mz.log file
contains Oracle responses from the database creation, themzuser.log
file contains Oracle responses from the user creation, and themz_db.log
file contains Oracle responses from the table creations.If the script fails, cleanup the system before the next try:
Start SQL*Plus:
$ sqlplus "/ as sysdba"
Terminate the bad instance:
SQL> shutdown abort
SQL> quit
Remove any files created by Oracle in any of the previously defined directories for Oracle data.
...