Vous devez être membre et vous identifier pour publier un article.
Les visiteurs peuvent toutefois commenter chaque article par une réponse.
OC4J définir le JRE pour un container
Article publié le 04/08/2011 16:55:38Si nous désirons configurer une instance OC4J, nous pouvons la sélectionner dans la partie "Topologie de cluster", puis sélectionner l’onglet "Administration".
Dans le treetable qui s’affiche, nous sélectionnons alors "Tâches d’administration/Propriétés de serveur", et nous pouvons ajouter ce que nous désirons dans "Paramètres de démarrage : options OC4J".
Cependant, cela ne semble pas fonctionner pour déterminer la version de Java à utiliser.
Nous pouvons cependant le faire en éditant le fichier de configuration opmn.xml (que nous retrouvons dans le répertoire conf de opmn, par exemple D:\Ora10gasR3EE\opmn\conf\opmn.xml).
Dans la partie category id="start-parameters" du conteneur qui nous intéresse, nous allons ajouter manuellement le chemin vers l’exécutable java à utiliser.
Exemple :
Code XML (1 ligne)
‹data id="java-bin" value="C:/dev/java/jdk1.6.0_21/bin/java"/›
Remarque
Nous pouvons remarquer que la valeur se termine par le nom du fichier, sans son extension.
Si nous oublions de terminer par /java, le cluster en question ne pourra pas démarrer.
Exemple plus complet, avec seulement deux clusters configures, meatPROD et meatTEST :
Code XML (119 lignes)
‹?xml version = ’1.0’ encoding = ’UTF-8’?› ‹opmn xmlns="http://www.oracle.com/ias-instance"› ‹log path="$ORACLE_HOME\opmn\logs\opmn.log" comp="internal;ons;pm" rotation-size="1500000"/› ‹debug path="$ORACLE_HOME\opmn\logs\opmn.dbg" comp="internal" rotation-size="1500000"/› ‹notification-server› ‹port local="6100" remote="6200" request="6003"/› ‹ssl enabled="true" wallet-file="$ORACLE_HOME\opmn\conf\ssl.wlt\default"/› ‹/notification-server› ‹process-manager› ‹process-modules› ‹module path="$ORACLE_HOME\opmn\lib\libopmnohs"› ‹module-id id="OHS"/› ‹/module› ‹module path="$ORACLE_HOME\opmn\lib\libopmnoc4j"› ‹module-id id="OC4J"/› ‹/module› ‹module path="$ORACLE_HOME\opmn\lib\libopmncustom"› ‹module-id id="CUSTOM"/› ‹/module› ‹module path="$ORACLE_HOME\opmn\lib\libopmniaspt"› ‹module-id id="IASPT"/› ‹/module› ‹/process-modules› ‹ias-instance id="Ora10gasR3EE.v9qar4917.eatc.mdda.nl" name="Ora10gasR3EE.v9qar4917.eatc.mdda.nl"› ‹environment› ‹variable id="TMP" value="D:\temp"/› ‹/environment› ‹module-data› ‹category id="start-parameters"› ‹data id="routing-id" value="g_rt_id"/› ‹/category› ‹/module-data› ‹ias-component id="IASPT" status="disabled"› ‹environment› ‹variable id="LD_LIBRARY_PATH" value="D:\Ora10gasR3EE/lib" append="true"/› ‹/environment› ‹process-type id="IASPT" module-id="IASPT" working-dir="D:\Ora10gasR3EE/iaspt/bin"› ‹port id="ajp" range="7501-7600"/› ‹process-set id="IASPT" numprocs="1"/› ‹/process-type› ‹/ias-component› ‹ias-component id="default_group"› ‹process-type id="home" module-id="OC4J" status="enabled"› ‹module-data› ‹category id="start-parameters"› ‹data id="java-options" value="-server -Dcom.sun.management.jmxremote -mx256M -ms64M -Xrs -XX:AppendRatio=3 -Djava.security.policy=$ORACLE_HOME/j2ee/home/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false -Doraesb.home=D:\Ora10gasR3EE\integration\esb -Dhttp.proxySet=false -Doc4j.userThreads=true -Doracle.mdb.fastUndeploy=60 -Dorabpel.home=D:\Ora10gasR3EE\bpel -Xbootclasspath^/p:D:\Ora10gasR3EE\bpel/lib/orabpel-boot.jar -Duser.timezone=UTC -Dhttp.proxySet=false"/› ‹/category› ‹category id="stop-parameters"› ‹data id="java-options" value="-Djava.security.policy=$ORACLE_HOME/j2ee/home/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false"/› ‹/category› ‹/module-data› ‹start timeout="600" retry="2"/› ‹stop timeout="120"/› ‹restart timeout="720" retry="2"/› ‹port id="default-web-site" range="8888" protocol="http"/› ‹port id="rmi" range="12401-12500"/› ‹port id="rmis" range="12701-12800"/› ‹port id="jms" range="12601-12700"/› ‹process-set id="default_group" numprocs="1"/› ‹/process-type› ‹process-type id="meatPROD" module-id="OC4J" status="enabled"› ‹module-data› ‹category id="start-parameters"› ‹data id="java-options" value="-server -Xmx1024M -Xms512M -Djava.security.policy=$ORACLE_HOME/j2ee/meatPROD/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false -Duser.timezone=UTC -XX:MaxPermSize=512M"/› ‹data id="java-bin" value="C:/dev/java/jdk1.6.0_12/bin/java"/› ‹/category› ‹category id="stop-parameters"› ‹data id="java-options" value="-Djava.security.policy=$ORACLE_HOME/j2ee/meatPROD/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false"/› ‹/category› ‹/module-data› ‹start timeout="600" retry="2"/› ‹stop timeout="120"/› ‹restart timeout="720" retry="2"/› ‹port id="default-web-site" range="8891" protocol="http"/› ‹port id="rmi" range="12401-12500"/› ‹port id="rmis" range="12701-12800"/› ‹port id="jms" range="12601-12700"/› ‹process-set id="default_group" numprocs="1"/› ‹/process-type› ‹process-type id="meatTEST" module-id="OC4J" status="enabled"› ‹module-data› ‹category id="start-parameters"› ‹data id="java-options" value="-server -Xmx1024m -Xms1024m -Djava.security.policy=$ORACLE_HOME/j2ee/meatTEST/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false -Duser.timezone=UTC -XX:MaxPermSize=512M"/› ‹data id="java-bin" value="C:/dev/java/jdk1.6.0_12/bin/java"/› ‹/category› ‹category id="stop-parameters"› ‹data id="java-options" value="-Djava.security.policy=$ORACLE_HOME/j2ee/meatTEST/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false"/› ‹/category› ‹/module-data› ‹start timeout="600" retry="2"/› ‹stop timeout="120"/› ‹restart timeout="720" retry="2"/› ‹port id="default-web-site" range="8892" protocol="http"/› ‹port id="rmi" range="12401-12500"/› ‹port id="rmis" range="12701-12800"/› ‹port id="jms" range="12601-12700"/› ‹process-set id="default_group" numprocs="1"/› ‹/process-type› ‹/ias-component› ‹ias-component id="ASG" status="disabled" id-matching="true"› ‹process-type id="ASG" module-id="CUSTOM"› ‹environment› ‹variable id="OS" value="Windows_NT"/› ‹/environment› ‹start timeout="600"/› ‹stop timeout="120"/› ‹process-set id="ASG" numprocs="1"› ‹module-data› ‹category id="start-parameters"› ‹data id="start-executable" value="D:\Ora10gasR3EE\jdk\bin\java"/› ‹data id="start-args" value="-ms20m -Djava.library.path=D:\Ora10gasR3EE\bin;D:\Ora10gasR3EE\dsa\bin;D:\Ora10gasR3EE\oui\lib\win32 -classpath D:\Ora10gasR3EE\dsa\jlib;D:\Ora10gasR3EE\dsa\jlib\duf.jar;D:\Ora10gasR3EE\lib\dms.jar;D:\Ora10gasR3EE\oui\jlib\OraInstaller.jar;D:\Ora10gasR3EE\jlib\srvm.jar;D:\Ora10gasR3EE\jlib\netcfg.jar;D:\Ora10gasR3EE\lib\xmlparserv2.jar;D:\Ora10gasR3EE\assistants\jlib\assistantsCommon.jar;D:\Ora10gasR3EE\jdbc\lib\classes12.zip;D:\Ora10gasR3EE\jdbc\lib\nls_charset12.zip;D:\Ora10gasR3EE\jlib\share.jar;D:\Ora10gasR3EE\opmn\lib\optic.jar;D:\Ora10gasR3EE\j2ee\home\jazn.jar;D:\Ora10gasR3EE\jlib\ldapjclnt10.jar oracle.duf.dufserver.DufServer D:\Ora10gasR3EE\dsa\dsa.conf"/› ‹/category› ‹/module-data› ‹/process-set› ‹/process-type› ‹/ias-component› ‹/ias-instance› ‹/process-manager› ‹/opmn›
Un article de Steph
Source : indéterminée
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 13/09/2004, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/ast-rf-469.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.