Forum Discussion
perhlom
2 months agoNew Contributor
SSH Agent signs out too soon
It's frustrating that the SSH Agent signs out when the computer itself locks. SSH Agent should have its own timeout. The use case is that I start AI training jobs that run on a Vast.AI GPU, and afte...
1P_Phil
Moderator
2 months agoHi perhlom​ ,
Thanks for writing in. I will do some sleuthing internally here to see if there is a workaround for you in this situation. I'll write back as soon as I hear something.
Regards,
Phil
- jhundley2 months agoNew Contributor
I would like to add that I have recently started using 1Password for business and immediately was attracted to using 1Password to store my SSH private keys as it simplifies a whole lot of things. But here I am a few days after getting going with it and end up on the same recent community request for the same feature I'm looking for.
+1 this from me!
I have somewhat worked around this by enabling a persistent ssh connection to server so the SSH key doesn't get revalidated unless the persistent connection closes. I use these settings in my SSH config
ControlMaster auto ControlPath ~/.ssh/ssh-%r@%h:%p ControlPersist 1800 ForwardAgent yes ServerAliveInterval 10