ssh-add 報錯:Error connecting to agent No such file or directory

雾化饼干發表於2024-10-15

問題描述

在新增 SSH 時報錯 Error connecting to agent: No such file or directory
image1

解決方法

1. 開啟 PowerShell

管理員身份開啟 Windows PowerShell

2. 檢視服務是否啟動

get-service ssh*

image2

3. 啟動服務

Set-Service -Name ssh-agent -StartupType Manual
Start-Service ssh-agent

4. 檢視秘鑰

檢視 ssh-agent 已經新增的秘鑰

ssh-add -l

image3

參考文件

Windows ssh-add 報錯 Error connecting to agent No such file or directory - 江城撅嘴的川羌

相關文章