SSH keys are lost after macOS High Sierra reboot
To list all keys run
ssh-add -l
Re-import your SSH key
ssh-add -K ~/.ssh/id_rsa
Add the following to your ~/.ssh/config
file:
Host *
AddKeysToAgent yes
UseKeychain yes
Source: macOS Sierra doesn’t seem to remember SSH keys between reboots
Leave a comment