博客
关于我
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 主从 lock_mysql 主从同步权限mysql 行锁的实现
查看>>
mysql 主从互备份_mysql互为主从实战设置详解及自动化备份(Centos7.2)
查看>>
mysql 主从关系切换
查看>>
MYSQL 主从同步文档的大坑
查看>>
mysql 主键重复则覆盖_数据库主键不能重复
查看>>
Mysql 事务知识点与优化建议
查看>>
Mysql 优化 or
查看>>
mysql 优化器 key_mysql – 选择*和查询优化器
查看>>
MySQL 优化:Explain 执行计划详解
查看>>
Mysql 会导致锁表的语法
查看>>
mysql 使用sql文件恢复数据库
查看>>
mysql 修改默认字符集为utf8
查看>>
Mysql 共享锁
查看>>
MySQL 内核深度优化
查看>>
mysql 内连接、自然连接、外连接的区别
查看>>
mysql 写入慢优化
查看>>
mysql 分组统计SQL语句
查看>>
Mysql 分页
查看>>