2026-05-17 09:22:25 +02:00
|
|
|
# Triton Manage Server Installer
|
2026-05-17 08:57:58 +02:00
|
|
|
|
2026-05-17 09:22:25 +02:00
|
|
|
Production installer for the Triton Manage Server. Container-based (Docker or Podman), idempotent — safe to re-run.
|
2026-05-17 08:57:58 +02:00
|
|
|
|
2026-05-17 09:22:25 +02:00
|
|
|
## Install
|
2026-05-17 08:57:58 +02:00
|
|
|
|
|
|
|
|
```bash
|
2026-05-17 10:12:41 +02:00
|
|
|
curl -fsSL https://raw.githubusercontent.com/primatekuntech/triton-install/main/manage-server/install.sh | sudo bash
|
2026-05-17 08:57:58 +02:00
|
|
|
```
|
|
|
|
|
|
2026-05-17 10:12:41 +02:00
|
|
|
That's it. The setup wizard walks you through the rest.
|
|
|
|
|
|
|
|
|
|
## Setup wizard
|
|
|
|
|
|
|
|
|
|
After install, open `http://localhost:8082` and complete the wizard:
|
|
|
|
|
|
|
|
|
|
1. Set your manage server name
|
|
|
|
|
2. Enter your Triton licence server URL and licence ID — or upload an air-gap licence file
|
|
|
|
|
3. Create the admin account
|
|
|
|
|
|
|
|
|
|
## Optional flags
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
sudo bash install.sh [flags]
|
|
|
|
|
```
|
2026-05-17 09:22:25 +02:00
|
|
|
|
2026-05-17 08:57:58 +02:00
|
|
|
| Flag | Description |
|
|
|
|
|
|------|-------------|
|
2026-05-17 10:12:41 +02:00
|
|
|
| `--gateway-hostname HOST` | Agent mTLS hostname (defaults to current FQDN). |
|
|
|
|
|
| `--manage-host-ip IP` | Host LAN IP for "+ This machine" auto-registration. |
|
|
|
|
|
| `--image TAG` | Pin a specific image tag (e.g. `1.0.0-rc.2`). |
|
|
|
|
|
| `--no-tls` | Skip TLS sanity check (dev only). |
|
2026-05-17 08:57:58 +02:00
|
|
|
|
|
|
|
|
## Other commands
|
|
|
|
|
|
|
|
|
|
```bash
|
2026-05-17 10:12:41 +02:00
|
|
|
# Upgrade to latest image
|
2026-05-17 08:57:58 +02:00
|
|
|
sudo bash manage-server/upgrade.sh
|
|
|
|
|
|
|
|
|
|
# Uninstall
|
|
|
|
|
sudo bash manage-server/uninstall.sh
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Requirements
|
|
|
|
|
|
|
|
|
|
- Linux (amd64 or arm64)
|
2026-05-17 10:12:41 +02:00
|
|
|
- Docker or Podman with Compose
|
2026-05-17 08:57:58 +02:00
|
|
|
- Port 443 open (HTTPS)
|