Quick Start Guide
Get the ConHive Agent up and running in minutes using simple download scripts.
Download and Extract (Using Script)
Section titled “Download and Extract (Using Script)”This is the easiest way to get the agent binary. Open your terminal and run:
# 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:
curl -sSL https://conhive.ai/installer.sh | bash -s agent
This script handles backups, installation, service creation, and health checks.
Start the Agent
Section titled “Start the Agent”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.servicesudo systemctl start conhive-agent.servicesudo systemctl stop conhive-agent.servicesudo systemctl restart conhive-agent.service
Now you have the agent running! Proceed to Configuration or Usage sections for more details.