Rafael Corrêa Gomes
Rafael Corrêa Gomes

Follow

Rafael Corrêa Gomes

Follow

How to import and export admin users on Magento 2?

Rafael Corrêa Gomes's photo
Rafael Corrêa Gomes
·Feb 13, 2019·

1 min read

Play this article

Your admin users data are on the tables admin_user and admin_passwords in your Magento 2 database, you can use these commands to export and then import in your second store:

Export

$ mysqldump -p --user=username dbname admin_user admin_passwords > myAdminUsers.sql

Import

$ mysql -u username -p -D dbname < myAdminUsers.sql

Important

If you use a database prefix, don't forget to use on these commands above.

 
Share this