/
Managing Devo Relay using the command line

Managing Devo Relay using the command line

Introduction

Ubuntu / Red Hat / CentOS

The relay is a Java process that runs as a service in the machine and is managed by the system manager systemd.

docker-compose

The provided docker-compose file contains two services (devo-ng-relay and devo-ng-relay-cli). Note that the CLI service does not need to be running all the time - it will just run while the CLI is in use. Find below the commands that can be used to perform the most common operations. You must be in the same folder where the .yml file is located to run these commands.

Start the relay

To start your relay, use the required command according to your OS:

Ubuntu / Red Hat / CentOS

sudo systemctl start devo-ng-relay

docker-compose

docker-compose run --rm devo-ng-relay-cli

Stop the relay

You can stop your relay process using these commands:

Ubuntu / Red Hat / CentOS

sudo systemctl stop devo-ng-relay

docker-compose

docker-compose stop

Restart the relay

Restart a relay process using these commands:

Ubuntu / Red Hat / CentOS

sudo systemctl restart devo-ng-relay

docker-compose

docker-compose restart devo-ng-relay

Check the status of the relay service

You can check the status of the relay Java service using this command:

Ubuntu / Red Hat / CentOS

sudo systemctl status devo-ng-relay

Note that this command checks the status of the service that runs the relay, not the relay itself. To check the status of your current relay, you must use the relay CLI. Learn more in Working with the Devo Relay CLI.

Check the relay logs

As the relay runs as a systemd service, the logs can be consulted using the following commands:

Ubuntu / Red Hat / CentOS

sudo journalctl -u devo-ng-relay [-f]

You can use the -f flag to actively follow the logs as they are being written

docker-compose

docker-compose logs [-f] devo-ng-relay

You can use the -f flag to actively follow the logs as they are being written

Upgrade the relay

Use the following commands to update your relay and CLI to the last version available:

Important

When you perform a relay upgrade to v2.1.0, note that you must manually update the relay memory configuration. This won't be necessary when you upgrade your relay to a more up-to-date version.

Learn how to do it in Tuning the relay.

Ubuntu

sudo apt install devo-ng-relay
sudo apt install devo-ng-relay-cli

Red Hat / CentOS

sudo yum upgrade devo-ng-relay
sudo yum upgrade devo-ng-relay-cli

docker-compose

  1. Open the docker-compose.yml file and update the image version to be used for each service (relay and CLI), or just one if you want to upgrade one of the services only.

    1. devo-ng-relay service:

      ... devo-ng-relay: image: devoinc/devo-ng-relay:2.1.0 ...
    2. devo-ng-relay-cli service:

      ... devo-ng-relay-cli: image: devoinc/devo-ng-relay-cli:1.1.0 ...
  2. Then, run the required command to perform the upgrade:

    1. If you want to upgrade the devo-ng-relay service, run the following command.

      docker-compose up -d devo-ng-relay

      The old devo-ng-relay container will be stopped and a new one will be created based on the new image selected.

    2. If you want to update the devo-ng-relay-cli service, use the command below. The CLI will download the new image and use it the next time it is executed.

      docker-compose run --rm devo-ng-relay-cli

Post-upgrade procedure

This procedure is only required when there is already an older docker version of Devo Relay running in the system that needs to be upgraded. Clean installations do not require this procedure.

The following procedure is intended to apply the effective configuration in Devo Relay when using the docker version. Due to a limitation in the product, the configuration is not propagated properly to the docker volume and it needs to be recreated.

Uninstall the relay

Use the following commands to uninstall the relay from your machine:

Ubuntu

sudo apt purge devo-ng-relay

Red Hat / CentOS

sudo yum remove devo-ng-relay

docker-compose

docker-compose down

 

Related content