Problems with Load Balancer and port 636 LDAPS
I'm trying to install OracleAS Infrastructure using an Active-Active Topology.
I installed Metadata Repository, OID and I'm now trying to install SSO and DAS.
I have a ServerIron 400 Router Load Balancer that is balancing perfectly the 389 LDAP port.
ldapsearch -h <server> -p 389 -b <base> -D "cn=user" -w <password> "objectclass=*"
It Works!
ldapsearch -h <load balancer> -p 389 -b <base> -D "cn=user" -w <password> "objectclass=*"
It Works!
But it's having problems balancing the 636 LDAPS port. If I do an ldapsearch directly to the OID server like this:
ldapsearch -h <server> -p 636 -b <base> -D "cn=user" -w <password> -U 1 "objectclass=*"
It Works!
If I do it using the Load Balancer it stalls.
ldapsearch -h <load balancer> -p 636 -b <base> -D "cn=user" -w <password> -U 1 "objectclass=*"
It Stalls!
I have an OpenLDAP working on 636 with a security certificate. My Load Balancer can balance that port with no problems. Because OID is not using a security certificate I need to know if there is something I have to configure on my load balancer.