Versions Compared

Key

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

...

This tutorial will show examples of using the client via the shell and in a Python script.

     

Client Shell Interface

For a full list of available commands type:

 

Code Block
ecflow_client --help

 

The ecflow_client uses the following method of determining the host and port:
  • Default host and port is localhost:3141

  • These defaults are overridden by ECF_NODE and ECF_PORT environment variables

  • This can be further overridden by using –port and –host options
    and can be used for any of shell level command shown with –help option.
    For example to ping a server on the command line we can use:

     

    Code Block
    languagebash
    ecflow_client --ping --host=machineX --port=4141

...