In this post we will know, how can we reset the Drupal 8 frontend admin user password. It is very easy just you have the server access to run the following commands - Generate a new password First, you have to generate a password hash that is valid for your site. Execute the following commands from the command line, in the Drupal 8 root directory: php core/scripts/password-hash.sh 'your-new-pass-here' Output: password: your-new-pass-here hash: $S$EV4QAYSIc9XNZD9GMNDwMpMJXPJzz1J2dkSH6KIGiAVXvREBy.9E Be careful not to include more or less characters as the hash. These hashes look somewhat like - $S$EV4QAYSIc9XNZD9GMNDwMpMJXPJzz1J2dkSH6KIGiAVXvREBy.9E. We will use the generated password later. Update the user password. Now you need to update the user password, in our case we need update the Administrator password, fortunately the UID for Administrator is 1 equal to previous versions of Drupal. With the new password we nee...