could you try to establish the ip where slapd
listen
you can with
/usr/local/libexec/slapd -h ldap://0.0.0.0:389 -- slapd
listen any request to this host at 389 port
if you do :
/usr/local/bin/ldapadd -h
localhost -p 389 -d 255 -D "o=stixen.co.uk,c=uk " -x -w secret -f
/home/shreedhar/ldap/Test2.ldif
it would run ok!!
if you have several slapd on the
same machine
/usr/local/libexec/slapd -h ldap://ip1:389
/usr/local/libexec/slapd -h ldap://ip2:389
if you want the same
port or
/usr/local/libexec/slapd -h ldap://0.0.0.0:389
/usr/local/libexec/slapd -h ldap://0.0.0.0:390
to diferent port and the
same ip
|