202

I am on Ubuntu and I have forgotten the password for my Gnome Keyring (yes, stupid me, I know). Any way I can get it back? I have already looked at this link, but it says it's not possible if my home directory is encrypted and unfortunately my home directory is encrypted.

Ravexina
  • 57,256

6 Answers6

250

Resetting everything (delete all passwords and start new keyring):

rm ~/.local/share/keyrings/login.keyring

Then, log out and log back in. Ubuntu will automatically create a new login.keyring for you.

Or

Navigate to Places > Home. Press Ctrl + H to view "hidden files". Navigate to .local > share > keyrings and delete login.keyring

Using the same keyring (resetting keyring password but keeping old passwords in keyring):

  1. Make a backup of the keyring

     cd ~/.local/share/keyrings/
     cp login.keyring login.keyring.backup
    

and after that delete login.keyring file

    rm ~/.local/share/keyrings/login.keyring
  1. Create a new keyring file from Gnome Keyring with the name login

  2. Replace the new keyring file with the backup of the old keyring file

     cd ~/.local/share/keyrings/
     mv login.keyring.backup login.keyring      
    

Note: before Ubuntu 12.10 the path to the keyrings folder was ~/.gnome2/keyrings/ instead of ~/.local/share/keyrings/.

Bruno Pereira
  • 74,715
59
  1. Start up Ubuntu's Dash (top most icon in Unity or press Super)
  2. Type Pass to get Passwords and Keys and start this (this will start the Gnome Keyring frontend seahorse)
  3. Next
    • If the password is known: Under Passwords the default folder select unlock, or
    • If the password is not known: right mouse click and delete for resetting.

Next time Ubuntu will ask for a new password for the keyring.

rubo77
  • 34,024
  • 52
  • 172
  • 299
bill
  • 591
17

Solved this by installing seahorse frontend.

11

The answer for removing the specific file for rm ~/.local/share/keyrings/login.keyring does not work on all forms of Ubuntu.

One should open up the file manager and show hidden files (CTRL + H). Then one should see .local/share/keyrings delete all of the files in this directory and you should be good to go.

caja

3

I'm on Ubuntu MATE 16.04 and deleting files in ~/.local/share/keyrings/ didn't help me. What helped though is running seahorse and changing login password. I entered my current password and typed the same as new one. Then I logged out and logged is and my login password became password for Gnome2 Key Storage.

enter image description here

expert
  • 228
1

Um, this question and answers is all over the planet! I couldn't figure out what is going on. The distinction seems to be whether or not the old password is available. The most common cause of this problem is restoring /home/user after a clean OS upgrade during which the user's login password was changed, for whatever reason.

There are other possibilities, such as one mentioned that the login password was unacceptably short for gnome-keyring rules.

The following will not work to solve this problem: rm ~/.local/share/keyrings/login.keyring because there are two key rings, login and user So: rm ~/.local/share/keyrings/*.keyring will remove both.

It's really difficult for the problem to remain after deleting the key rings, since they no longer exist, and new ones must be created! This is the case when the password is unavailable.

With that option, you'll need to reenter your various passwords that were stored previously on the key ring, as you use the applications that require them. The key ring will remember each one, and that will be it.

If the old password is known, then gnome-keyring or seahorse can be used to change the password to the new login password, eliminating the need to keep entering it.

Brian
  • 374