LDAP certificate was expired. Fixed this issue after renewing it using the below commands, thanks for your reply Mobarak Hosen Shakil.
export PASS=test
/usr/bin/openssl genrsa -des3 -out /etc/certs/openldap.key.orig -passout pass:$PASS 2048
/usr/bin/openssl rsa -in /etc/certs/openldap.key.orig -passin pass:$PASS -out /etc/certs/openldap.key
/usr/bin/openssl req -new -key /etc/certs/openldap.key -out /etc/certs/openldap.csr -subj /C=US/ST=LR/L=ArC/O=Gluu/CN=localhost/emailAddress=admin@goodgrid.com
/usr/bin/openssl x509 -req -days 1365 -in /etc/certs/openldap.csr -signkey /etc/certs/openldap.key -out /etc/certs/openldap.crt
/bin/chown ldap:ldap /etc/certs/openldap.key /etc/certs/openldap.crt
/bin/chmod 440 /etc/certs/openldap.key /etc/certs/openldap.crt
/opt/jre/bin/keytool -delete -alias mydomain.com_openldap -keystore /opt/jre/jre/lib/security/cacerts -storepass changeit -noprompt
/opt/jre/bin/keytool -import -trustcacerts -alias mydomain.com_openldap -file /etc/certs/openldap.crt -keystore /opt/jre/jre/lib/security/cacerts -storepass changeit -noprompt
/usr/bin/openssl pkcs12 -export -inkey /etc/certs/openldap.key -in /etc/certs/openldap.crt -out /etc/certs/openldap.pkcs12 -name mydomain.com -passout pass:$PASS
/bin/chown jetty:jetty /etc/certs/openldap.pkcs12
/bin/chmod 440 /etc/certs/openldap.pkcs12
cat /etc/certs/openldap.crt /etc/certs/openldap.key > openldap.pem
/bin/chown ldap:ldap /etc/certs/openldap.pem
/bin/chmod 440 /etc/certs/openldap.pem
/opt/gluu/bin/encode.py $PASS
GiTR2gm2MPA=
update ssl details in below file
/etc/gluu/conf/ox-ldap.properties
service solserver restart && service oxauth restart && service identity restart