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

总结

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

相关文章

  • Ubuntu 14.04下安装和配置redis数据库

    Ubuntu 14.04下安装和配置redis数据库

    安装Redis服务器,会自动地一起安装Redis命令行客户端程序。在本机输入redis-cli命令就可以启动,客户端程序访问Redis服务器。
    2016-04-04
  • 阿里云Centos7安装LNMP+wordpress

    阿里云Centos7安装LNMP+wordpress

    这篇文章主要介绍了阿里云Centos7安装LNMP+wordpress的方法和步奏,十分的简洁明了,推荐给大家,有需要的小伙伴可以参考下
    2016-04-04
  • htaccess 将所有请求重定向到某个URL地址的规则

    htaccess 将所有请求重定向到某个URL地址的规则

    htaccess 将所有请求重定向到某个URL地址的规则,需要的朋友可以参考下。
    2011-04-04
  • 在AWS的Linux服务器部署Flask预演(详细步骤)

    在AWS的Linux服务器部署Flask预演(详细步骤)

    这篇文章主要介绍了在AWS的Linux服务器部署Flask预演,部署Flask应用程序到AWS Linux服务器,你可以选择多种方式,本文分步骤给大家介绍的非常详细,需要的朋友可以参考下
    2023-05-05
  • springcloud alibaba nacos linux配置的详细教程

    springcloud alibaba nacos linux配置的详细教程

    这篇文章主要介绍了springcloud alibaba nacos linux配置,本文通过图文并茂的形式给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2020-10-10
  • 关于Linux下conda安装caffe与pb转caffe问题

    关于Linux下conda安装caffe与pb转caffe问题

    这篇文章主要介绍了关于Linux下conda安装caffe与pb转caffe问题,文中以图文说明了conda安装caffe的方法,需要的朋友可以参考下
    2023-03-03
  • Linux之定时任务Crond详解

    Linux之定时任务Crond详解

    本篇文章主要介绍了Linux之定时任务Crond详解 ,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-05-05
  • 关于g++和gcc的相同点和区别详解

    关于g++和gcc的相同点和区别详解

    下面小编就为大家带来一篇关于g++和gcc的相同点和区别详解。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-01-01
  • Linux配置实现免密钥登录过程解析

    Linux配置实现免密钥登录过程解析

    这篇文章主要介绍了Linux配置实现免密钥登录过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2020-06-06
  • Centos系统中用mock构建rpm的方法

    Centos系统中用mock构建rpm的方法

    这篇文章主要给大家介绍了在Centos系统中用mock构建rpm的方法,文中给出了详细的命令代码,相信对大家的理解和学习具有一定的参考借鉴家价值,有需要的朋友们下面来一起看看吧。
    2016-12-12

最新评论