Install obsidian-remote-ssh
You can install via the Obsidian Community Plugins store (stable) or BRAT (beta channel — features land here first). Both ship the same plugin codebase; the only difference is which manifest BRAT/Obsidian fetches.
Option 1 — Community Plugins store (stable)
Status: submission in progress. Use BRAT for now if you want the current build.
- Open Obsidian → Settings → Community plugins.
- Disable Restricted mode if it’s on.
- Click Browse, search for Remote SSH.
- Install → Enable.
Option 2 — BRAT (beta channel)
BRAT lets you install plugins directly from a GitHub repo’s manifest-beta.json. Recommended if you want every fix the day it lands on next.
- Install BRAT from the Community Plugins store first.
- Open BRAT settings → Add Beta plugin.
- Paste the repo slug:
sotashimozono/obsidian-remote-ssh - Pick —beta so BRAT follows
manifest-beta.jsoninstead of the stablemanifest.json. - Wait a few seconds for download, then enable Remote SSH in Community Plugins.
BRAT auto-updates on Obsidian launch. To pin a specific version, set BRAT’s “Auto-update at startup” to off.
Option 3 — Manual install
For air-gapped Obsidian instances or to inspect the bundle before loading.
- Download the latest release artefacts from Releases:
main.js(plugin bundle)manifest.jsonstyles.css
- Copy the three files into:
<vault>/.obsidian/plugins/remote-ssh/ - Restart Obsidian → Settings → Community plugins → enable Remote SSH.
Server side
The plugin auto-deploys a signed daemon binary (obsidian-remote-server) onto every host you connect to — you don’t need to install anything manually on the remote unless you want to. See deploy for what gets installed where, and Cosign verification to verify the daemon yourself.
Requirements
| Obsidian | 1.5.0 or newer |
| Local OS | macOS, Linux, Windows |
| Remote OS | Linux (amd64 / arm64), macOS (Intel / Apple Silicon) |
| Remote SSH | OpenSSH 8.0+ recommended; password, public key, and SSH agent auth all supported |
| Mobile | Not yet — see the mobile-relay tracker |
Next: First connect.