Skip to content

Quick Start Guide

Get the ConHive Agent up and running in minutes using simple download scripts.

This is the easiest way to get the agent binary. Open your terminal and run:

Terminal window
# Using curl:
curl -sSL https://conhive.ai/download | bash
# or specifically for the agent module:
curl -sSL https://conhive.ai/download | bash -s agent

This command downloads the latest agent version into ./conhive, extracts it, and tells you how to start it.

Install as a Service (Linux Installer Script)

Section titled “Install as a Service (Linux Installer Script)”

To install the agent and set it up as a systemd service on Linux:

Terminal window
curl -sSL https://conhive.ai/installer.sh | bash -s agent

This script handles backups, installation, service creation, and health checks.

Once you have the binary (either via script or manual download):

  • Linux:
    Terminal window
    # If downloaded via script:
    ./conhive/conhive-agent run
    # If installed manually in current dir:
    ./conhive-agent run
  • Windows (PowerShell):
    Terminal window
    .\conhive-agent.exe run
  • As a Service (Linux - if used installer.sh): The installer script usually starts the service automatically. You can manage it with:
    Terminal window
    sudo systemctl status conhive-agent.service
    sudo systemctl start conhive-agent.service
    sudo systemctl stop conhive-agent.service
    sudo systemctl restart conhive-agent.service

Now you have the agent running! Proceed to Configuration or Usage sections for more details.