Store SSH keys in the Keychain - Printable Version +- nixers (https://nixers.net) +-- Forum: Operating Systems & Administration (https://nixers.net/Forum-Operating-Systems-Administration) +--- Forum: OS X (https://nixers.net/Forum-OS-X) +--- Thread: Store SSH keys in the Keychain (/Thread-Store-SSH-keys-in-the-Keychain) |
Store SSH keys in the Keychain - yrmt - 27-06-2014 This allows you to manage your ssh private key with the Mac OS X keychain: 1. Start ssh-agent for shell use: # eval `ssh-agent -s` 2. Add your private key: # ssh-add -K ~/.ssh/id_rsa |