Answers for "ssh-agent windows"

1

eval ssh-agent

eval `ssh-agent`
Posted by: Guest on April-02-2020
0

ssh-agent windows

# Install the OpenSSHUtils module to the server. This will be valuable when deploying user keys.
Install-Module -Force OpenSSHUtils -Scope AllUsers

# By default the ssh-agent service is disabled. Allow it to be manually started for the next step to work.
Get-Service -Name ssh-agent | Set-Service -StartupType Manual

# Start the ssh-agent service to preserve the server keys
Start-Service ssh-agent

# Now start the sshd service
Start-Service sshd
Posted by: Guest on April-05-2021

Code answers related to "ActionScript"

Browse Popular Code Answers by Language