How to fix the following issue:
$ svn update
Password for 'default' GNOME keyring:
svn: GNOME Keyring is locked and we are non-interactive
I have googled around but can't seem to find a satisfactory answer.
How to fix the following issue:
$ svn update
Password for 'default' GNOME keyring:
svn: GNOME Keyring is locked and we are non-interactive
I have googled around but can't seem to find a satisfactory answer.
run the below command:
seahorse
and then delete all items in the menu. The problem wil be gone
In my case the problem persisted until I deleted the default keyring. Using Mate Linux you can use this command to delete the default key file:
rm ~/.config/mate/keyrings/default
That solved the problem for me...
None of the solutions googled (removing keyrings from ~/.gnome2, blanking password-stores from ~/.subversion/config, ...) worked for me. I had to unset environment variables GNOME_KEYRING_CONTROL GNOME_KEYRING_PID in my startup files (~/.xsession or whatever) in order to prevent their values being inherited from the desktop/login environment.
svn: ~/.subversion/config:17: Option expectedandsvnrefuses to proceed... what worked for me wasmv ~/.gnome2/keyrings/login.keyring ~/.gnome2/keyrings/_login.keyringas per Being prompted for '(null)' GNOME keyring - Stack Overflow; but then SVN insists on storing the password, once it passes, to a new Gnome keyring - which I don't want (I want to be asked each time, as when I use SVN over ssh), but that's another issue... – sdaau Oct 30 '14 at 17:52