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 [03/11/2024 16:24] mdloracle:apex:installation [03/11/2024 16:30] (Version actuelle) mdl
Ligne 176: Ligne 176:
   *  ORDS Autostart Script   *  ORDS Autostart Script
 <code bash> <code bash>
-cd /etc/init.d/ touch ords chmod +x /etc/init.d/ords vi ords+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+#!/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> </code>