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
1 answer

Create user in OpenDJ via REST

I am trying to build a request to create a new user in OpenDJ via REST API. According to the documentation, I need to create a new resource. The given example is fairly easy and it will create a user named "newuser" with the given field: $ curl \ …
Manu
  • 4,019
  • 8
  • 50
  • 94
0
votes
1 answer

ForgeRock OpenIDM sync for custom user object

I created a custom user object in ForgeRock openIDM. While creating user in openIDM it is synced in openDJ. But user data is not getting synced when I do update. When I remove the mappings for openIDM and openDJ and create new mappings, sync works…
Bob
  • 1
  • 1
0
votes
1 answer

OpenDJ dbcache implementation - where is it located in RAM?

I'm trying to understand how memory allocation for dbcache is being handled by OpenDJ in tandem with java vm. There is a couple of things I couldn't get completely, though. As mentioned here, it's possible to allocate some predefined amount of RAM…
Taipen
  • 13
  • 4
0
votes
1 answer

Using SMTPS or SMTP with STARTTLS with OpenDJ for sending notifications

Is it possible to use SMTP over TLS or SMTP with STARTTLS in OpenDJ settings for sending alert notifications. I was able to find a config to specify SMTP config as global configuration with --set smtp-server:smtp.example.com:port but was not able to…
Sunil Kumar
  • 1,631
  • 2
  • 19
  • 33
0
votes
1 answer

pwdChangedTime which is not allowed by any of the objectclasses defined in that entry in OpenDj LDAP

I installed a new LDAP server (OpenDJ 2.4.6). I am trying to enable the replication with reference of existing server. But I am getting the below issue. I ran the replication command, existing server (1st server). Can you please help/suggest on…
Madhu
  • 1
  • 2
0
votes
4 answers

Retrieve picture from OpenDJ ldap via Java

I have added a picture to a user through the OpenDJ Control Panel, but I can't seem to retrieve that picture so I can show it on a webpage. I have found two attributes thumbnailPicture and photo and tried accessing it the following…
Noosrep
  • 416
  • 10
  • 24
0
votes
1 answer

OpenDJ REST returns the same date in two different ways

Organization class has a creation date and my custom fields validFrom and validTo date. The dates should be the same format, but the result looks like this ... "validFrom" : "201502050000+0100", "created" : "2015-02-13T09:58:24Z" ... validFrom is…
Matej
  • 11
  • 4
0
votes
2 answers

Openam and OpenDJ Integration issue: authorization failure

I am using openam12 and opendj2.6 version to configure single sign on. While trying to make openam12 and opendj2.6 communicate I am getting the following exception: [error] handleException: java.lang.RuntimeException: Error occurred invoking public…
0
votes
2 answers

OpenDJ REST no results when comparing to date

REST wont return no results when comparing date: /groups@org?_queryFilter=(validFrom+ge+"201508280000")&_prettyPrint=true or /groups@org?_queryFilter=(validFrom+le+"201508280000")&_prettyPrint=true result: { "result" : [ ], "resultCount" : 0, …
Matej
  • 11
  • 4
0
votes
1 answer

Opendj HostName changes

We are using OpenDj 2.4.6 Version. We are going to changes the host name in PRODUCTION environment, which is in Replication Environment. How will we change the host names? Where will we need to make the required change(s)? Please be helpful by…
Madhu
  • 1
  • 2
0
votes
1 answer

Failed to create index in OpenDJ 2.6.0

When I creating the indexes according to the instructions in OpenDJ 2.6.0. I encounter the following errors $/opt/opendj/bin/dsconfig create-local-db-index --hostname 127.0.0.1 --port 4444 --bindDN "cn=Directory Manager" --bindPassword 123…
Mr.Wang from Next Door
  • 13,670
  • 12
  • 64
  • 97
0
votes
1 answer

OpenAM redirects to Default IDP URL when user is not found as SP

Setup: My web application has OpenAM + OpenDJ interacting with a federation server in order provide SSO service through SAML2. The list of users who are authorised to access my application are part of the OpenDJ. How it works- When the user…
Aravind
  • 311
  • 3
  • 14
0
votes
1 answer

Unable to enable replication

I want to configure a multi-master replication between two instances of Opendj on two different machine: the first is on localhost, the second is on virtualbox. I have Opendj installed on both machines. I can't enable replication because I don't…
MdC
  • 107
  • 1
  • 4
  • 16
0
votes
2 answers

Cannot Uninstall OpenDJ

I am trying to install OpenDJ 2.6.0 in a "Windows Server 2008 Standard Without Hyper-V" environment. It threw an error during installation when I tried to import an ldif file, but the install did finish. The Windows Service was not created, so I'm…
The Cline
  • 171
  • 3
  • 9
0
votes
1 answer

Removing objectsClasses and attributeTypes from ldap using ObjectID only

I have been trying to remove objectsClasses, and attributeTypes from a local openDJ instance via a script. The goal is to create a set of scripts to destroy and then recreate the server, so that when changes occur each developer/instance can simply…