-
Notifications
You must be signed in to change notification settings - Fork 0
Server sources
DasDuo edited this page Jun 18, 2026
·
6 revisions
ShuttleX reads hosts from one of two sources, switchable in Settings → Server source.
Hosts are read directly from your SSH config, including Include directives. Wildcard hosts (e.g. Host *) are ignored. This source is read-only — ShuttleX never writes to your SSH config.
A dedicated file, by default at ~/.config/shuttlex/servers.json (created with sample entries the first time you switch to it). The path is configurable in Settings (Choose… / Reset to default), so you can point ShuttleX at a file you keep elsewhere (e.g. in a synced folder).
You can edit this file three ways:
- the in-app editor (see Managing servers),
- a table import,
- or by hand (Settings → "Edit file").
The last 3 versions are kept automatically — see Backups.
{
"groups": [
{
"name": "Production",
"hosts": [
{ "name": "Web server", "user": "root", "host": "web1.example.com" },
{ "name": "Database", "user": "admin", "host": "db.example.com", "port": 2222 },
{ "name": "Database · htop", "user": "admin", "host": "db.example.com", "remoteCommand": "htop" },
{ "name": "Via jump host", "command": "ssh -J jump.example.com root@10.0.0.5" }
]
}
],
"hosts": [
{ "name": "Ungrouped", "host": "example.org" }
]
}-
host/user/portare assembled intossh user@host -p port(the target is shell-quoted). -
remoteCommandruns a command on the server, built on top ofhost/user/port, with a TTY:ssh -t user@host <remoteCommand>— e.g.htoportail -f /var/log/syslog. -
commandruns verbatim — use it for jump hosts, tunnels, mosh, etc. It overrideshost/user/port. - Top-level
hosts(outside any group) appear under a group called "Servers".