By: Florian Wörister user 06 Aug 2020 at 7:49 a.m. CDT

2 Responses
Florian Wörister gravatar
Hi, I'm currently trying to deploy Gluu Server using Docker with Shibboleth IdP enabled but once i open the administration UI i'm missing the "SAML" menu item. I also tried to follow the instructions for Debian. In this case the SAML menu point was displayed. Am i missing out on something? #### Expected Behavior * SAML menu item is available in the administration UI when Shibboleth IdP is enabled #### Actual Behavior * SAML menu item is not visible in the administration UI #### Steps to Reproduce * I followed the steps in https://gluu.org/docs/gluu-server/4.1/installation-guide/install-docker/ * I added following line to my settings.py file before starting `./pygluu-compose.pyz up`: `SVC_OXSHIBBOLETH=True` kind regards, Florian

By Isman Firmansyah staff 07 Aug 2020 at 12:53 p.m. CDT

Isman Firmansyah gravatar
Hi Florian, Adding `SVC_OXSHIBBOLETH=True` in `settings.py` will mark the installer to deploy `oxshibboleth` container/service, not displaying the sub menu in administration UI. There are 2 ways to activate SAML sub menu in UI: 1. Add `SAML_ENABLED=True` in `setttings.py` (this will only work in fresh installation) 2. Activate the menu in `Configuration > Organization Configuration > SAML Support` checkbox from administration UI.

By Florian Wörister user 08 Aug 2020 at 5:45 a.m. CDT

Florian Wörister gravatar
thank you for your fast reply :) this resolved my issue!