Salome HOME
Improve SALOME logger: customize log file name (add port, user and host ids) to avoid...
[modules/kernel.git] / bin / runSalome
1 #!/bin/bash
2
3 ${KERNEL_ROOT_DIR}/bin/salome/envSalome.py python ${KERNEL_ROOT_DIR}/bin/salome/runSalome.py $* 
4
5 # -----------------------------------------------------------------------------
6 # examples:
7 # ---------
8 #  $: ${KERNEL_ROOT_DIR}/bin/salome/runSalome
9 #
10 #     - parameters for launching are taken from SalomeApp.xml;
11 #     - if the config file does not exist, it is created with default values.
12 #
13 #  
14 #  $: ${KERNEL_ROOT_DIR}/bin/salome/runSalome --modules=GEOM,SMESH,VISU,SUPERV,MED --embedded=registry,study,moduleCatalog,cppContainer --standalone=pyContainer,supervContainer --xterm --killall
15 #
16 #     parameters from command line supersede those from SalomeApp.xml
17 #
18 # Some CORBA servers can be launched in the SALOME_Session_Server's process
19 # (embedded = same process) or in a separate process (standalone):
20 # --> registry,study,moduleCatalog,cppContainer
21 # Other CORBA servers could only be launched in separate process (standalone):
22 # --> pyContainer,supervContainer
23 #
24 # $: ${KERNEL_ROOT_DIR}/bin/salome/runSalome -h
25 #    help
26 # -----------------------------------------------------------------------------
27 #
28 # l'option -i permet de garder l'interpreteur python ouvert :
29 # par defaut, les differents serveurs ouvrent des fenĂȘtres xterm
30 # (cf. runSalome.py)
31 # le serveur Logger n'est pas obligatoire (commentĂ© dans runSalome.py)
32
33 # -----------------------------------------------------------------------------