AmenzO
AmenzO

Reputation: 409

ssh access to remote server without password - Windows

I transfer files from local machine (windows 7) to remote server (linux) the command line scp , but every time i have to write the password .

Is there a way to configure my machine ( windows) and remote server to accept my transfers without typing password every time. but only for this machine?

Thank you so much

Upvotes: 0

Views: 1670

Answers (1)

Jakuje
Jakuje

Reputation: 25926

Use ssh keys. There is a lot of tutorials how to set them up. In short:

$ ssh-keygen

Upvotes: 1

Related Questions