Hello everyone, I also can't figure out LDAP connection
following this article https://gluu.org/docs/ce/operation/faq/
I fetch file
```
/opt/gluu-server-3.1.3/etc/gluu/conf/ox-ldap.properties
```
there I see
```
bindDN: cn=directory manager
bindPassword: UkhctNHR558kUTbxbi+JCg==
servers: localhost:1636
useSSL: true
ssl.trustStoreFile: /etc/certs/opendj.pkcs12
ssl.trustStorePin: Gcu5erIAynXN5Xkk97GJYg==
ssl.trustStoreFormat: pkcs12
```
test server pass, so no worries
I go to
[#connect-an-external-ldap-browser](https://gluu.org/docs/ce/operation/faq/#connect-an-external-ldap-browser)
I forward port 1636 and can't connect JXplorer, I tried different connection options.
then I go to the [#adding-admin-users](https://gluu.org/docs/ce/operation/faq/#adding-admin-users) section, because it has plain commands that can potentially work easier.
I execute
```
# service gluu-server-3.1.3 login
```
as put in the article , which brings me to the desired chroot.
I copy LDAP search command from the article, with password changed
```
# /opt/opendj/bin/ldapsearch -p 1636 -Z -X -D 'cn=directory manager,o=gluu' -w 'UkhctNHR558kUTbxbi+JCg==' -b o=gluu gluuGroupType=gluuManagerGroup 1.1
Result Code: 49 (Invalid Credentials)
```
I try the bindDN from the properties file:
``` # /opt/opendj/bin/ldapsearch -p 1636 -Z -X -D 'cn=directory manager' -w 'UkhctNHR558kUTbxbi+JCg==' -b o=gluu gluuGroupType=gluuManagerGroup 1.1
Result Code: 49 (Invalid Credentials)
```
Now I'm out of ideas =( How do I actually connect?