Which nodes support SSH
All five nodes in the Jarvis brain mesh accept SSH connections:| Node | Primary role |
|---|---|
ai-max | Primary GPU node — model inference |
ai-mini-x1 | Secondary GPU node — overflow inference |
jarvis-brain | Orchestration and agent coordination |
dell-micro | Utility node — automation and storage |
synologynas | NAS — persistent storage and backups |
Use the node’s hostname if your local DNS resolves it, or its LAN IP address if not. Replace
your-node-hostname in the examples below with the actual hostname or IP for the node you’re connecting to.Connection syntax
SSH key setup
Password authentication is discouraged. Set up key-based authentication once and you won’t need to enter a password again.Generate a key pair (if you don't have one)
~/.ssh/id_ed25519) or specify a custom path.Common SSH use cases in Jarvis
Tail Docker logs in real timeTroubleshooting connection issues
Connection refused
Connection refused
The SSH daemon may not be running on the target node. Log into the machine physically or via another access method and run:Also check whether a firewall is blocking port 22:
Permission denied (publickey)
Permission denied (publickey)
Your public key is not authorized on the remote node. Either copy it with
ssh-copy-id or manually append the contents of your ~/.ssh/id_ed25519.pub to ~/.ssh/authorized_keys on the remote host.Also verify the permissions on the remote ~/.ssh directory:Host key verification failed
Host key verification failed
The node’s host key has changed, which happens after an OS reinstall or hostname change. Remove the old entry from your known hosts file:Then reconnect and accept the new host key.
Connection times out
Connection times out
The node may be offline or unreachable on your LAN. Ping the node to check basic connectivity:If it doesn’t respond, check that the machine is powered on and connected to the network.
Next steps
Docker operations
Manage containers and services once you’re connected to a node.
Mesh nodes
Learn what each node does and how they relate to one another.