You are on page 1of 2

1.Create a new tablespace to act as the default tablespace for APEX.

-- For Oracle Managed Files (OMF).


CREATE TABLESPACE apex DATAFILE SIZE 100M AUTOEXTEND ON NEXT 1M;

Change directory to the directory holding the unzipped APEX software.


$ cd /d03/patch/apex

2. Connect to SQL*Plus as the SYS user and run the "apexins.sql" script, specifying
the relevant tablespace names and image URL.

SQL> CONN sys@pdb1 AS SYSDBA


SQL> -- @apexins.sql tablespace_apex tablespace_files tablespace_temp images
SQL> @apexins.sql APEX APEX TEMP /i/

3. Change the Password of Apex Administrator User


Once complete, change the admin password by running the "apxchpwd.sql" scripts as
the SYS user.

SQL> CONN sys@pdb1 AS SYSDBA


SQL> @apxchpwd.sql

4. Create the APEX_LISTENER and APEX_REST_PUBLIC_USER users by running the


"apex_rest_config.sql" script.

SQL> CONN sys@pdb1 AS SYSDBA


SQL> @apex_rest_config.sql

If you want to add these users silently, you can specify the passwords as
parameters to the script.
SQL> CONN sys@pdb1 AS SYSDBA
SQL> @apex_rest_config.sql apex[passwords] apex[passwords]

OHS
5. Oracle HTTP Server Configuration for Apex
5.1 --## Copy the /patch/apex/images to
/d03/oracle/fs1/FMW_Home/user_projects/domains/EBS_domain_TEST/images

$ cd $FMW_HOME/user_projects/domains/EBS_domain_TEST/
$ mkdir impages
$ scp -p oraprod2@172.16.1.33:/d03/patch/apex/images/* .

*/

5.2

$FMW/webtier

/
d03/oracle/fs1/FMW_Home/webtier/instances/EBS_web_TEST_OHS1/config/OHS/EBS_web_TEST
/mod_plsql/dads.conf

$cd /d03/oracle/fs1/FMW_Home/webtier/instances/EBS_web_TEST_OHS1/bin

$./opmnctl status
export ORACLE_INSTANCE=/d03/oracle/fs1/FMW_Home/webtier/instances/EBS_web_TEST_OHS1
/d03/oracle/fs1/FMW_Home/webtier/instances/EBS_web_TEST_OHS1/bin stopproc ias-
component=EBS_web_TEST_OHS1
/d03/oracle/fs1/FMW_Home/webtier/instances/EBS_web_TEST_OHS1/bin startproc ias-
component=EBS_web_TEST_OHS1

Log into apex console:


http://192.168.199.148:7777/pls/apex

You might also like