Reset admin password in Drupal 9
By jeltsch on Sat, 04/09/2022 - 11:58- Go to the base folder of the drupal installation
- Generate the hash for your password:
php core/scripts/password-hash.sh 'newpasswd'
- Execute in mysql:
UPDATE users_field_data SET pass='hash_result_from_previous_command_goes_here' WHERE uid = 1;
- Clear the cache:
DELETE FROM cache_entity WHERE cid = 'values:user:1';