I didn't use Magento 2.0.2.0 CE for about 1 month. After that I logged in to admin after, opened my account/Account information page, the title “It's time to change your password.” was shown. When I tried to open my products (or settings page), the similar page “It's time to change your password.” was shown
I changed my password and pressed “Save Account”. And nothing changed, I still see “It's time to change your password.”, all menu items lead to this page “It's time to change your password.”
1) Run this SQL
script in your store db:
UPDATE admin_passwords SET expires = <<some future timestamp>> WHERE user_id = <<admin_user_id>>;
<<some future timestamp>>
= 1999999998<<admin_user_id>>
- you can find your user id in the table
admin_user
Also you can make the same job with help of some UI client: just edit expires
column in admin_passwords
table to 1999999998 (i suggest to change all lines to affect all users):
2) Clean your browser cache and coockie.
3) Login to Magento. Enjoy it!