The Most Popular Extension Builder for Magento 2

With a big catalog of 224+ extensions for your online store

4 Ways to Reset Admin password in Magento 2

Username and Password are the required fields if you want to log in the Magento admin. And it is a huge problem if you forget one of them. Or in other cases, you need to change your password regularly for better protection. Therefore, resetting admin password is very essential to every store. With Magento 2, “Forgot your password” link is available to click, then a temporary password can be sent to the email address that is associated with the account immediately. If the admin account gets locked, this tutorial will help. Let do the following steps to reset your admin password in Magento 2.

To reset Magento 2 admin password

There are 4 ways to reset the admin password in Magento 2:

Solution 1: Reset Magento 2 admin password in phpmyadmin

In this solution, we are going to use phpmyadmin to change the admin password. Go to phpmyadmin and copy the following sql query:

UPDATE admin_user SET password = CONCAT(SHA2('xxxxxxxYourNewPassword', 256), ':xxxxxxx:1') WHERE username = 'admin';

The xxxxxxx character sequence is a cryptographic salt, it is saved in app\etc\env.php file

<?php
return array (
  ...
  'crypt' => 
  array (
    'key' => '525701df74e6cba74d5e9a1bb3d935ad', //cryptographic salt
  ),
  ...

Note: Replace the value of $PASSWORD with your new password, and substitute $USERNAME with the username for which you intend to reset the password for.

OR:

You may visit phpMyAdmin and execute the following query:

UPDATE admin_user SET password = MD2('NewPassword', 258) WHERE username='admin';

Solution 2: Reset your Magento 2 password from Admin panel

One of the most straightforward and easiest to do is resetting the password for your Magento 2 store right from the Admin panel.

  • If you forget your password, click the Forgot Your Password? link.

How to reset admin password Magento 2 Forgot Password

  • Enter the Email Address that is associated with the Admin account.
  • Click  Retrieve Password. If there is an account associated with the email address, an email will be sent to reset your password. To prevent email to spam box, enable SMTP here

Solution 3: Reset Magento 2 admin password via command line (cli)

Another method is using the command line. We typed on Magento 2 root folder:

php bin/magento -h

It show the admin command line:

...
 admin
  admin:user:create                        Creates an administrator
  admin:user:unlock                        Unlock Admin Account
...

Magento 2 does not support reset password via command line. However, we can create a new admin account, then use the new account to reset the old one.

magento 2 create admin user

Follow this guide to create a new admin account.

Solution 4: Reset Admin password in Magento 2 via Account Settings

This tactic can be used when you remember your current password but want to reset it for security.

  • Go to Magento Admin panel
  • Click on the Account Settings in the drop-down list of the account
  • Type the new password
  • Confirm the new password by retyping
  • Enter the old password for identity check
  • Select Save Account

The bottom line

Resetting your admin password in Magento 2 is easier than ever if you follow the above 4 solutions. Feel free to choose the way that suits you, and you are welcomed to comment your ideas or any concerns you are having in the comment box. And don’t forget to check the related topic below!

Related Topics:

Image Description
Hello, I'm the Chief Technology Officer of Mageplaza, and I am thrilled to share my story with you. My deep love and passion for technology have fueled my journey as a professional coder and an ultra-marathon runner. Over the past decade, I have accumulated extensive experience and honed my expertise in PHP development.

Looking for
Customization & Development Services?

8+ years of experiences in e-commerce & Magento has prepared us for any challenges, so that we can lead you to your success.

Get free consultant
development service
x

    Explore Our Products:

    People also searched for

    Subscribe

    Stay in the know

    Get special offers on the latest news from Mageplaza.

    Earn $10 in reward now!

    Earn $10 in reward now!

    comment
    iphone
    go up