Ok, I'm not perfectly sure where we are now.
First,
>Then browsed to the LDAP Properties file and grabbed the ldap bind password.
I suppose you mean one of the files under `/opt/tomcat/conf`, perhaps `ox-ldap.properties`, correct? The string you can fetch from it IS ldap password, indeed, but you can't use it as it is, it's encrypted (to meet certain security requirements). Like, it may look like this: `k+HugP72Gdz+4JYQuRmqJQ==`
To decrypt it, you must run this command (in the container):
```
# /opt/gluu/bin/encode.py -d k+HugP72Gdz+4JYQuRmqJQ==
```
...it will give you ldap password in cleartext
Now, I'm not sure what do you mean by that:
>I got into the Console , changed the LDAP authentication settings to GLUU LDAP (default settings ) and used the password from this file , but it still doesn't connect.
What "console" it was, web UI? Or linux command prompt?