How To Manually Install Cloudmon Linux Agent on Ubuntu 24

How To Manually Install Cloudmon Linux Agent on Ubuntu 24

Linux Monitoring

How To Manually Install Cloudmon Linux Agent on Ubuntu 24

Install the Cloudmon agent manually on Ubuntu 24

Overview

 This guide walks through downloading the agent binary, granting permissions, retrieving your API key, running the agent, and verifying it is active.

ℹ️

Note: Ensure commands are executed with elevated (root) permissions. Verify network reachability between the Agent and Controller before starting the installation.


Step 1 — Download the Latest Agent Package

Open the following URL in your browser:

https://repo.veryxtech.com/cloudmon/versions.json

Copy the Agent URL for agent.linux.x86_64 (starting with https) from the JSON file.

On the Ubuntu 24 machine, run:

curl -O <agent-url>

Example:

curl -O https://repo.veryxtech.com/cloudmon/releases/Linux/cloudmon-agent-5.0.0-12-Linux-x86_64.run

Step 2 — Grant Execute Permissions

chmod +x cloudmon-agent-<version>

Example:

chmod +x cloudmon-agent-5.0.0-12-Linux-x86_64.run

Step 3 — Get the API Key

To obtain the required API Key for registering the Agent:

  1. Log in to the Cloudmon Controller.
  2. Click on your User Profile (top-right corner).
  3. Select Help.
  4. You will be redirected to the Agent article page by default.
  5. Scroll down to the Linux Installation section.
  6. Copy the API Key displayed on the screen.

Step 4 — Run the Agent

./cloudmon-agent-<version> --server <controller-ip> --key <api-key>

Example:

./cloudmon-agent-5.0.0-12-Linux-x86_64.run --server 192.168.1.100 --key your-api-key-here

Replace:

  • <controller-ip> — your Cloudmon Controller IP address
  • <api-key> — the generated API key

Step 5 — Verification

After completing the installation, verify that the Agent service is running and that communication with the Controller is successful.

1. Check Agent Service Status

service cloudmon-agent status

Ensure the service is active (running).

2. Verify Network Connectivity to Controller

ping <controller-ip>

You should receive successful replies.

3. Verify HTTPS Connectivity to Controller

curl -v https://<controller-ip>

This verifies that the Agent can communicate with the Controller over HTTPS.


⚠️

Important Notes

• Do not include angle brackets (< >) when entering actual values in commands.
• Ensure commands are executed with elevated (root) permissions.
• Verify network reachability between the Agent and Controller before starting the installation.
• Ubuntu 24 installations require this manual method due to official support currently being limited to Ubuntu 22.

    • Related Articles

    • How to install an agent in cloudmon?

      Installation of Cloudmon Agents are performed from the Cloudmon controller: Click on the user icon in the top-right corner of the Cloudmon Controller window Select the "Help" menu. You will be redirected to the Agent article page by default. As you ...
    • In cloudmon, should I install agents on all servers?

      There are different types of monitoring. If you want to monitor the latency, jitter and link connectivity, you do not require agents on the servers. But if you want to monitor, CPU, memory, network, system resources like disk, file system ...
    • How To Manually Install Cloudmon On Ubuntu 24.

      Overview Cloudmon officially supports Ubuntu 22. When deploying on Ubuntu 24, manual installation of the Collector and Probe packages is required. Step 1: Download the Latest Collector and Probe Packages Open the following URL in your browser: ...
    • Cloudmon System Requirements

      The following information outlines the system requirements for the self-hosted option, enabling IT teams to install Cloudmon in their environment. These system requirements have been determined keeping various deployment scenarios in mind to help ...
    • What steps can be taken to debug if the agent installed on a machine is not discovered in the Cloudmon portal?

      1. First, check the agent log for a reason. On Windows, the log path for the agent is: C:\Program Files (x86)\Cloudmon\logs. On Linux, the log path for the agent is: /var/log/cloudmon/agent/agent.log. 2. Verify if the CC_URL is in the following ...