Linux服务器配置秘钥对连接
生活随笔
收集整理的這篇文章主要介紹了
Linux服务器配置秘钥对连接
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
[root@check2 ~]# ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa): #回車即可
Enter passphrase (empty for no passphrase): #回車即可
Enter same passphrase again: #回車即可
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
3e:78:02:ef:b6:84:62:8e:52:4a:aa:39:64:cb:a1:96 root@check2
The key's randomart image is:
+--[ RSA 2048]----+
| |
| |
| |
| |
| . S |
| =. + o |
|Bo* . = + |
|*E . o.o . |
|B.. .o. |
+-----------------+
[root@check2 ~]# cd .ssh/
[root@check2 .ssh]# cat id_rsa.pub >> authorized_keys
[root@check2 .ssh]# chmod 600 authorized_keys
[root@check2 .ssh]# chmod 700 ~/.ssh
編輯sshd配置文件
[root@check2 .ssh]# vim /etc/ssh/sshd_config 47 RSAAuthentication yes48 PubkeyAuthentication yes42 PermitRootLogin yes61 IgnoreRhosts yes66 PasswordAuthentication no122 UseDNS no[root@check2 .ssh]# service sshd restart 停止 sshd: [確定] 正在啟動 sshd: [確定][root@check2 .ssh]# sz id_rsa導出后將id_rsa改個名字,然后導入Xshell
打開Xshell,使用快捷鍵 Alt+T+U(alt鍵按著不松,依次按T,U)
導入剛才的文件
登錄遠程機器
選擇剛才導入的文件確定即可
?
轉載于:https://www.cnblogs.com/LuckWJL/p/9050571.html
總結
以上是生活随笔為你收集整理的Linux服务器配置秘钥对连接的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C中结构体的存储分配
- 下一篇: 通过 html5 FileReader