博客
关于我
ssh免密码登陆服务器
阅读量:138 次
发布时间:2019-02-28

本文共 1899 字,大约阅读时间需要 6 分钟。


这个是在cygwin中操作的,其实都是通用的。

执行ssh-keygen命令,生成公钥:

$ ssh-keygen.exe -t rsa

Generating public/private rsa key pair.
Enter file in which to save the key (/home/shizh1/.ssh/id_rsa):
Created directory '/home/shizh1/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/shizh1/.ssh/id_rsa.
Your public key has been saved in /home/shizh1/.ssh/id_rsa.pub.
The key fingerprint is:
a4:37:66:a7:7e:75:60:ca:8e:e9:49:3c:74:c2:e7:41 shizh1@SHIZH1-PC0011NN
The key's randomart image is:
+---[RSA 2048]----+
| |
| |
| . E |
| + . o |
| . S.=o . |
| * Oo.. . |
| =+.. . |
| oooo |
| .+. |
+-----------------+
把公钥复制到服务器上:

$ ssh-copy-id shizh1@10.100.124.230

The authenticity of host '10.100.124.230 (10.100.124.230)' can't be established.
ECDSA key fingerprint is 22:64:04:a0:e6:0b:f6:0c:dd:80:3a:8c:2c:35:b8:50.
Are you sure you want to continue connecting (yes/no)? yes
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys
shizh1@10.100.124.230's password:
Number of key(s) added: 1
Now try logging into the machine, with: "ssh 'shizh1@10.100.124.230'"
and check to make sure that only the key(s) you wanted were added.

登录到服务器上:

$ ssh shizh1@10.100.124.230

Welcome to Ubuntu 12.04.5 LTS (GNU/Linux 3.17.1 x86_64)
 * Documentation: https://help.ubuntu.com/
You have packages from the Hardware Enablement Stack (HWE) installed that
are going out of support on 2014-08-07.
There is a graphics stack installed on this system. An upgrade to a
supported (or longer supported) configuration will become available
on 2014-07-16 and can be invoked by running 'update-manager' in the
Dash.
*** System restart required ***
Last login: Sun Jan 4 12:33:44 2015 from 10.110.54.143


OK了!

转载地址:http://fbld.baihongyu.com/

你可能感兴趣的文章
mysql 索引类型以及创建
查看>>
MySQL 索引连环问题,你能答对几个?
查看>>
Mysql 索引问题集锦
查看>>
Mysql 纵表转换为横表
查看>>
mysql 编译安装 window篇
查看>>
mysql 网络目录_联机目录数据库
查看>>
MySQL 聚簇索引&&二级索引&&辅助索引
查看>>
Mysql 脏页 脏读 脏数据
查看>>
mysql 自增id和UUID做主键性能分析,及最优方案
查看>>
Mysql 自定义函数
查看>>
mysql 行转列 列转行
查看>>
Mysql 表分区
查看>>
mysql 表的操作
查看>>
MySQL 触发器
查看>>
mysql 让所有IP访问数据库
查看>>
mysql 记录的增删改查
查看>>
MySQL 设置数据库的隔离级别
查看>>
MySQL 证明为什么用limit时,offset很大会影响性能
查看>>
Mysql 语句操作索引SQL语句
查看>>
MySQL 调优/优化的 101 个建议!
查看>>