Closed1
Windows OpenSSH Authentication Agentを自動起動する
問題
OpenSSH Authentication Agentが起動していないのでssh-agent
を使用できない。
$ ssh-add -l
Could not open a connection to your authentication agent.
$ ssh-agent -l
unable to start ssh-agent service, error :1058
状態確認
Get-Service -Name ssh-agent
Status Name DisplayName
------ ---- -----------
Stopped ssh-agent OpenSSH Authentication Agent
設定と起動
PowerShellで以下のコマンドを実行し、OS起動時の自動起動を有効にする。
Set-Service -Name ssh-agent -StartupType Automatic
上記のコマンドでは自動起動の設定をしただけでこの時点でOpenSSH Authentication Agentは起動していないので、以下のコマンドで手動で起動する。
Start-Service ssh-agent
このスクラップは2023/12/23にクローズされました