meta données pour cette page
Différences
Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
| oracle:apex:installation [22/09/2024 08:17] – mdl | oracle:apex:installation [03/11/2024 16:30] (Version actuelle) – mdl | ||
|---|---|---|---|
| Ligne 23: | Ligne 23: | ||
| * as root | * as root | ||
| + | * SYS password => OracleCDB2024 | ||
| <code bash> | <code bash> | ||
| / | / | ||
| - | SYS password => OraclePDB2024 | ||
| </ | </ | ||
| * Port écoute Enterprise Manager XE | * Port écoute Enterprise Manager XE | ||
| <code bash> | <code bash> | ||
| + | sqlplus / as sysdba | ||
| EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE); | EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE); | ||
| exec DBMS_XDB_CONFIG.SETHTTPSPORT(8000); | exec DBMS_XDB_CONFIG.SETHTTPSPORT(8000); | ||
| Ligne 37: | Ligne 38: | ||
| cd / | cd / | ||
| vi .bash_profile | vi .bash_profile | ||
| - | </ | + | |
| - | The file should look like this: | + | |
| - | <code bash> | + | |
| # .bash_profile | # .bash_profile | ||
| # Get the aliases and functions | # Get the aliases and functions | ||
| Ligne 79: | Ligne 78: | ||
| </ | </ | ||
| - | * | + | * |
| + | * ADMIN password => Apex_Pwd2024 | ||
| <code PLSQL> | <code PLSQL> | ||
| SQL> @apxchpwd.sql | SQL> @apxchpwd.sql | ||
| Ligne 95: | Ligne 95: | ||
| </ | </ | ||
| - | ADMIN password => Apex_Pwd2024 | ||
| - | <code bash> | + | * Post install Config |
| + | * APEX_LISTENER | ||
| + | * APEX_REST_PUBLIC_USER | ||
| + | * <code bash> | ||
| SQL> | SQL> | ||
| Enter a password for the APEX_LISTENER user [] | Enter a password for the APEX_LISTENER user [] | ||
| Ligne 106: | Ligne 108: | ||
| ...grants for APEX_LISTENER and ORDS_METADATA user | ...grants for APEX_LISTENER and ORDS_METADATA user | ||
| </ | </ | ||
| - | |||
| - | |||
| - | APEX_LISTENER | ||
| - | APEX_REST_PUBLIC_USER | ||
| - | |||
| - | |||
| * Installation ORDS 24.2.3 | * Installation ORDS 24.2.3 | ||
| Ligne 179: | Ligne 175: | ||
| * ORDS Autostart Script | * ORDS Autostart Script | ||
| + | <code bash> | ||
| + | cd / | ||
| + | touch ords | ||
| + | chmod +x / | ||
| + | vi ords | ||
| + | # | ||
| + | # # File: / | ||
| + | # # chkconfig: 2345 99 10 | ||
| + | # description: | ||
| + | # | ||
| + | start(){ su - oracle -c "cd /u01 / | ||
| + | |||
| + | </ | ||
| + | |||
| + | * Autostart | ||
| + | <code bash> | ||
| + | systemctl enable ords | ||
| + | chkconfig --add ords | ||
| + | chkconfig ords on | ||
| + | </ | ||