-
JnRouvignac replied to the topic Assured replication in DS 6.5 in the forum Directory Services 2 years, 4 months ago
Hello,
It has been removed in 6.0: https://backstage.forgerock.com/docs/ds/6/release-notes/
More details here: https://bugster.forgerock.org/jira/browse/OPENDJ-5365Cheers,
Jean-Noel -
JnRouvignac replied to the topic Set up replication with only 2 servers in the forum Directory Services 2 years, 6 months ago
Yes, it’s possible and easy to do. This is a standard setup that we use a lot during development.
-
JnRouvignac replied to the topic how to change string datatype to json datatype in DS in the forum Directory Services 2 years, 11 months ago
Hello,
1.3.6.1.4.1.1466.115.121.1.5
is binary syntax, i.e. not what you want.
Json syntax is only implemented since 4.0 if I remember correctly. The OID is1.3.6.1.4.1.36733.2.1.3.1
.Are the current data using a valid JSON format?
In that case it is possible to change the schema without problem. Note that you may also have to change the…[Read more]
-
JnRouvignac replied to the topic DJ/DS replication topology in the forum Directory Services 3 years ago
Hello,
You should have a look at the replication chapter in the administration guide:
- https://backstage.forgerock.com/docs/ds/6.5/admin-guide/#chap-replication
- https://backstage.forgerock.com/docs/ds/6.5/admin-guide/#repl-dedicated-servers
TL;DR:
Replication servers are fully meshed ; at any moment, Directory Servers are connected to a…[Read more] -
JnRouvignac replied to the topic Cannot update software statement in openbanking directory in the forum Directory Services 3 years ago
Hello,
Note that the current forum is for directory services, i.e. the LDAP product :)
It is not for OpenBanking Directory.Although I highly sympathize with you: 1) the naming is ambiguous and 2) there is no forum for OpenBanking.
I have let the relevant people know about your question in our internal communication tool.Cheers,
Jean-Noel -
JnRouvignac replied to the topic DS 6.5 Integration with OpenAM in the forum Directory Services 3 years, 2 months ago
Hi,
This looks like an AM configuration question.
Better to ask on the OpenAM forum: https://forum.forgerock.com/forum/fr-projects/openam/Cheers,
Jean-Noel -
JnRouvignac replied to the topic OpenDJ 6.0 – JMX Monitoring in the forum Directory Services 3 years, 4 months ago
Have a look at https://backstage.forgerock.com/docs/ds/6/admin-guide/index.html#setup-admin-endpoint
I think you have already setup the
monitor-read
privileges, so all you need to do now is to authenticate using the appropriate authentication mechanism (HTTP Basic Auth by default). -
JnRouvignac replied to the topic OpenDJ 6.0 – JMX Monitoring in the forum Directory Services 3 years, 4 months ago
By the way, I can see that datadog has support for prometheus exposition format of metrics:
https://www.datadoghq.com/blog/monitor-prometheus-metrics/If you have the possibility, I would strongly advise you to consider using this instead of JMX. Granted, it does not support string metrics, but that’s the only downside. For all the rest, JMX is a…[Read more]
-
JnRouvignac replied to the topic OpenDJ 6.0 – JMX Monitoring in the forum Directory Services 3 years, 4 months ago
Aw no that’s my fault.
I should not have linked to early access docs when final docs exist.
Here is the same content in existing final docs:
– https://backstage.forgerock.com/docs/ds/6/reference/#monitoring-metrics-ldap
– https://backstage.forgerock.com/docs/ds/6/reference/#monitoring-types -
JnRouvignac replied to the topic OpenDJ 6.0 – JMX Monitoring in the forum Directory Services 3 years, 4 months ago
Hello,
According to your output, there are only booleans and Strings appearing.
It means everything else is not showing up including LDAP integers. They are currently mapped tojava.lang.BigInteger
.
It looks like the Datadog agent only understands java primitive types + String type.
In the past I have been looking at best practices for the “type”…[Read more] -
JnRouvignac replied to the topic DS 6.5 and setup-profile in the forum Directory Services 3 years, 4 months ago
Hello,
You have hit https://bugster.forgerock.org/jira/browse/OPENDJ-5727.
Please liaise with support to see if a patch can be delivered to you.Cheers,
Jean-Noel -
JnRouvignac replied to the topic OpenDJ 3.5.3 Json attribute in the forum Directory Services 3 years, 8 months ago
Hello,
999-user.ldif
should not have the same schema definitions as any other schema files. Probably02-config.ldif
?Cheers,
Jean-Noel -
JnRouvignac replied to the topic Renew cert in the forum Directory Services 3 years, 8 months ago
Hello,
A quick google search returns a lot of interesting results.
I’d suggest you try it.See the following:
– https://forum.forgerock.com/topic/renew-ssl-certificate-opendj/
– https://backstage.forgerock.com/docs/ds/6/admin-guide/#chap-change-certs
– https://marginnotes2.wordpress.com/2013/02/13/opendj-changing-server-certificates/Cheers,
Jean-Noel -
JnRouvignac replied to the topic Block administrative connector 4444 for clients in the forum Directory Services 3 years, 11 months ago
Hi,
There is nothing specific to ForgeRock DS here: you need to correctly configure the machine’s firewall.
Cheers,
Jean-Noel -
JnRouvignac replied to the topic ldap equal filtrer search for an attribute with alpha numeric value failing in the forum Directory Services 4 years ago
I am not sure how you are seeing this behaviour?
What are you doing exactly?
Which version are you using? -
JnRouvignac replied to the topic ldap equal filtrer search for an attribute with alpha numeric value failing in the forum Directory Services 4 years ago
Same thing with the SDK:
@Test
public void testSDK() throws Exception {
org.forgerock.opendj.ldap.Entry e1 = org.forgerock.opendj.ldap.Entries.makeEntry(
“dn: ou=system,ou=test,dc=ent,dc=my,dc=com”,
“createdbyuser: rootAgent”,
“createdondate: 31-May-2018 15:58:31 IST”,…[Read more] -
JnRouvignac replied to the topic ldap equal filtrer search for an attribute with alpha numeric value failing in the forum Directory Services 4 years ago
Hello,
The following test works as you expect:
@Test
public void testServer() throws Exception {
Entry e1 = TestCaseUtils.makeEntry(
“dn: ou=system,ou=test,dc=ent,dc=my,dc=com”,
“createdbyuser: rootAgent”,
“createdondate: 31-May-2018 15:58:31 IST”,
“name: system1”,…[Read more] -
JnRouvignac replied to the topic ldap equal filtrer search for an attribute with alpha numeric value failing in the forum Directory Services 4 years ago
Hello,
The following test works as you expect:
`
@Test
public void test() throws Exception {
Entry e1 = TestCaseUtils.makeEntry(
“dn: ou=system,ou=test,dc=ent,dc=my,dc=com”,
“createdbyuser: rootAgent”,
“createdondate: 31-May-2018 15:58:31 IST”,
“name: system1”,…[Read more] -
JnRouvignac replied to the topic ldap equal filtrer search for an attribute with alpha numeric value failing in the forum Directory Services 4 years ago
Hello,
The following test works as you expect:
@Test
public void test() throws Exception {
Entry e1 = TestCaseUtils.makeEntry(
“dn: ou=system,ou=test,dc=ent,dc=my,dc=com”,
“createdbyuser: rootAgent”,
“createdondate: 31-May-2018 15:58:31 IST”,
“name: system1”,…[Read more] -
JnRouvignac replied to the topic ForgeRock Prometheus Monitoring on Kubernetes in the forum DevOps 4 years, 1 month ago
Oh and does http://idstacks.io/blog.html have an RSS or Atom feed to which I can subscribe?
- Load More