Install FileAgent on Linux
The recommended way to run FileAgent on a server. The Debian package installs the web console and scheduler as background services and starts them automatically.
Last updated July 17, 2026
#Before you begin
- Use a 64-bit Debian/Ubuntu-based Linux server that stays on and can reach your endpoints.
- You need root/sudo rights — installation sets up background services and a dedicated service account.
- Have your license key ready if you purchased a plan (Free needs none).
#Install
- Download the Debian package using either option:
- In a browser: open fileagent.app/download and choose Linux.
- From the command line: install
curlandjq, then resolve the current package from FileAgent's release manifest and download it:sudo apt update sudo apt install curl jq DEB_URL="$( curl -fsSL https://fileagent.app/downloads/latest.json | jq -er '.downloads.linux_deb.url' )" curl -fL "$DEB_URL" -o fileagent_amd64.debThis command always uses the release marked as current, so you do not need to put a version number in the URL.
- Install it with
aptso dependencies resolve automatically:sudo apt install ./fileagent_amd64.deb - To choose a custom console port during install, set it on the same command:
sudo FILEAGENT_WEB_PORT=8443 apt install ./fileagent_amd64.deb
The package installs the web console and scheduler as background services and starts them automatically.
Prefer
apt install ./… over a bare package install — apt resolves dependencies for you.#Open the console
From a browser that can reach the server, open it over HTTPS:
https://<server-ip-or-hostname>:<port>
You can change the console port later:
sudo fileagent configure-port 8443
sudo fileagent status
New installs use a self-signed certificate until you install your own, so the browser shows a certificate warning at first. Install a trusted certificate to remove it (see Certificates).
#Verify it's running
sudo fileagent statusreports the services as running.- The console loads over HTTPS and shows the first-run setup screen.
- After a reboot, the services start again automatically.