Skip to content

Bulk Import Servers

Import multiple server configurations at once using a JSON file.

[
{
"name": "My Server",
"ip": "example.com",
"port": 22,
"user": "root",
"pwd": "password",
"keyId": "",
"tags": ["production"],
"autoConnect": false
}
]
FieldRequiredDescription
nameYesDisplay name
ipYesDomain or IP address
portYesSSH port (usually 22)
userYesSSH username
pwdNoPassword (avoid - use SSH keys instead)
keyIdNoSSH key name (from Private Keys - recommended)
tagsNoOrganization tags
autoConnectNoAuto-connect on startup
  1. Create JSON file with server configurations
  2. Settings → Backup → Bulk Import Servers
  3. Select your JSON file
  4. Confirm import
[
{
"name": "Production",
"ip": "prod.example.com",
"port": 22,
"user": "admin",
"keyId": "my-key",
"tags": ["production", "web"]
},
{
"name": "Development",
"ip": "dev.example.com",
"port": 2222,
"user": "dev",
"keyId": "dev-key",
"tags": ["development"]
}
]
  • Use SSH keys instead of passwords when possible
  • Test connection after import
  • Organize with tags for easier management
  • Delete JSON file after import
  • Never commit JSON files with credentials to version control