Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Whenever I try interacting with an SVN server, ubuntu prompts me for the password to a '(null)' keyring. I don't have a keyring called this, so I'm assuming that some code somewhere is actually encountering a null value. I haven't even set up any keyrings, so I don't know why I'm getting prompted for one. I've entered in every password I've ever used for anything on that machine, and nothing works.

How can I get it so (a) keyring works or (b) svn stops asking for it?

I've tried setting up my ~/.subversion/config to explicitly use gnome-keyring, and I've tried 'store-auth-creds=no' and neither works.

share|improve this question

2 Answers

up vote 15 down vote accepted

On a whim, I deleted ~/.gnome2/keyrings/* and now it works!

share|improve this answer
1  
+1. More you delete, more works :) – Vlad Lazarenko Nov 16 '11 at 22:01

This is enough for me:

rm ~/.gnome2/keyrings/login.keyring
share|improve this answer
1  
Indeed it is... – ring0 Oct 17 '12 at 7:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.