Versions Compared

Key

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

You can check if an ecFlow server is running on a system using the ping command, e.g.

Code Block
#Check# Check if server is running on 'localhost' on port 3141*
ecflow_client --ping

#Check# Check if server running on machine 'fred'*
ecflow_client –-ping -–host=fred

#Check# Check if server running on 'fred' with port 3222*
ecflow_client –-ping –-host=fred –-port=3222

#Check# Check if server running using ECF_PORT and ECF_NODE*HOST
export ECF_PORT=3144
export ECF_HOST=fred
ecflow_client --ping 

...