How to Reset Drupal Administrator Password?

There are two ways you can do to reset the Admin password.

1. Use the ‘Forgot password’ option to email you a new password. This only works if you have setup an email to the account.

2. Access the database and update the users table.

e.g. UPDATE users SET pass = md5(‘yourpassword’) WHERE uid = 1;