Questions tagged [opendj]

OpenDJ is an open source, LDAPv3 compliant directory service, built on the Java platform. It has support for LDAPv3, DSMLv2, multi-master replication, access controls, password policies, security and all features you can expect from a modern directory server. But most of all, it's easy to use and of very high performance. OpenDJ is the actively developed fork of the Sun initiated OpenDS project.

OpenDJ is an open source, LDAPv3 compliant directory service, built on the Java platform. It has support for LDAPv3, DSMLv2, multi-master replication, access controls, password policies, security and all features you can expect from a modern directory server. But most of all, it's easy to use and of very high performance. OpenDJ is the actively developed fork of the Sun initiated OpenDS project. For more information about OpenDJ, check https://forgerock.org/opendj/

206 questions
0
votes
2 answers

How to get old value in OpenDJ server?

I've already enabled changelog on a standalone OpenDJ server and have "cn=changelog" appeared as one of nodes. And my problem is, that after fetching data from "cn=changelog", attribute "changes" contains only new value of changed attribute, without…
banshee
  • 751
  • 5
  • 6
0
votes
1 answer

VLV search request: Unavailable Critical Extension: The search results cannot be sorted because the given search request is not indexed

First, it seems this isn't related to unindexed-search privilege.I try ROOT DN user, same problem. My Case: I have 5000 entries of user, each entry contains "xxx@XXX.com" in the "mail" attribute. And I have a VLV with sort order: +uid +cn +mail I…
0
votes
1 answer

opendj scheduled task to clean up historical data

I'd like to set up a scheduled task(or cron job) in OpenDJ to clean up some historical data (queried out from ldap filter). I'm wondering if it's possible to create a scheduled task in OpenDJ (rather than system level cron job) to perform such…
Feng Xi
  • 1,005
  • 2
  • 11
  • 30
0
votes
0 answers

control-panel not list iPlanetAMPolicyService - openam 13

I'm working on customize profile attributes as per this link. I did the ditto same as per that link but I'm not successful. Short description of what I have done Add below content in /root/openam/config/xml/amUser.xml under user…
Bilal Usean
  • 2,322
  • 3
  • 22
  • 45
0
votes
1 answer

Count of users in one group

Is it possible to get count of users in one group with opendj sdk? e.g. my group has multi-values UniqueMember attribute, but is it possible that I get the count of the UniqueMember? because I don't want to list all the users, just to get the…
0
votes
1 answer

https://bugster.forgerock.org/jira/browse/OPENDJ-3153 Fixed?

I create an admin user, add proxied-auth privilege, but got an error when try the PasswordModifyExtendedRequest with the OPENDJ SDK. Apparently this is an known issue https://bugster.forgerock.org/jira/browse/OPENDJ-3153. Is this fixed? or any other…
0
votes
1 answer

Not able to install OpenAm, throwing org.forgerock.opendj.ldap.ConstraintViolationException: Object Class Violation

I am using java 8 to run, but getting the following exception when trying out with default/custom mode of OpenAm installation in installation logs. The lower level exception message Object Class Violation: Entry…
Valath
  • 880
  • 3
  • 13
  • 35
0
votes
1 answer

listing base DNs using opendj Rest

Is it possible to list all base DNs in OpenDJ using REST? Ex: I have multiple backends, backend1: base DN1:dc=abc,dc=company,dc=com base DN2:dc=xyz,dc=company,dc=com backend2: base DN3: dc=zzz,dc=company,dc=com
Bharath
  • 1,787
  • 1
  • 20
  • 37
0
votes
1 answer

OpenDJ schema update and data update

What we are doing now is to modify(add/delete) ldap schema (OpenDJ) during runtime. For example, our APP can DO below during runtime: add a new attribute (ldap schema), say ns-gender. And add this new attribute into some person objectclass. Thus,…
Feng Xi
  • 1,005
  • 2
  • 11
  • 30
0
votes
1 answer

managing user data for multiple applications - opendj ldap

what is the best way to manage user data for multiple applications using opendj. is creating different backends with different baseDN a good option? ex: backend1 baseDN dc=app1,dc=abc,dc=company,dc=com backend2 baseDN…
Bharath
  • 1,787
  • 1
  • 20
  • 37
0
votes
1 answer

Java LDAP - unable to authenticate users

I facing a issue need to resolve this as soon as possible need your help. I have a very simple java program just for sample authentication of ldap user Issue -1 -: public static void main(String[] args) throws NamingException { final…
ravicandy1234
  • 156
  • 1
  • 2
  • 13
0
votes
1 answer

OpenDJ UID uniqueness per base dn?

Suppose I have two base dns, dc=tenant1 and dc=tenant2, when I enable uid uniqueness plugin(adds both these two base dns to property ds-cfg-base-dn and then I can not have a same user with uid=uid1,ou=People,dc=tenant1 and…
Feng Xi
  • 1,005
  • 2
  • 11
  • 30
0
votes
1 answer

opendj data replication for new base dn for multi-tenancy

For OpenDJ multi-tenancy, we usually have two options: 1. create a new base dn for a new tenant 2. create a new base dn (with a new backend) for a new tenant. The thing is for the dsreplication, suppose I have a opendj-srv-1, and opendj-srv-2 which…
Feng Xi
  • 1,005
  • 2
  • 11
  • 30
0
votes
1 answer

OpenDJ release/3.0.0 compile error

It's really odd that I downloaded the source code from Forgerock's stash repo to my linux local, but it always complain an compile error for the ant stuff . Below is the detailed error msg. Any idea why ? generateadmin: [exec] [exec]…
Feng Xi
  • 1,005
  • 2
  • 11
  • 30
0
votes
1 answer

OpenDJ verify user's password option?

I know simply a LDAP bind can do user password verification. But the thing is that an application server usually uses admin user (cn=Directory Manager) to do all CRUD operations. By a simple bind operation, we have to create a ldap connection binds…
Feng Xi
  • 1,005
  • 2
  • 11
  • 30