meta données pour cette page
  •  

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
oracle:apex:installation [22/09/2024 08:15] mdloracle:apex:installation [03/11/2024 16:30] (Version actuelle) mdl
Ligne 1: Ligne 1:
 https://oracle-max.com/en/how-to-install-oracle-apex-24-1/ https://oracle-max.com/en/how-to-install-oracle-apex-24-1/
  
-Architecture +== Architecture ==
-{{:oracle:apex:apex-architecture.png?800|}}+
  
 +{{:oracle:apex:apex-architecture.png?600|}}
 +
 + \\
 +== Installation ==
  
   *  as root   *  as root
Ligne 20: Ligne 23:
  
   *  as root   *  as root
-</code bash>+    * SYS password => OracleCDB2024 
 +<code bash>
 /etc/init.d/oracle-xe-21c configure /etc/init.d/oracle-xe-21c configure
-SYS password => OraclePDB2024 
 </code> </code>
   *  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 34: Ligne 38:
 cd /home/oracle  cd /home/oracle 
 vi .bash_profile  vi .bash_profile 
-</code> + 
-The file should look like this:  +
-<code bash>+
 # .bash_profile  # .bash_profile 
 # Get the aliases and functions  # Get the aliases and functions 
Ligne 76: Ligne 78:
 </code> </code>
  
-  *  creation admin user+  *  création admin user 
 +    * ADMIN password => Apex_Pwd2024
 <code PLSQL> <code PLSQL>
 SQL> @apxchpwd.sql SQL> @apxchpwd.sql
Ligne 92: Ligne 95:
 </code> </code>
  
-ADMIN password => Apex_Pwd2024 
  
-<code bash>+  * Post install Config  
 +    * APEX_LISTENER  password => Apex_Lsnr2024 
 +    * APEX_REST_PUBLIC_USER  password => Apex_RestPublic2024 
 +  * <code bash>
 SQL>@apex_rest_config.sql SQL>@apex_rest_config.sql
  Enter a password for the APEX_LISTENER user              []  Enter a password for the APEX_LISTENER user              []
Ligne 103: Ligne 108:
  ...grants for APEX_LISTENER and ORDS_METADATA user  ...grants for APEX_LISTENER and ORDS_METADATA user
 </code> </code>
- 
- 
-APEX_LISTENER  password => Apex_Lsnr2024 
-APEX_REST_PUBLIC_USER  password => Apex_RestPublic2024 
- 
- 
  
   *  Installation ORDS 24.2.3    *  Installation ORDS 24.2.3 
Ligne 176: Ligne 175:
  
   *  ORDS Autostart Script   *  ORDS Autostart Script
 +<code bash>
 +cd /etc/init.d/ 
 +touch ords 
 +chmod +x /etc/init.d/ords 
 +vi ords
  
 +#!/bin/sh 
 +# # File: /etc/init.d/ords 
 +# # chkconfig: 2345 99 10 
 +# description: Starting ORDS services for Oracle APEX 
 +
 +start(){ su - oracle -c "cd /u01 /installers/ORDS/bin && nohup ./ords --config /u01/installers/ordsConfig serve > /u01/installers/ords Config/startORDS.log 2>&1 &" } start
 +
 +</code>
 +
 +  * Autostart 
 +<code bash>
 +systemctl enable ords 
 +chkconfig --add ords 
 +chkconfig ords on
 +</code>