Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • ecFlow consists of two tar files i.e.:  

    • boost_1_71_0.tar.gz (or any recent boost)

    • ecFlow-5.5.13-Source.tar.gz

      Create a directory for the build:

      Code Block
      languagebash
      mkdir /tmp/ecflow_build


  • Copy the two tar file into this directory, then change directory to /tmp/ecflow_build

  • Un-zip then un-tar the two file files:

    Code Block
    languagebash
    tar -zxf boost_1_71_0.tar.gz
    tar -zxf ecFlow-5.5.13-Source.tar.gz


  • You should have two directories created:

    Code Block
    boost_1_71_0
    ecFlow-5.5.13-Source
    


  • Create two environment variables. These are used by some of the scripts:

    Code Block
    export WK=/tmp/ecflow_build/ecFlow-5.5.13-Source
    export BOOST_ROOT=/tmp/ecflow_build/boost_1_71_0


  • If you have a module system, please ensure that before you start, GCC,cmake,python3, etc are available in $PATH.

    Code Block
    languagebash
    module load gnu
    module load cmake
    module load python3
    module load qt
    


...

Code Block
languagebash
export PYTHONPATH=$PYTHONPATH:<prefix>/5.5.13/lib/python3.6/site-packages/ecflow
# If you used the default's then <prefix>=/usr/local
# otherwise you should use whatever you entered for -DCMAKE_INSTALL_PREFIX, hence in the examples above we would have:
export PYTHONPATH=$PYTHONPATH:/usr/local/apps/ecflow/5.5.13/lib/python3.6/site-packages/ecflow 

...

Code Block
cd $WK/build  # change to the build directory
cmake -DCMAKE_INSTALL_PREFIX=/tmp/avi/custom/ecflow/5.5.13 -DCOMPONENT=python -P cmake_install.cmake -- make install  # install python module under /tmp/avi/custom/ecflow/5.5.13


ecflow_ui: Make a list servers accessible to all users

...

  • creating a file called servers
  • The format of the server's file is very easy:

    Code Block
    titleserver file format
    <server_name> <machine_name> <port>

    An example might be:

    Code Block
    titleservers file
    server      machineX   3141
    projectX    machineabc 4141
    exp1        machineabc 4141
    mars        bigmac     11031


  • Copy this file to CMAKE_INSTALL_PREFIX/share/ecflow/.   This makes the list of servers accessible to all users of ecflow_ui

    Code Block
    cp servers /tmp/avi/custom/ecflow/5.5.13/share/ecflow/.