发布时间:2014-09-05 16:52:31作者:知识屋
1 登录到任意一台服务器
ssh 192.168.21.90
2 执行命令
ssh-keygen -t rsa
Java代码
[root@fedora14ip90 ~]# ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa): twoServer
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in twoServer.
Your public key has been saved in twoServer.pub.
The key fingerprint is:
6e:0c:30:81:93:81:d3:53:0b:77:88:8d:53:5a:5a:6d root@fedora14ip90
The key's randomart image is:
+--[ RSA 2048]----+
| ooXBo. |
|o XBo+E |
| .o++. |
| o |
| . S |
| + |
| + |
| . |
| |
+-----------------+
[root@fedora14ip90 ~]#
在这个过程中输入文件名[随意即可],还有密码[随意即可]
3 到密钥文件夹下面去
引用
[root@fedora14ip90 .ssh]# cd /root/.ssh/
4 复制密钥到需要无密码访问的电脑上,有scp命令即可
Java代码
scp id_rsa.pub root@192.168.21.91:/root/
scp [文件] [无密码访问的电脑的用户名(我这儿是root)]@[无密码访问的电脑的ip,不用多说]:[无密码访问的电脑的目标文件夹]
这个过程会提示输入密码,输入即可
5 登录到需要无密码访问的电脑上执行命令
cat /root/id_rsa.pub >> ~/.ssh/authorized_keys
6 成功
附:
如果需要快速的实现上面的步骤,实现A机器ssh登录B机器时候不需要密码
1 在A机器上输入命令
ssh-keygen -t rsa -P '' ~/.ssh/id_rsa
2 把生成的文件~/.ssh/id_rsa.pub拷贝到B机器上,然后做相应的操作把~/.ssh/id_rsa.pub文件内容追加到~/.ssh/authorized_keys后面
作者“tsaowe”
linux一键安装web环境全攻略 在linux系统中怎么一键安装web环境方法
Linux网络基本网络配置方法介绍 如何配置Linux系统的网络方法
Linux下DNS服务器搭建详解 Linux下搭建DNS服务器和配置文件
对Linux进行详细的性能监控的方法 Linux 系统性能监控命令详解
linux系统root密码忘了怎么办 linux忘记root密码后找回密码的方法
Linux基本命令有哪些 Linux系统常用操作命令有哪些
Linux必学的网络操作命令 linux网络操作相关命令汇总
linux系统从入侵到提权的详细过程 linux入侵提权服务器方法技巧
linux系统怎么用命令切换用户登录 Linux切换用户的命令是什么
在linux中添加普通新用户登录 如何在Linux中添加一个新的用户
2012-07-10
CentOS 6.3安装(详细图解教程)
Linux怎么查看网卡驱动?Linux下查看网卡的驱动程序
centos修改主机名命令
Ubuntu或UbuntuKyKin14.04Unity桌面风格与Gnome桌面风格的切换
FEDORA 17中设置TIGERVNC远程访问
StartOS 5.0相关介绍,新型的Linux系统!
解决vSphere Client登录linux版vCenter失败
LINUX最新提权 Exploits Linux Kernel <= 2.6.37
nginx在网站中的7层转发功能