Getting Started

Get h3xed running on your Linux server with a single command. The installer handles everything — Node.js, ffmpeg, systemd service — then opens a browser-based setup wizard.

Install

Run this on your Linux server:

curl -fsSL https://h3xed.app/install.sh | sudo bash

The installer will:

When it finishes, you'll see:

  h3xed installed successfully! 🎉

  Open your browser to finish setup:

    http://YOUR_IP:32500/setup
Supported distros: Ubuntu, Debian, Fedora, RHEL, CentOS, Rocky, Alma, Arch, Manjaro. The installer auto-detects your package manager.

Setup Wizard

Open the URL shown by the installer in your browser. The setup wizard walks you through everything:

  1. Create your admin account — set a username and password
  2. Name your server — give it a friendly name
  3. TMDb API key — free at themoviedb.org, used for poster art and metadata
  4. Configure transcoding — auto-detects your GPU (NVIDIA NVENC, Intel Quick Sync, AMD VAAPI)
  5. Add your media libraries — point to your Movies / TV Shows / Anime folders
  6. Run initial scan — indexes your media and fetches metadata
  7. Link to h3xed.app — enables remote access and cloud login (recommended)

Remote Access

During setup, you can link your server to h3xed.app. This creates a relay tunnel so you and your users can access the server from anywhere — no port forwarding or nginx required.

For custom domain setups, see Server Setup.

Start Watching

Once setup is complete:

Share with Friends & Family

Invite people from the macOS app or admin panel — enter their email, select which libraries to share, and send them the invite link. They create an h3xed.app account and your server appears in their app automatically. See Users & Access.

Managing Your Server

# Check status
sudo systemctl status hexed

# View logs
sudo journalctl -u hexed -f

# Restart
sudo systemctl restart hexed

# Update to latest version
cd /opt/hexed && sudo -u hexed git pull origin main && sudo -u hexed npm install --omit=dev && sudo systemctl restart hexed

Next Steps