Disable Public Registration in Open edX
To disable public registration in Open edX, follow the steps below:
-
Go to Open edX server console.
-
Open and edit LMS and CMS configuration (lms.env.json and cms.env.json).
-
Then find the
"FEATURES"
configuration, add ALLOW_PUBLIC_ACCOUNT_CREATION into"FEATURES"
array and set to false. See the following codes snippet:
"FEATURES": {
...
"ALLOW_PUBLIC_ACCOUNT_CREATION": false,
...
},
- Restart LMS services.