我的工作站正在运行,Linux Centos7
是本地网络的一部分。该本地网络中的每台计算机也在运行Linux Centos7
(相同的版本)。每次ssh
进入服务器时,我都需要输入密码和登录信息。我希望ssh
不需要每次都这样做。有什么建议么?
答案1
在本地计算机上,转到terminal
并键入以下内容:
$ cd ~/.ssh
$ ssh-keygen -t rsa
Choose no passphrase when asked and accept the default filename of id_rsa
$ scp id_rsa.pub <user>@<yourhost>:.ssh/authorized_keys
Provide your password when asked and that’s the last time you’ll have to do it!