Reputation: 269
My saved passwords are not being populated on sites I visit anymore. I recently downloaded Ubuntu 16 and I seem to have lost my Passwords on my newly installed Google chrome. I checked the following.
Of course, I never explicitly deleted or ask to delete passwords from any of my devices.
How should I recover them all in Ubuntu Google Chrome?
Upvotes: 16
Views: 32122
Reputation: 826
After a long investigation, I figured out the issue for me:
Passwords and passkeys
Upvotes: 0
Reputation: 2296
cd Library/Application\ Support/Google/Chrome/Default
rm Login\ Data-journal
rm Login\ Data
Upvotes: 0
Reputation: 2232
Same issue on my Chrome on latest Linux Plasma/KDE
Fixed with:
Source: https://bugs.chromium.org/p/chromium/issues/detail?id=1251355#c20
(*) was #clean-undecryptable-passwords
Upvotes: 28
Reputation: 11
Easiest solution They have not been deleted just google try to keep your passwords safe.
Upvotes: 0
Reputation: 91
It is still happening in Chrome 104.0.5112.79. As Augusto correctly noted, it's due to corruption of local Chrome's passwords database (see https://bugs.chromium.org/p/chromium/issues/detail?id=1251355#c20 for more details), and chrome://flags/#clean-undecryptable-passwords was removed in recent versions (!?). Basically you're left with 3 options:
Login Data
db from your problematic profile:cd [PATH_TO_CHROME_PROFILES]/Default
rm "Login Data"
rm "Login Data-journal"
Then upon re-opening the browser, passwords should populate.
Another option is viable if you have a backup of your profile dir, specifically of Login Data
files. This was my case (experience some crazy data corruption with APFS), and while the backup was 2 weeks old (and I did not want to lose any tabs or history over that period), I recovered only these files from the backup and it helped to re-populate all (including recently saved) passwords from my Google Account.
Last option is to use the following tool in attempt to salvage your password data: https://github.com/mramendi/chrome_password_grabber/tree/google-fix
Hope Google can fix it soon upstream.
Upvotes: 1
Reputation: 51
In my case, it's because of the disk access control of Chrome. Chrome saving password requires access to the disk. Some versions of Mac OS like Big Sur & Mojave will block chrome from saving passwords if the user not given chrome disk asscess.
system preference > security & privacy > privacy tab > Fill Disk Access > Unlock Settings and Add Chrome to the access list
Upvotes: 4
Reputation: 269
I just resolved this issue using "Remove Person"
Step 1 Go to the "Other Person Setting" by clicking your photo on the Google-chrome web browser in the rightmost corner.
step 2 Remove person
step 3 Login again with your Gmail account which has Saved Password details.
step 4 Turn on Sync
This should sync all the Google Chrome settings as well as your Saved Passwords.
Upvotes: 9