ecflow_server command not found

In this troubleshooting guide we learn how to fix ecflow_server command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

ecflow_server: command not found

or when using sudo you get the following error message

sudo: ecflow_server: command not found

Solutions to ecflow_server: command not found

How To Fix ecflow_server: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ecflow_server is provided by ecflow-server package.

ecflow-server is:

ecFlow is a work flow package that enables users to run a large number of programs ( with dependencies on each other and on time) in a controlled environment. It provides reasonable tolerance for hardware and software failures, combined with good restart capabilities.

ecFlow submits tasks(jobs) and receives acknowledgements from tasks when they change status and when they send events, using child commands embedded in the scripts. ecflow stores the relationship between tasks, and is able to submit tasks dependent on triggers.

To fix this problem, we can install more using the command below.

sudo apt-get -y install ecflow-server

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install ecflow-server.

sudo apt -y install ecflow-server

Or if you have aptitude installed you can use the following command.

sudo aptitude install ecflow-server

Summary

In this tutorial we learn how to fix ecflow_server command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.