centos6.5配置ssh免秘钥登陆执行pssh命令的讲解

 更新时间:2019年02月14日 14:59:37   作者:zsx0728  
今天小编就为大家分享一篇关于centos6.5配置ssh免秘钥登陆执行pssh命令的讲解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧

1.检查并安装pssh,yum list pssh

2.因为没有配置免秘钥登陆,pssh命令执行失败。

[root@bogon ]# pssh -H root@192.168.245.129 -i uptime
[1] 11:00:36 [FAILURE] root@192.168.245.129 Exited with error code 255
Stderr: The authenticity of host '192.168.245.129 (192.168.245.129)' can't be established.
RSA key fingerprint is 84:2d:70:33:1c:45:fa:e6:4b:94:72:7e:10:98:7c:a8.
Are you sure you want to continue connecting (yes/no)? 
Host key verification failed.

3.生成秘钥。

[root@bogon tmp]# 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:
9e:14:9a:cc:8d:9b:fd:51:c5:68:24:e1:ce:c6:d7:33 root@bogon
The key's randomart image is:
+--[ RSA 2048]----+
|     o..  |
|     . o o  |
|    . . o o |
|   o = = . o  |
|   * S = o E |
|    * o o  o |
|   o + .   |
|     . .   |
|     .   |
+-----------------+
[root@bogon .ssh]# ll
total 8
-rw------- 1 root root 1675 Aug 22 11:06 id_rsa
-rw-r--r-- 1 root root 392 Aug 22 11:06 id_rsa.pub

4.拷贝到被管对象。

[root@bogon .ssh]# ssh-copy-id -i /root/.ssh/id_rsa.pub root@192.168.245.129
The authenticity of host '192.168.245.129 (192.168.245.129)' can't be established.
RSA key fingerprint is 84:2d:70:33:1c:45:fa:e6:4b:94:72:7e:10:98:7c:a8.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.245.129' (RSA) to the list of known hosts.
reverse mapping checking getaddrinfo for bogon [192.168.245.129] failed - POSSIBLE BREAK-IN ATTEMPT!
root@192.168.245.129's password: 
Now try logging into the machine, with "ssh 'root@192.168.245.129'", and check in:
 .ssh/authorized_keys
to make sure we haven't added extra keys that you weren't expecting.

5.pssh命令执行成功。

[root@bogon .ssh]# pssh -H root@192.168.245.129 -i uptime
[1] 11:10:39 [SUCCESS] root@192.168.245.129
 20:10:39 up 2:07, 1 user, load average: 0.00, 0.00, 0.00

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。如果你想了解更多相关内容请查看下面相关链接

相关文章

  • Linux下安装卸载ftp的方法

    Linux下安装卸载ftp的方法

    本文给大家简单分享了下如何在Linux系统中安装配置与卸载FTP的方法,非常实用,有需要的菜鸟小伙伴可以参考下
    2016-07-07
  • 在Linux中查找命令的执行时间的几种方法小结

    在Linux中查找命令的执行时间的几种方法小结

    在Linux系统中,了解命令的执行时间对于优化系统性能和提高效率至关重要,本文将介绍几种方法来查找命令的执行时间,包括内置的time命令、GNU time工具、strace以及perf工具,需要的朋友可以参考下
    2024-05-05
  • linux无损扩容的方法

    linux无损扩容的方法

    这篇文章主要介绍了linux无损扩容的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2018-12-12
  • vmware中CentOS7网络设置教程详解

    vmware中CentOS7网络设置教程详解

    这篇文章主要为大家详细介绍了vmware中CentOS7网络设置教程,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-07-07
  • 在 Ubuntu 上安装 Protobuf 3 的教程详解

    在 Ubuntu 上安装 Protobuf 3 的教程详解

    这篇文章主要介绍了在 Ubuntu 上安装 Protobuf 3遇到问题及解决方法,本文给大家介绍的非常详细,具有一定的参考借鉴价值 ,需要的朋友可以参考下
    2019-06-06
  • 在Apache服务器中运行CGI程序的方法

    在Apache服务器中运行CGI程序的方法

    这篇文章主要介绍了在Apache服务器中运行CGI程序的方法,文中以Perl脚本作为示例,需要的朋友可以参考下
    2015-07-07
  • php扩展memcached和memcache的安装配置方法

    php扩展memcached和memcache的安装配置方法

    这篇文章主要介绍了php扩展memcached和memcache的安装配置方法,需要的朋友可以参考下
    2014-11-11
  • 详解如何在 Linux 中安装最新的 Python 3.6 版本

    详解如何在 Linux 中安装最新的 Python 3.6 版本

    本篇文章主要介绍了详解如何在 Linux 中安装最新的 Python 3.6 版本,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。
    2017-03-03
  • linux如何mount挂载磁盘并设置开机自动mount的实现

    linux如何mount挂载磁盘并设置开机自动mount的实现

    这篇文章主要介绍了linux如何mount挂载磁盘并设置开机自动mount的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-09-09
  • Linux常用命令last的使用方法详解

    Linux常用命令last的使用方法详解

    最近在学习linux命令,学习到了last命令,发现很多同学对last命令不是很熟悉,last命令的功能列出目前与过去登入系统的用户相关信息,下面这篇文章主要给大家介绍了关于Linux常用命令last的使用方法,需要的朋友可以参考借鉴。
    2017-08-08

最新评论