I am using paramiko module for ssh connection.I am facing below problem:
No handlers could be found for logger
I am not getting the reason of this problem.I tried to get solution from below link but not able to get reason.
No handlers could be found for logger "paramiko.transport"
I am using below code:
1.ssh = paramiko.SSHClient()
2.ssh.set_missing_host_key_policy(
3.paramiko.AutoAddPolicy())
4.ssh.connect(serverip, username=username,
5.password=password,timeout=None)
6.transport = ssh.get_transport()
7.transport.set_keepalive(30)
8.stdin, stdout, stderr =ssh.exec_command(cmd)
9.tables=stdout.readlines()
10.ssh.close()
I think i am getting this problem at line no 8.Please advice how can i solve this.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…