博客
关于我
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 字段合并问题(group_concat)
查看>>
mysql 字段类型类型
查看>>
MySQL 存储引擎
查看>>
mysql 存储过程 注入_mysql 视图 事务 存储过程 SQL注入
查看>>
MySQL 存储过程参数:in、out、inout
查看>>
mysql 存在update不存在insert
查看>>
Mysql 学习总结(86)—— Mysql 的 JSON 数据类型正确使用姿势
查看>>
Mysql 学习总结(89)—— Mysql 库表容量统计
查看>>
mysql 审核_审核MySQL数据库上的登录
查看>>
mysql 导入 sql 文件时 ERROR 1046 (3D000) no database selected 错误的解决
查看>>
mysql 常用命令
查看>>
Mysql 报错 Field 'id' doesn't have a default value
查看>>
MySQL 报错:Duplicate entry 'xxx' for key 'UNIQ_XXXX'
查看>>
mysql 数据库备份及ibdata1的瘦身
查看>>
MySQL 数据库备份种类以及常用备份工具汇总
查看>>
mysql 数据库存储引擎怎么选择?快来看看性能测试吧
查看>>
MySQL 数据库操作指南:学习如何使用 Python 进行增删改查操作
查看>>
MySQL 数据库的高可用性分析
查看>>
Mysql 数据库重置ID排序
查看>>