Skip to content

Quick Start

Get the Segla agent running on a Linux server in under a minute.

Prerequisites

  • Linux server (amd64 or arm64)
  • Root access
  • Outbound HTTPS/gRPC connectivity to gw.segla.io:443

Install

curl -fsSL https://get.segla.io/agent | sudo bash

This will:

  1. Download the latest binary to /usr/local/bin/segla
  2. Create a default config at /etc/segla/config.yaml
  3. Install and start a systemd service

Verify

# Check service status
systemctl status segla

# View logs
journalctl -u segla -f

# Check agent status
segla status

What happens next

Once the agent is running, it will:

  1. Register with the Segla platform and receive an agent ID
  2. Poll for desired state every 30 seconds
  3. Apply any resources assigned to this machine (private networks, etc.)

You can now manage this server from the Segla Dashboard.

Install a specific version

curl -fsSL https://get.segla.io/agent | sudo bash -s -- --version v0.1.0

Next steps