-
Notifications
You must be signed in to change notification settings - Fork 0
service
aniongithub edited this page May 19, 2026
·
1 revision
mind-map can install itself as a system service so it starts at boot and stays running. One command on every supported OS.
sudo mind-map service install
sudo mind-map service startOn Windows (admin PowerShell):
mind-map service install
mind-map service start| OS | Service system | Where |
|---|---|---|
| Linux | systemd | /etc/systemd/system/mind-map.service |
| macOS | launchd | /Library/LaunchDaemons/mind-map.plist |
| Windows | Windows Services | Registered as mind-map
|
| FreeBSD | rc.d | /usr/local/etc/rc.d/mind-map |
Backed by the kardianos/service library — same install command, same behavior, on every OS.
The service runs mind-map serve with whatever flags you supplied to service install. Common pattern:
sudo mind-map service install --addr 127.0.0.1:4242 --dir /home/you/.mind-map/wiki
sudo mind-map service startTo change flags after install, uninstall and reinstall:
sudo mind-map service stop
sudo mind-map service uninstall
sudo mind-map service install --addr 127.0.0.1:8080
sudo mind-map service startmind-map service status
journalctl -u mind-map -f # Linux
log stream --process mind-map # macOSmind-map also writes to ~/.mind-map/mind-map.log regardless.
sudo mind-map service stop
sudo mind-map service uninstallYour wiki at ~/.mind-map/wiki is untouched — uninstalling the service removes only the service registration. See guides/install#uninstalling to remove the binary or wipe data.
-
Service. You use mind-map daily, want it always reachable at
http://localhost:4242, and want an agents/index to use it via MCP without you launching anything. -
Ad-hoc
mind-map serve. You only want it running while editing.
Both modes use the same binary and the same guides/out-of-the-box.