Questions tagged [apacheds]

ApacheDS is an extensible and embeddable directory server entirely written in Java

http://directory.apache.org/

ApacheDS is an extensible and embeddable directory server entirely written in Java, which has been certified LDAPv3 compatible by the Open Group. Besides LDAP it supports Kerberos 5 and the Change Password Protocol. It has been designed to introduce triggers, stored procedures, queues and views to the world of LDAP which has lacked these rich constructs.

231 questions
0
votes
1 answer

OpenLDAP client cannot connect to ApacheDS server using SSLv2?

I'm trying to connect to my Java application containing ApacheDS server with openLDAP client. Server is configured well, I've tested that using different clients (ldapbrowser, jxplorer). With openLDAP I'm able to connect to regular ldap port, but…
eewe
  • 11
  • 5
0
votes
1 answer

Can Schema Validation be turned off in ApacheDS

I need to import an LDIF file from a system that heavily customized their Schema. Is there a way for me to import the file without having to have knowledge of their custom schema? Any suggestions would be appreciated!
user2135970
  • 795
  • 2
  • 9
  • 22
0
votes
1 answer

Cannot Connect Syncope with Apache DS

I am facing an error while trying to add an apache DS backend to apache syncope. Environment Apache DS v 2.00-M20 Apache syncope v 1.2.4 OS Windows 7 64 bit I have followed the apache DS tutorial and have imported the ldif file I have…
windwaker
  • 315
  • 3
  • 12
0
votes
1 answer

Error while importing LDIF

Server: Apache DS 2.0 Client: Apache Directory Studio 2.0 The problem: I am running into error while importing a LDIF This one works http://pastebin.com/DKZ4fT0U This one does not http://pastebin.com/Z5NxUxX4 Error message: #!ERROR [LDAP: error…
RN.
  • 997
  • 4
  • 14
  • 31
0
votes
1 answer

Ldap bind in java using username instead of the DN

I am trying to make a LDAP connection. I am using apache directory api. I am using the following code: LdapConnection connection = new LdapNetworkConenction("serverAddress",port); connection.bind(DN,password); Here instead of the DN i want to use…
0
votes
1 answer

LDAP, pwdpolicy does not exist

I am new to LDAP, and I want to add password policy using the class pwdpolicy, but every time I get the error : ERR_04269 OBJECT_CLASS for OID pwdpolicy does not exist! Here is the how i try to add it: dn: cn=Default Password…
Kamill
  • 1
  • 2
0
votes
0 answers

How to imoprt ldif flle using jndi

I am developing an LDAP application, which access APATCHE DIRECTORY I am using JNDI for interacting with through java code. Now, i am trying to import information in the format of LDIF from apatcheds to client. how can i do
nina
  • 1
  • 1
0
votes
1 answer

Trouble using LDAP Content Synchronization Control / Sync Request Control

I'm trying to use the .net System.DirectoryServices.Protocols libraries to sync against an ApacheDS Ldap server using the LDAP Content Synchronization Control (RFC) so that only changes since the last sync are returned. My first search request, with…
Adam
  • 168
  • 5
0
votes
1 answer

How do I store and then check a hashed password in ApacheDS?

I'm trying to add users to an ApacheDS directory (I'm using the .NET DirectoryServices API) and I'm hitting an error when saving the entry to the directory. As far as I can see, the password is stored as a Salted SHA hash and in order to verify a…
Greg B
  • 14,597
  • 18
  • 87
  • 141
0
votes
1 answer

Can I enable SSL port for embedded LDAP in WSO2 identity server?

WSO2 identity server 5.0.0: I wasn't able to find an option in carbon.xml to configure the embedded LDAP port to use SSL. As we need to use ldaps instead of ldap when accessing the ldap remotely. Adding an additional port beside the clear text port…
Hos
  • 447
  • 4
  • 11
0
votes
1 answer

apacheds-2.0.0-M17 log file

tail -f /var/lib/apacheds-2.0.0-M17/default/log/apacheds.log nothing is coming out. Any idea's ?. Already done some modification in log4j.properties but still no luck. Thank you.
cha
  • 3
  • 2
0
votes
1 answer

Is Apache Directory Server 1.5.x stable enough to use for integration testing purposes

I have been trying to locate various dependencies and it seems that various classes have changed packages resulting in broken stuff. eg AbstractServerTest ffrom 1.5.5 doesnt work with all the jars from 1.5.7. I am wondering if its a good thing to…
mP.
  • 18,002
  • 10
  • 71
  • 105
0
votes
1 answer

Authenticating against LDAP with ApacheDS and PHP

I'm wondering how to authenticate against ApacheDS in PHP. I keep getting a "Invalid Credentials" when I try to log on as a user in a group. I can log in as "uid=admin,ou=system" just fine, but if I try "uid=,ou=consumers,ou=system", it returns…
Osmium USA
  • 1,751
  • 19
  • 37
0
votes
1 answer

Hadoop security using Apache DS / Apache Directory Studio

I am interested in Apache DS and Apache Directory Studio. Currently I am working in Hadoop and analysing ways to secure hadoop cluster; LDAP and Kerberos are parts of the above product; On analysis I have some questions, 1) Is it possible to make…
Dinesh Kumar P
  • 1,128
  • 2
  • 18
  • 32
0
votes
1 answer

Adding a new attribute to an Object Class and Expecting it to automatically show up in existing objects in Apache DS

I am working on a use case where I have to dynamically add a new attribute to an existing object class in Apache DS. 1)Here is some code which defines my object class:-- Attributes attrs = new BasicAttributes(true); …
Neha
  • 225
  • 1
  • 5
  • 12