February 18, 2022

How to Keep Multiple Logged in Session Open edX

Activities, Android Developer, Ansible, Apache2, Atlassian, Ayo Belajar Linux, Bestpath Network, BLC Telkom Klaten, BSD, Caddy Server, Case Study, Cisco, Cisco Indonesia, Cloud Computing, Cockpit, Custom Weapons, Docker, E-Learning, Engenius, Error, FreeBSD, FreeBSD Indonesia, Komunitas Pengguna Linux Indonesia, KPLI Bulukumba, KPLI Klaten, Lets Encrypt, Linux, MacOS, Microsoft Azure, Microsoft SQL Server, MikroTik, MikroTik Indonesia, MySQL, Nginx, Open edX, OpenSID, Others, PHP, phpMyAdmin, PostgreSQL, Proxmox, Python, Redash, Sendy, SSH, Stories, Subnetting, TP-Link, Ubiquiti, Unix, Virtualization, Windows, X-Mosque, Faizar Septiawan, Icar, siBunglonGanteng, Orang Ganteng, siBunglonLabs, Programmer, SysAdmin, Site Reliability Engineer, Developer, Palugada, Makassar, Ganteng, Gila, Cyclist, Panglima, Setan, Panglima Setan, sibunglon, Ganteng

To keep multiple logged in session, you need to deactivate prevent concurrent logins per user feature, follow the steps below:

  1. Go to Open edX server console.

  2. Open and edit file /edx/app/edxapp/lms.env.json and /edx/app/edxapp/cms.env.json.

  3. 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
    ...
    
  4. Restart LMS services.