26👍
✅
You can add:
ssh.util.log_to_file("paramiko.log", 10)
To the top of your fabfile, after the imports, to get more detailed information about the authorization process.
10👍
For me, I had to reset SSH agent identities with:
ssh-add -D
Then add my key back with:
ssh-add -K keyname
Careful, this will delete all identities from SSH agent.
- [Django]-How to disable Django's CSRF validation?
- [Django]-Django 1.9 deprecation warnings app_label
- [Django]-Data Mining in a Django/Postgres application
- [Django]-Django admin action without selecting objects
- [Django]-Django Template – Increment the value of a variable
- [Django]-How do I use prepared statements for inserting MULTIPLE records in SQlite using Python / Django?
0👍
In my case, I was unable to see anything helpful in the log files. I was able to connect, however, after first connecting to the server using ssh
and enabling ssh-agent forwarding:
ssh -A <user>@<host>
Then I ran fab
and was connected without being asked for a password as expected.
- [Django]-Django: Does unique_together imply db_index=True in the same way that ForeignKey does?
- [Django]-Django order_by query set, ascending and descending
- [Django]-413 Request Entity Too Large nginx django
Source:stackexchange.com