Solve Fabric No handlers could be found for logger “ssh.transport” Fatal error: No existing session


After rebuild my ssh on Ubuntu Oneiric 11.10 Dekstop, suddenly my fabric give this error :

1
2
3
No handlers could be found for logger "ssh.transport"

Fatal error: No existing session


After investigating a few minutes, I got the problem was ~/.ssh folder. Because I was re-install openssh-server in my Desktop, generate new RSA key and may it have conflict with fabric.

The solution is easy

1
2
rm -rf ~/.ssh
sudo service ssh restart

Now you can run your fabric without problem 🙂


Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.