• python_paramiko_SSHException Invalid requirement, parse error at


    • 不加sleep(0.5)会出现SSHException: Invalid requirement, parse error at " '' "问题,原因暂时未知。

    • 结论如下

    1. 如果不使用多线程,则不会出现问题
    2. 使用多线程一定要sleep(0.2),也就是多个线程之间一定要有时间间隙
    #!/usr/bin/env python
    import paramiko
    import threading
    import sys
    import time
    
    def ssh(host, user, cmd):
        ssh = paramiko.SSHClient()
        ssh.set_missing_host_key_policy( paramiko.AutoAddPolicy() )
        pkey_file = '/Users/admin/.ssh/id_rsa'
        # key = paramiko.RSAKey.from_private_key_file( pkey_file, password='' )
        key = paramiko.RSAKey.from_private_key_file( pkey_file, password='' )
        try:
            ssh.connect( hostname=host, username=user, pkey=key, timeout=5 )
        except:
            print 'connection has some problems...'
            return -1
        stdin, stdout, stderr = ssh.exec_command( cmd )
        stdout = stdout.read()
        stderr = stderr.read()
        if stdout:
            print '%s: %s' % (host, stdout),
            ssh.close()
        else:
            print '%s: %s' % (host, stderr),
            ssh.close()
    if __name__ == '__main__':
        hosts = ['192.168.31.114', '192.168.31.115', '192.168.31.116', '192.168.31.117']
        try:
            cmd = sys.argv[1]
        except IndexError:
            print '%s follow a command must be' % __file__
            sys.exit(-1)
        for host in hosts:
            t = threading.Thread( target=ssh, args=(host, 'root', 'uptime') )
            t.start()
            time.sleep(0.5) #如果不加此行则会出现下面描述的异常
            # ssh(host, 'root', 'uptime')
    

    执行结果如下,有时候就没有异常,有时候就有 ,我网在也找不到合适的结论

    192.168.31.116:  11:51:53 up  1:03,  1 user,  load average: 0.07, 0.26, 0.18
    192.168.31.114:  11:51:53 up  1:03,  1 user,  load average: 0.07, 0.26, 0.18
    192.168.31.115:  11:51:53 up  1:03,  1 user,  load average: 0.07, 0.26, 0.18
    Exception in thread Thread-3:
    Traceback (most recent call last):
      File "/Users/admin/.pyenv/versions/2.7.13/lib/python2.7/threading.py", line 801, in __bootstrap_inner
        self.run()
      File "/Users/admin/.pyenv/versions/2.7.13/lib/python2.7/threading.py", line 754, in run
        self.__target(*self.__args, **self.__kwargs)
      File "parallel.py", line 12, in ssh
        key = paramiko.RSAKey.from_private_key_file( pkey_file, password='' )
      File "/Users/admin/.pyenv/versions/2.7.13/lib/python2.7/site-packages/paramiko/pkey.py", line 196, in from_private_key_file
        key = cls(filename=filename, password=password)
      File "/Users/admin/.pyenv/versions/2.7.13/lib/python2.7/site-packages/paramiko/rsakey.py", line 46, in __init__
        self._from_private_key_file(filename, password)
      File "/Users/admin/.pyenv/versions/2.7.13/lib/python2.7/site-packages/paramiko/rsakey.py", line 174, in _from_private_key_file
        self._decode_key(data)
      File "/Users/admin/.pyenv/versions/2.7.13/lib/python2.7/site-packages/paramiko/rsakey.py", line 186, in _decode_key
        raise SSHException(str(e))
    SSHException: Invalid requirement, parse error at "''"
    192.168.31.117:  11:51:54 up  1:03,  1 user,  load average: 0.07, 0.25, 0.18
    192.168.31.115:  11:51:54 up  1:03,  1 user,  load average: 0.07, 0.25, 0.18
    192.168.31.114:  11:51:54 up  1:03,  1 user,  load average: 0.07, 0.25, 0.18
    192.168.31.115:  11:51:55 up  1:03,  1 user,  load average: 0.07, 0.25, 0.18
    192.168.31.116:  11:51:55 up  1:03,  1 user,  load average: 0.07, 0.25, 0.18
    192.168.31.114:  11:51:55 up  1:03,  1 user,  load average: 0.07, 0.25, 0.18
    192.168.31.117:  11:51:55 up  1:03,  1 user,  load average: 0.07, 0.25, 0.18
    
  • 相关阅读:
    The 2021 CCPC Guilin Onsite【A,I,G(二分),D(思维+构造),E(最短路】
    第 46 届 ICPC 国际大学生程序设计竞赛亚洲区域赛(沈阳)
    The 2021 CCPC Weihai Onsite【G:组合数学(好模板) D:Exkmp利用Z数组跑后缀】
    第 46 届 ICPC 国际大学生程序设计竞赛亚洲区域赛(上海)【I:线性DP】
    项目中基于Rest的Wcf服务发布以及iBatisNet框架的使用(下)
    linq to xml 学习整理
    项目中基于Rest的Wcf服务发布以及iBatisNet框架的使用(上)
    java 工具PDF使用——itextpdf
    在 jQuery 中弹出层中如何实现点击空白处关闭弹出层
    人生,有时候就是这样
  • 原文地址:https://www.cnblogs.com/ZhangRuoXu/p/6713967.html
Copyright © 2020-2023  润新知