- Download REST services https://www.oracle.com/database/sqldeveloper/technologies/db-actions/download/ or go to C:\Oracle\product\19.0.0.0\dbhome_1\ords
- Change ords.war => apex.war
- Download APEX from https://www.oracle.com/tools/downloads/apex-downloads/
- Extract files f.e. in C:\temp\ folder (keep the folder tree)
- Run command line and navigate to folder where apex directory was extracted (C:\Temp\apex_23.1_en\apex>)s
- Run SQLPlus on server with Oracle database, connect with` SYS as SYSDBA (previously check if Environment variable for ORACLE_SID is configured)
- Check database status with query SELECT INSTANCE_NAME, STATUS, DATABASE_STATUS FROM V$INSTANCE; (should be 'ACTIVE')
- Check parameter SHOW PARAMETER MEMORY_TARGET (should be at least '300M')
- Check parameter SHOW PARAMETER WORKAREA_SIZE_POLICY (should be set to 'AUTO')
- Create new tablespace for APEX CREATE TABLESPACE apex DATAFILE SIZE 100M AUTOEXTEND ON NEXT 1M;
- Run installation script @apxrtins.sql tablespace_apex tablespace_files tablespace_temp images @apexins.sql APEX APEX TEMP /i/
- Unlock apex_public user ALTER USER APEX_PUBLIC_USER ACCOUNT UNLOCK
- Change the password for public user ALTER USER APEX_PUBLIC_USER IDENTIFIED BY "new_password";
- Change password for admin user by running @apxchpwd.sql
- Change password policy for APEX_PUBLIC_USER profile alter profile DEFAULT limit password_life_time UNLIMITED;
- Check the port with query SELECT DBMS_XDB.gethttpport FROM DUAL; If it is set to 0 change it with EXEC DBMS_XDB.sethttpport(8080);
Friday, August 4, 2023
Oracle APEX (apex_23.1) - installation procedure with Oracle 19.16.0.0.0
Subscribe to:
Post Comments (Atom)
Problem with database open ORA-19804, ORA-19809, ORA-03113
1. Try to login to database with SYS AS SYSDBA user. If the instance is idle, run the startup command. 2. If ORA-03113 occured, check the la...
-
To assign access rights manually (to both users and groups) use secpol.msc → Local Policies → User Rights Assignment → Log on as batch job....
-
1. Data declarations * Document number DATA : L_DOCNUM LIKE EDIDC - DOCNUM . * Idoc data, status tables DATA : itab_edidd LIKE TABLE ...
-
Download REST services https://www.oracle.com/database/sqldeveloper/technologies/db-actions/download/ or go to C:\Oracle\product\19.0.0.0\db...
No comments:
Post a Comment