Possible Duplicate:
How to recover/reset forgotten Gnome Keyring Password?
**Enter password to unlock your login keyring**
The password that you use to log into your computer is no longer matches your log in keyring.
Possible Duplicate:
How to recover/reset forgotten Gnome Keyring Password?
**Enter password to unlock your login keyring**
The password that you use to log into your computer is no longer matches your log in keyring.
Click Applications
Click Accessories
Click Passwords and Encryption Keys
-or-
Press ALT+F2
Then type in seahorse
-then-
Right click Passwords: login
Select Change Password
-then-
Change the password to blank. This will allow autologin to use your wireless password, start remote desktop, etc.
Another way is to remove the old keystore.
killall -9 gnome-keyring-daemon
rm -fr ~/.gnome2/keyrings/
reboot the computer sudo init 6
and then on the first prompt to enter a new keyring password, i.e. when starting empathy or NetworkManager,simply press enter, a warning appears asking Use insecure storage?
, press enter one more time. From now on, you won't be asked about passwords anymore.
And yes, this is insecure; if you are paranoid, don't do it.
enter
enter
Edit: On newer versions of Ubuntu (21.04 in my case) the daemon and directory names seem to have changed:
killall -9 gnome-keyring-d
cd ~/.local/share/
rm -rf keyrings
`killall -9 gnome-keyring-daemon`
`rm -fr ~/.gnome2/keyrings`
and then on the first prompt to enter a new keyring password, i.e. when starting empathy or NetworkManager,simply press
~/.local/share/keyrings
– Brett
May 23 '16 at 06:54
From the Ubuntu help, it works
.gnome2
or .local/share/keyrings
in Ubuntu >= 14
Applications -> Utilities -> Passwords and Keys
then Right-click onPasswords -> login
Select“Change Password”
– Shayan Sep 22 '19 at 22:23