Signing back into the Community for the first time? You'll need to reset your password to access your account. Find out more.
Forum Discussion
Former Member
3 years ago(macOS) SSH Agent is not working
The option to use the SSH Agent is enabled and I even enabled the option to start at login.
But when I open my terminal, the SSH Agent is not active.
```
$ cat ~/.ssh/config
Host *
Id...
Former Member
3 years agoHi floris_1P
I have 5 keys in 1Password (None of them are listed using ssh-add -l
):
* I created 3 keys using ssh-keygen -t ed25519 -C <comment> -f <file>
and then imported them into 1P.
* I created 2 keys directly on 1P, one RSA and one ED25519
For the keys I create with ssh-keygen
I use the IdentityFile option, but remove it so I can use them from 1Password.
This is a part of my ssh config file:
```
Host *
IdentityAgent "~/.config/1password/agent.sock"
Host git_work
Hostname github.com
User git
#IdentityFile ~/.ssh/git_work
Host git
Hostname github.com
User git
#IdentityFile ~/.ssh/git
```