My install is finished, and i try some configurations:
1- Studio Login via the LMS
Logging in to Studio is done by redirecting the user to the LMS to log in, and then redirecting back to Studio.
This can be disabled by site operators using the new DISABLE_STUDIO_SSO_OVER_LMS feature flag in lms.env.json.
/edx/app/edxapp/lms.env.json:
“FEATURES”: {
…
“DISABLE_STUDIO_SSO_OVER_LMS”: true,
…
}
/edx/app/edxapp/cms.env.json:
"FEATURES": {
...
"DISABLE_STUDIO_SSO_OVER_LMS": true,
...
}
i restart lms and cms:
/edx/bin/supervisorctl restart lms
/edx/bin/supervisorctl restart cms
But when i do this on juniper, it doesn’t works, still redirecting to lms for login.
2- Enabling Open edX Search
To enable Open edX Search, i use to do this:
/edx/app/edxapp/cms.env.json:
"FEATURES": {
...
"ENABLE_LIBRARY_INDEX": true,
"ENABLE_COURSEWARE_INDEX": true,
"SEARCH_ENGINE": "search.elastic.ElasticSearchEngine",
...
}
/edx/app/edxapp/lms.env.json:
“FEATURES”: {
…
“ENABLE_COURSE_DISCOVERY”: true,
“ENABLE_COURSEWARE_SEARCH”: true,
“ENABLE_DASHBOARD_SEARCH”: true,
“SEARCH_ENGINE”: “search.elastic.ElasticSearchEngine”,
…
}
i restart lms and cms:
/edx/bin/supervisorctl restart lms
/edx/bin/supervisorctl restart cms
But when i do this on juniper, it doesn’t works, the search bar do not appear on the page.
So i try your method, and also edit .yml files like this:
/edx/etc/studio.yml:
FEATURES:
....
ENABLE_COURSEWARE_SEARCH: true
ENABLE_LIBRARY_INDEX: true
SEARCH_ENGINE: search.elastic.ElasticSearchEngine
....
/edx/etc/lms.yml:
FEATURES:
....
ENABLE_COURSEWARE_SEARCH: true
ENABLE_LIBRARY_INDEX: true
SEARCH_ENGINE: search.elastic.ElasticSearchEngine
ENABLE_COURSE_DISCOVERY: true
....
i restart lms and cms:
/edx/bin/supervisorctl restart lms
/edx/bin/supervisorctl restart cms
And now i got an error:
# Uh oh, we are having some server issues…server error
but nothing in the log files
@nedbat @Cory_Lee Need ya help please, i’ve a deployment on pending, need you ta save this