Create the devo.repo file in /etc/yum.repos.d/ with the following contents: Code Block |
---|
[devo]
baseurl = http://packages.devo.com/rpms
gpgcheck = 1
gpgkey = http://packages.devo.com/PublicKey
name = Devo Inc. packages |
Update the resources list. Code Block |
---|
sudo yum-config-manager --enable devo |
CentOS 7 default repositories do not contain the required Java version for the relay (Java 17). If you're using CentOS 7, install the required Java version using this command: Code Block | yum install -y epel-releaseCreate a new adoptium.repo file in /etc/yum.repos.d/ with the following content: Code Block |
---|
[Adoptium]
name=Adoptium
baseurl=https://packages.adoptium.net/artifactory/rpm/centos/7/x86_64
enabled=1
gpgcheck=1
gpgkey=https://packages.adoptium.net/artifactory/api/gpg/key/public |
Install the relay package and the relay command-line interface (CLI) using this command: Code Block |
---|
sudo yum install devo-ng-relay |
Optionally, you can install the devo-monitor package that installs scripts that monitor machine status (CPU, memory, IO traffic) so their values can be sent to the Devo endpoint. The events collected by this package will be available in the box.stat.unix.* tables of your Devo domain. You can install this package using the following command: Code Block |
---|
sudo yum install devo-monitor |
Note |
---|
It is highly recommended to install the devo-monitor package on your machine since it will help in case you need troubleshooting your relay. |
Now you must configure your relay and then activate it on the Devo platform. See the Devo Relay setup process in Set up your relay. Info |
---|
You can relaunch the set up process at any time after the installation if needed. |
|