How to Keep Multiple Logged in Session Open edX
To keep multiple logged in session, you need to deactivate prevent concurrent logins per user feature, follow the steps below:
-
Go to Open edX server console.
-
Open and edit file
/edx/app/edxapp/lms.env.json
and/edx/app/edxapp/cms.env.json
. -
Then find the
"FEATURES"
configuration, add PREVENT_CONCURRENT_LOGINS into"FEATURES"
array and set to false. See the following codes snippet:... FEATURES: PREVENT_CONCURRENT_LOGINS: false ...
-
Restart LMS services.