Have you tried connecting through the CLI?
ldapsearch -x -D "cn=admin,dc=home,dc=local" -W -h <hostname>
Check your syslog, slapd logs its output there by default.
You can also use slapcat, which must be run locally to find out if your database was created or not (slapd will break, if not). It will display the first available database. Use the -n flag to extract a specific database:
slapcat -n <database number>
My bets are that you are authenticating the wrong database.
source share