...
- 8GB of RAM
- 1 or 2 CPU
- At least 20GB of available space, may need additional space based on purge criteria and usage.
Automated Installer Instructions
If you are using the automated installer, install the Oracle Database binaries. If you use the automated installer, the FD, FF, and FD_ADMIN schemas will be created in the USERS tablespace.
That's it; go back to the automated installer documentation because the schema creation is automated.
Manual Schema Installation Instructions
...
- CreateFlexDeploySchemas.sql <password>
- password – the password to use for FD, FF, and FD_ADMIN users, which are created by this script.
- Example: @CreateFlexDeploySchemas.sql welcome1
- Results are automatically spooled to a file called CreateFlexDeploySchemas.out
SqlPlus
Info | ||
---|---|---|
| ||
Oracle sqlus is part of the Oracle Client, and may be executed on any host which has it installed. If the Oracle Client is not installed on the same host as where you are installing FlexDeploy, you can copy the /database directory from your distribution to any host which does. To launch sqlplus: |
Code Block | ||||
---|---|---|---|---|
| ||||
export ORACLE_HOME=<your Oracle Home directory>
export ORACLE_SID=<the SID of your database>
$ORACLE_HOME/bin/sqlplus (login as sys or system when prompted)
SQL> <<execute scripts as shown above>> |
See Windows example below. As you run scripts specified above, you will see output on screen and it will be spooled in file as well in same folder.
...