Changes between Version 11 and Version 12 of ExecutionManager


Ignore:
Timestamp:
Nov 5, 2010, 3:37:25 PM (13 years ago)
Author:
jochen.bauknecht
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ExecutionManager

    v11 v12  
    3232* https://svn-batch.grid.pub.ro/svn/Sensei-Cookbook/advancedDataTypes.tgz
    3333
     34To ensure the links berween the packages, all the software packsges have to be unpacked into the same directory
     35
    3436
    3537=== MYSQL Setup ===
    36 First create a new database with the name `sensei_em`.
     38After installing mysql a a new database with the name `sensei_em` has to be created. This could be done with an mysql frontend or by executing the following command on the commmand line:
    3739{{{
    38 MYSQL Command:
    3940mysql --user YOURMYSQLUSERNAME -p -e"create database sensei_em;"
    4041}}}
    4142
    42 Then add mysql structure as defined in file doc/database.sql.
     43Then add mysql structure as defined in file executionManager/doc/database.sql.
    4344This can be done with the command
    4445{{{
    45 mysql --user YOURMYSQLUSERNAME -p sensei_em < database.sql
     46mysql --user YOURMYSQLUSERNAME -p sensei_em < executionManager/doc/database.sql
    4647}}}
    4748
    4849=== Execution Manager Configuration ===
    49 open the File xml/EmConfigs.xml and change the lines
     50open the File executionManager/xml/EmConfigs.xml and change the lines
    5051{{{
    5152        <mysqluser>root</mysqluser>
     
    6465
    6566=== Startscripts ===
    66 For your conveniance, start scripts for the Execution Maganer had beed created. For staring the Execition Manager, change to the Directory scripts and execute the command following command
     67For your conveniance, start scripts for the Execution Manager had beed created. For staring the Execution Manager, change to the directory executionManager/scripts and execute the command following command
    6768on Linux:
    6869{{{
     
    7677=== Interfaces ===
    7778The Execution Manager provides the REI interface on the given IP Adress and Port as defined in the Configuration File.
    78 Therefore, the  REI interface of the Execution Manager can be accesed on the URL
     79Therefore, the  REI interface of the Execution Manager can be accesed on the URL:
    7980{{{
    8081http://IP_OF_EM:PORT_OF_EM/subscribe
     
    8283
    8384=== Example of REI Request ===
    84 An example of a subscription request with one REP on the REI interface can be seen here. Thix XML Structure is tranmitted via http POST or GET to the REI interface of the execution manager.  It can be seen that the TaskPlan is embedded in a REI and a RequestSubscription structure.
     85An example of a subscription request with one REP on the REI interface can be seen here. Thix XML Structure is tranmitted via http POST or GET to the REI interface of the execution manager.  It can be seen that the Taskplan is embedded in a REI and a Requestsubscription structure.
    8586
    8687{{{
     
    132133}}}
    133134
     135