Hello,
i have close to the same issue with docker installation on a single machine.
in oxauth logs i have:
```
File "/app/scripts/entrypoint.py", line 128, in <module>
main()
File "/app/scripts/entrypoint.py", line 90, in main
get_server_certificate(manager.config.get("hostname"), 443, "/etc/certs/gluu_https.crt")
File "/src/pygluu-containerlib/pygluu/containerlib/utils.py", line 149, in get_server_certificate
sock = context.wrap_socket(conn, server_hostname=server_hostname)
File "/usr/lib/python2.7/ssl.py", line 369, in wrap_socket
_context=self)
File "/usr/lib/python2.7/ssl.py", line 599, in __init__
self.do_handshake()
File "/usr/lib/python2.7/ssl.py", line 828, in do_handshake
self._sslobj.do_handshake()
```
I'm trying to deal with 4.1.0_dev
I did adjust pygluu setting with:
```
settings = {
"HOST_IP": "10.100.200.197",
"DOMAIN": "gluu.try.io",
"ADMIN_PW": "gluupw,
"LDAP_PW": "",
"EMAIL": "gluu@try.io",
"ORG_NAME": "try",
"COUNTRY_CODE": "us",
"STATE": "ww",
"CITY": "w",
"SVC_LDAP": False,
"SVC_OXAUTH": True,
"SVC_OXTRUST": True,
"SVC_OXPASSPORT": True,
"SVC_OXSHIBBOLETH": True,
"SVC_CR_ROTATE": False,
"SVC_KEY_ROTATION": False,
"SVC_OXD_SERVER": True,
"SVC_RADIUS": False,
"SVC_REDIS": False,
"SVC_VAULT_AUTOUNSEAL": True,
"SVC_CASA": True,
"PERSISTENCE_TYPE": "couchbase",
"PERSISTENCE_LDAP_MAPPING": "default",
"PERSISTENCE_VERSION": "4.1.0_dev",
"CONFIG_INIT_VERSION": "4.1.0_dev",
"COUCHBASE_USER": "gluu",
"COUCHBASE_URL": "10.200.220.30,10.200.220.31,10.200.220.32",
"OXTRUST_API_ENABLED": True,
"OXTRUST_API_TEST_MODE": False,
"PASSPORT_ENABLED": True,
"CASA_ENABLED": True,
"RADIUS_ENABLED": False,
"SAML_ENABLED": True,
"SCIM_ENABLED": True,
"SCIM_TEST_MODE": False,
"ENABLE_OVERRIDE": True,
"PERSISTENCE_SKIP_EXISTING": True
}
```