Change WordPress User Password in DataBase
The passwords for all the WordPress users are all stored in the wp_users table.
All the passwords are MD5 hashed.
UPDATE `wp_users` SET `user_pass`= MD5('yournewpassword') WHERE `user_login`='yourusername';
Related
- WordPress Essentials
- How to Manually Migrate a WordPress Website
- Setup a WordPress Website on Debian Based Linux
- MySQL Essentials
Links
- https://wordpress.org/
- https://wordpress.com/
- https://www.mysql.com
- https://www.mysql.com/products/workbench