Question

If I logged in admin side by chrome.then if when I logged-in successfully in Mozilla for same magento instance in magento2.1 then I automatically log out in chrome and throw message Someone logged into this account from another device or browser. Your current session is terminated.

Why does this happen in Magento 2.1?

Was it helpful?

Solution

To disable this feature go to

Stores > Configuration > Advance > Admin > Security

and

change value of Admin Account Sharing to Yes.

OTHER TIPS

Follow below attached images screenshot to enable admin account sharing options from Magento admin panel. Either way you can go to Magento 2 admin>

Store>> Settings>> Configuration >> Advanced >> Admin >> Security and change ADMIN ACCOUNT SHARING Options to YES

enter image description here

Also, you can fire direct SQL query in Database as follows:

update `core_config_data` SET value = 1 where `path` = 'admin_account_sharing' and `scope` = "default"

If you prefer to run commands instead of going to admin panel or changing in database:

php bin/magento config:set admin/security/admin_account_sharing 1
Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top