From 606da17e1940e36c5dc33c6fd3cd70ad2c017121 Mon Sep 17 00:00:00 2001 From: Jan Marcek Date: Thu, 26 Feb 2015 13:13:28 +0100 Subject: [PATCH 01/30] bugfix: midPoint Distribution - set correct dependency com.evolveum.midpoint.infra.prism and com.evolveum.midpoint.infra.schema to 3.2-SNAPSHOT --- dist/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/pom.xml b/dist/pom.xml index 0fdb9dffe30..94cab7d2acf 100644 --- a/dist/pom.xml +++ b/dist/pom.xml @@ -85,14 +85,14 @@ com.evolveum.midpoint.infra prism - 3.1-SNAPSHOT + 3.2-SNAPSHOT jar META-INF/catalog-runtime.xml com.evolveum.midpoint.infra schema - 3.1-SNAPSHOT + 3.2-SNAPSHOT jar META-INF/jax-ws-catalog.xml From a792b9363b9ae7f18451224a98c1d41438b5901e Mon Sep 17 00:00:00 2001 From: Erik Suta Date: Fri, 27 Feb 2015 14:34:39 +0100 Subject: [PATCH 02/30] MID-2235 fix. --- .../web/component/ObjectPolicyConfigurationEditor.java | 6 +++--- .../midpoint/web/component/form/DropDownFormGroup.java | 7 +------ .../web/component/form/DropDownFormGroup.properties | 4 +--- 3 files changed, 5 insertions(+), 12 deletions(-) diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/ObjectPolicyConfigurationEditor.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/ObjectPolicyConfigurationEditor.java index 4b545a34f59..949434d813a 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/ObjectPolicyConfigurationEditor.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/ObjectPolicyConfigurationEditor.java @@ -59,7 +59,7 @@ public class ObjectPolicyConfigurationEditor extends SimplePanel> choices, ICho boolean required) { DropDownChoice choice = new DropDownChoice(id, getModel(), choices, renderer){ - @Override - protected CharSequence getDefaultChoice(String selectedValue) { - return getString("DropDownChoicePanel.notDefined"); - } - @Override protected String getNullValidDisplayValue() { - return getString("DropDownChoicePanel.notDefined"); + return getString("DropDownChoicePanel.empty"); } }; choice.setNullValid(!required); diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/form/DropDownFormGroup.properties b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/form/DropDownFormGroup.properties index b17e0725cb0..cae4e5f4961 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/form/DropDownFormGroup.properties +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/form/DropDownFormGroup.properties @@ -14,6 +14,4 @@ # limitations under the License. # -DropDownChoicePanel.notDefined=Undefined -nullValid=Choose one -select.null=Choose one \ No newline at end of file +DropDownChoicePanel.empty=Choose one From af8a252d1ca1ea6ce795e6608808e92a85c7505a Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Fri, 27 Feb 2015 15:13:01 +0100 Subject: [PATCH 03/30] Exposing evaluated assignments and roles through previewChanges (MID-1815) --- .../evolveum/midpoint/prism/PrismObject.java | 6 ++ .../midpoint/prism/delta/DeltaSetTriple.java | 14 ++- .../midpoint/prism/util/PrismAsserts.java | 12 ++- .../api/context/EvaluatedAbstractRole.java | 30 ++++++ .../api/context/EvaluatedAssignment.java | 24 +++++ .../model/api/context/ModelContext.java | 5 +- .../impl/controller/ModelController.java | 13 ++- .../model/impl/lens/AssignmentEvaluator.java | 19 ++-- .../midpoint/model/impl/lens/Clockwork.java | 7 +- .../impl/lens/EvaluatedAbstractRoleImpl.java | 55 +++++++++++ ...ment.java => EvaluatedAssignmentImpl.java} | 40 +++++++- .../midpoint/model/impl/lens/LensContext.java | 6 +- .../lens/projector/AssignmentProcessor.java | 93 ++++++++++--------- .../impl/security/UserProfileServiceImpl.java | 2 +- .../impl/lens/TestAssignmentEvaluator.java | 24 ++--- .../midpoint/model/intest/TestRbac.java | 50 ++++++++++ .../src/test/resources/logback-test.xml | 10 +- 17 files changed, 319 insertions(+), 91 deletions(-) create mode 100644 model/model-api/src/main/java/com/evolveum/midpoint/model/api/context/EvaluatedAbstractRole.java create mode 100644 model/model-api/src/main/java/com/evolveum/midpoint/model/api/context/EvaluatedAssignment.java create mode 100644 model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/EvaluatedAbstractRoleImpl.java rename model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/{EvaluatedAssignment.java => EvaluatedAssignmentImpl.java} (87%) diff --git a/infra/prism/src/main/java/com/evolveum/midpoint/prism/PrismObject.java b/infra/prism/src/main/java/com/evolveum/midpoint/prism/PrismObject.java index a77b82f474d..20a3777f602 100644 --- a/infra/prism/src/main/java/com/evolveum/midpoint/prism/PrismObject.java +++ b/infra/prism/src/main/java/com/evolveum/midpoint/prism/PrismObject.java @@ -236,6 +236,12 @@ public ObjectDelta createAddDelta() { delta.setObjectToAdd(this); return delta; } + + public ObjectDelta createModifyDelta() { + ObjectDelta delta = createDelta(ChangeType.MODIFY); + delta.setOid(this.getOid()); + return delta; + } public ObjectDelta createDeleteDelta() { ObjectDelta delta = createDelta(ChangeType.DELETE); diff --git a/infra/prism/src/main/java/com/evolveum/midpoint/prism/delta/DeltaSetTriple.java b/infra/prism/src/main/java/com/evolveum/midpoint/prism/delta/DeltaSetTriple.java index 6560c98ef6d..9a6615cc46b 100644 --- a/infra/prism/src/main/java/com/evolveum/midpoint/prism/delta/DeltaSetTriple.java +++ b/infra/prism/src/main/java/com/evolveum/midpoint/prism/delta/DeltaSetTriple.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010-2014 Evolveum + * Copyright (c) 2010-2015 Evolveum * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -183,6 +183,18 @@ public void addAllToSet(PlusMinusZero destination, Collection items) { } } + public void addToSet(PlusMinusZero destination, T item) { + if (destination == null) { + return; + } else if (destination == PlusMinusZero.PLUS) { + addToSet(plusSet, item); + } else if (destination == PlusMinusZero.MINUS) { + addToSet(minusSet, item); + } else if (destination == PlusMinusZero.ZERO) { + addToSet(zeroSet, item); + } + } + private void addAllToSet(Collection set, Collection items) { if (items == null) { return; diff --git a/infra/prism/src/main/java/com/evolveum/midpoint/prism/util/PrismAsserts.java b/infra/prism/src/main/java/com/evolveum/midpoint/prism/util/PrismAsserts.java index d3380896ff5..9d510aa853c 100644 --- a/infra/prism/src/main/java/com/evolveum/midpoint/prism/util/PrismAsserts.java +++ b/infra/prism/src/main/java/com/evolveum/midpoint/prism/util/PrismAsserts.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010-2014 Evolveum + * Copyright (c) 2010-2015 Evolveum * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -30,6 +30,7 @@ import com.evolveum.midpoint.prism.path.ItemPathSegment; import com.evolveum.midpoint.prism.path.NameItemPathSegment; + import org.w3c.dom.Element; import org.w3c.dom.Node; @@ -54,6 +55,7 @@ import com.evolveum.midpoint.prism.Visitor; import com.evolveum.midpoint.prism.delta.ChangeType; import com.evolveum.midpoint.prism.delta.ContainerDelta; +import com.evolveum.midpoint.prism.delta.DeltaSetTriple; import com.evolveum.midpoint.prism.delta.ItemDelta; import com.evolveum.midpoint.prism.delta.PrismValueDeltaSetTriple; import com.evolveum.midpoint.prism.delta.ObjectDelta; @@ -542,22 +544,22 @@ public static void assertTripleSet(String setName, Col } } - public static void assertTripleNoPlus(PrismValueDeltaSetTriple triple) { + public static void assertTripleNoPlus(DeltaSetTriple triple) { assert triple != null : "triple is null"; assertTripleNoSet("plus set", triple.getPlusSet()); } - public static void assertTripleNoZero(PrismValueDeltaSetTriple triple) { + public static void assertTripleNoZero(DeltaSetTriple triple) { assert triple != null : "triple is null"; assertTripleNoSet("zero set", triple.getZeroSet()); } - public static void assertTripleNoMinus(PrismValueDeltaSetTriple triple) { + public static void assertTripleNoMinus(DeltaSetTriple triple) { assert triple != null : "triple is null"; assertTripleNoSet("minus set", triple.getMinusSet()); } - public static void assertTripleNoSet(String setName, Collection set) { + public static void assertTripleNoSet(String setName, Collection set) { assert set == null || set.isEmpty() : "Expected triple "+setName+" to be empty, but it was: "+set; } diff --git a/model/model-api/src/main/java/com/evolveum/midpoint/model/api/context/EvaluatedAbstractRole.java b/model/model-api/src/main/java/com/evolveum/midpoint/model/api/context/EvaluatedAbstractRole.java new file mode 100644 index 00000000000..3e85f3a2b31 --- /dev/null +++ b/model/model-api/src/main/java/com/evolveum/midpoint/model/api/context/EvaluatedAbstractRole.java @@ -0,0 +1,30 @@ +/** + * Copyright (c) 2015 Evolveum + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.evolveum.midpoint.model.api.context; + +import com.evolveum.midpoint.prism.PrismObject; +import com.evolveum.midpoint.util.DebugDumpable; +import com.evolveum.midpoint.xml.ns._public.common.common_3.AbstractRoleType; + +/** + * @author semancik + * + */ +public interface EvaluatedAbstractRole extends DebugDumpable { + + PrismObject getRole(); + +} diff --git a/model/model-api/src/main/java/com/evolveum/midpoint/model/api/context/EvaluatedAssignment.java b/model/model-api/src/main/java/com/evolveum/midpoint/model/api/context/EvaluatedAssignment.java new file mode 100644 index 00000000000..70c84383014 --- /dev/null +++ b/model/model-api/src/main/java/com/evolveum/midpoint/model/api/context/EvaluatedAssignment.java @@ -0,0 +1,24 @@ +package com.evolveum.midpoint.model.api.context; + +import java.util.Collection; + +import com.evolveum.midpoint.prism.PrismObject; +import com.evolveum.midpoint.prism.delta.DeltaSetTriple; +import com.evolveum.midpoint.security.api.Authorization; +import com.evolveum.midpoint.util.DebugDumpable; +import com.evolveum.midpoint.xml.ns._public.common.common_3.AssignmentType; +import com.evolveum.midpoint.xml.ns._public.common.common_3.FocusType; + +public interface EvaluatedAssignment extends DebugDumpable { + + AssignmentType getAssignmentType(); + + Collection getAuthorizations(); + + DeltaSetTriple getRoles(); + + PrismObject getTarget(); + + boolean isValid(); + +} \ No newline at end of file diff --git a/model/model-api/src/main/java/com/evolveum/midpoint/model/api/context/ModelContext.java b/model/model-api/src/main/java/com/evolveum/midpoint/model/api/context/ModelContext.java index 4281eaed521..ae0146a9a8c 100644 --- a/model/model-api/src/main/java/com/evolveum/midpoint/model/api/context/ModelContext.java +++ b/model/model-api/src/main/java/com/evolveum/midpoint/model/api/context/ModelContext.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010-2014 Evolveum + * Copyright (c) 2010-2015 Evolveum * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,6 +21,7 @@ import com.evolveum.midpoint.common.refinery.ResourceShadowDiscriminator; import com.evolveum.midpoint.model.api.ProgressInformation; import com.evolveum.midpoint.prism.PrismContext; +import com.evolveum.midpoint.prism.delta.DeltaSetTriple; import com.evolveum.midpoint.util.DebugDumpable; import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectType; @@ -41,6 +42,8 @@ public interface ModelContext extends Serializable, DebugD Class getFocusClass(); void reportProgress(ProgressInformation progress); + + DeltaSetTriple getEvaluatedAssignmentTriple(); PrismContext getPrismContext(); // use with care } diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/controller/ModelController.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/controller/ModelController.java index ed01934081d..c2490fbe311 100644 --- a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/controller/ModelController.java +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/controller/ModelController.java @@ -779,10 +779,15 @@ public ModelContext previewChanges( if (LOGGER.isDebugEnabled()) { LOGGER.debug("Preview changes input:\n{}", DebugUtil.debugDump(deltas)); } - - Collection> clonedDeltas = new ArrayList>(deltas.size()); - for (ObjectDelta delta : deltas){ - clonedDeltas.add(delta.clone()); + int size = 0; + if (deltas != null) { + size = deltas.size(); + } + Collection> clonedDeltas = new ArrayList>(size); + if (deltas != null) { + for (ObjectDelta delta : deltas){ + clonedDeltas.add(delta.clone()); + } } OperationResult result = parentResult.createSubresult(PREVIEW_CHANGES); diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/AssignmentEvaluator.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/AssignmentEvaluator.java index 0b071555fd2..bcb738e235c 100644 --- a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/AssignmentEvaluator.java +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/AssignmentEvaluator.java @@ -24,6 +24,7 @@ import com.evolveum.midpoint.common.ActivationComputer; import com.evolveum.midpoint.model.api.PolicyViolationException; +import com.evolveum.midpoint.model.api.context.EvaluatedAssignment; import com.evolveum.midpoint.model.common.expression.ExpressionUtil; import com.evolveum.midpoint.model.common.expression.ItemDeltaItem; import com.evolveum.midpoint.model.common.expression.ObjectDeltaObject; @@ -198,11 +199,11 @@ public void setMappingEvaluationHelper(MappingEvaluationHelper mappingEvaluation this.mappingEvaluationHelper = mappingEvaluationHelper; } - public EvaluatedAssignment evaluate(ItemDeltaItem> assignmentIdi, + public EvaluatedAssignmentImpl evaluate(ItemDeltaItem> assignmentIdi, boolean evaluateOld, ObjectType source, String sourceDescription, Task task, OperationResult result) throws SchemaException, ObjectNotFoundException, ExpressionEvaluationException, PolicyViolationException { assertSource(source, assignmentIdi); - EvaluatedAssignment evalAssignment = new EvaluatedAssignment<>(); + EvaluatedAssignmentImpl evalAssignment = new EvaluatedAssignmentImpl<>(); evalAssignment.setAssignmentIdi(assignmentIdi); AssignmentPath assignmentPath = new AssignmentPath(); AssignmentPathSegment assignmentPathSegment = new AssignmentPathSegment(assignmentIdi, null); @@ -220,7 +221,7 @@ public EvaluatedAssignment evaluate(ItemDeltaItem evalAssignment, AssignmentPathSegment assignmentPathSegment, + private void evaluateAssignment(EvaluatedAssignmentImpl evalAssignment, AssignmentPathSegment assignmentPathSegment, boolean evaluateOld, PlusMinusZero mode, ObjectType source, String sourceDescription, AssignmentPath assignmentPath, Task task, OperationResult result) throws SchemaException, ObjectNotFoundException, ExpressionEvaluationException, PolicyViolationException { assertSource(source, evalAssignment); @@ -312,7 +313,7 @@ private void evaluateAssignment(EvaluatedAssignment evalAssignment, Assignmen assignmentPath.remove(assignmentPathSegment); } - private void prepareConstructionEvaluation(EvaluatedAssignment evaluatedAssignment, AssignmentPathSegment assignmentPathSegment, + private void prepareConstructionEvaluation(EvaluatedAssignmentImpl evaluatedAssignment, AssignmentPathSegment assignmentPathSegment, boolean evaluateOld, PlusMinusZero mode, ObjectType source, String sourceDescription, AssignmentPath assignmentPath, ObjectType orderOneObject, Task task, OperationResult result) throws SchemaException, ExpressionEvaluationException, ObjectNotFoundException { assertSource(source, evaluatedAssignment); @@ -348,7 +349,7 @@ private void prepareConstructionEvaluation(EvaluatedAssignment evaluatedAssig } } - private void evaluateFocusMappings(EvaluatedAssignment evaluatedAssignment, AssignmentPathSegment assignmentPathSegment, + private void evaluateFocusMappings(EvaluatedAssignmentImpl evaluatedAssignment, AssignmentPathSegment assignmentPathSegment, boolean evaluateOld, ObjectType source, String sourceDescription, AssignmentPath assignmentPath, ObjectType orderOneObject, Task task, OperationResult result) throws SchemaException, ExpressionEvaluationException, ObjectNotFoundException { assertSource(source, evaluatedAssignment); @@ -406,7 +407,7 @@ private PrismObject resolveTarget(AssignmentType assignmentType, ObjectType s } - private void evaluateTarget(EvaluatedAssignment assignment, AssignmentPathSegment assignmentPathSegment, + private void evaluateTarget(EvaluatedAssignmentImpl assignment, AssignmentPathSegment assignmentPathSegment, boolean evaluateOld, PlusMinusZero mode, PrismObject target, ObjectType source, QName relation, String sourceDescription, AssignmentPath assignmentPath, Task task, OperationResult result) throws SchemaException, ObjectNotFoundException, ExpressionEvaluationException, PolicyViolationException { assertSource(source, assignment); @@ -426,7 +427,7 @@ private void evaluateTarget(EvaluatedAssignment assignment, AssignmentPathSeg } } - private boolean evaluateAbstractRole(EvaluatedAssignment assignment, AssignmentPathSegment assignmentPathSegment, + private boolean evaluateAbstractRole(EvaluatedAssignmentImpl assignment, AssignmentPathSegment assignmentPathSegment, boolean evaluateOld, PlusMinusZero mode, AbstractRoleType roleType, ObjectType source, String sourceDescription, AssignmentPath assignmentPath, Task task, OperationResult result) throws SchemaException, ObjectNotFoundException, ExpressionEvaluationException, PolicyViolationException { assertSource(source, assignment); @@ -451,6 +452,10 @@ private boolean evaluateAbstractRole(EvaluatedAssignment assignment, Assignme } + EvaluatedAbstractRoleImpl evalRole = new EvaluatedAbstractRoleImpl(); + evalRole.setRole(roleType.asPrismObject()); + assignment.addRole(evalRole, mode); + int evaluationOrder = assignmentPath.getEvaluationOrder(); ObjectType orderOneObject; if (evaluationOrder == 1) { diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/Clockwork.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/Clockwork.java index 6ab240fb4f4..c8aebb69a02 100644 --- a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/Clockwork.java +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/Clockwork.java @@ -24,6 +24,7 @@ import com.evolveum.midpoint.model.api.ModelAuthorizationAction; import com.evolveum.midpoint.model.api.ModelExecuteOptions; import com.evolveum.midpoint.model.api.PolicyViolationException; +import com.evolveum.midpoint.model.api.context.EvaluatedAssignment; import com.evolveum.midpoint.model.api.context.ModelState; import com.evolveum.midpoint.model.api.hooks.ChangeHook; import com.evolveum.midpoint.model.api.hooks.HookOperationMode; @@ -94,6 +95,7 @@ import com.evolveum.midpoint.xml.ns._public.common.common_3.UserType; import com.evolveum.prism.xml.ns._public.query_3.QueryType; import com.evolveum.prism.xml.ns._public.query_3.SearchFilterType; + import org.apache.commons.lang.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; @@ -101,6 +103,7 @@ import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; + import java.util.ArrayList; import java.util.Collection; @@ -923,7 +926,7 @@ private ObjectSecurityConstraints a } else { // No explicit decision for assignment modification yet // process each assignment individually - DeltaSetTriple evaluatedAssignmentTriple = context.getEvaluatedAssignmentTriple(); + DeltaSetTriple evaluatedAssignmentTriple = context.getEvaluatedAssignmentTriple(); authorizeAssignmentRequest(ModelAuthorizationAction.ASSIGN.getUrl(), object, ownerResolver, evaluatedAssignmentTriple.getPlusSet(), result); authorizeAssignmentRequest(ModelAuthorizationAction.UNASSIGN.getUrl(), object, ownerResolver, evaluatedAssignmentTriple.getMinusSet(), result); } @@ -952,7 +955,7 @@ private ObjectSecurityConstraints a } private void authorizeAssignmentRequest(String actionUrl, PrismObject object, - OwnerResolver ownerResolver, Collection evaluatedAssignments, OperationResult result) throws SecurityViolationException, SchemaException { + OwnerResolver ownerResolver, Collection evaluatedAssignments, OperationResult result) throws SecurityViolationException, SchemaException { if (evaluatedAssignments == null) { return; } diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/EvaluatedAbstractRoleImpl.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/EvaluatedAbstractRoleImpl.java new file mode 100644 index 00000000000..335e297ab7a --- /dev/null +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/EvaluatedAbstractRoleImpl.java @@ -0,0 +1,55 @@ +/** + * Copyright (c) 2015 Evolveum + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.evolveum.midpoint.model.impl.lens; + +import com.evolveum.midpoint.model.api.context.EvaluatedAbstractRole; +import com.evolveum.midpoint.prism.PrismObject; +import com.evolveum.midpoint.util.DebugUtil; +import com.evolveum.midpoint.xml.ns._public.common.common_3.AbstractRoleType; + +/** + * @author semancik + * + */ +public class EvaluatedAbstractRoleImpl implements EvaluatedAbstractRole { + + PrismObject role; + + @Override + public PrismObject getRole() { + return role; + } + + public void setRole(PrismObject role) { + this.role = role; + } + + @Override + public String debugDump() { + return debugDump(0); + } + + @Override + public String debugDump(int indent) { + StringBuilder sb = new StringBuilder(); + DebugUtil.debugDumpLabel(sb, "EvaluatedAbstractRole", indent); + sb.append("\n"); + DebugUtil.debugDumpWithLabel(sb, "Role", role, indent + 1); + return sb.toString(); + } + + +} diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/EvaluatedAssignment.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/EvaluatedAssignmentImpl.java similarity index 87% rename from model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/EvaluatedAssignment.java rename to model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/EvaluatedAssignmentImpl.java index cc227436d9d..95ca388370b 100644 --- a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/EvaluatedAssignment.java +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/EvaluatedAssignmentImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010-2014 Evolveum + * Copyright (c) 2010-2015 Evolveum * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,6 +18,7 @@ import java.util.ArrayList; import java.util.Collection; +import com.evolveum.midpoint.model.api.context.EvaluatedAssignment; import com.evolveum.midpoint.model.common.expression.ItemDeltaItem; import com.evolveum.midpoint.model.common.expression.ObjectDeltaObject; import com.evolveum.midpoint.model.common.mapping.Mapping; @@ -48,12 +49,13 @@ * * @author Radovan Semancik */ -public class EvaluatedAssignment implements DebugDumpable { +public class EvaluatedAssignmentImpl implements EvaluatedAssignment { - private static final Trace LOGGER = TraceManager.getTrace(EvaluatedAssignment.class); + private static final Trace LOGGER = TraceManager.getTrace(EvaluatedAssignmentImpl.class); private ItemDeltaItem> assignmentIdi; private DeltaSetTriple> constructions; + private DeltaSetTriple roles; private Collection orgRefVals; private Collection authorizations; private Collection>> focusMappings; @@ -61,8 +63,9 @@ public class EvaluatedAssignment implements DebugDumpable { private boolean isValid; private boolean forceRecon; - public EvaluatedAssignment() { + public EvaluatedAssignmentImpl() { constructions = new DeltaSetTriple<>(); + roles = new DeltaSetTriple<>(); orgRefVals = new ArrayList<>(); authorizations = new ArrayList<>(); focusMappings = new ArrayList<>(); @@ -76,6 +79,10 @@ public void setAssignmentIdi(ItemDeltaItem> this.assignmentIdi = assignmentIdi; } + /* (non-Javadoc) + * @see com.evolveum.midpoint.model.impl.lens.EvaluatedAssignment#getAssignmentType() + */ + @Override public AssignmentType getAssignmentType() { return assignmentIdi.getItemNew().getValue(0).asContainerable(); } @@ -105,6 +112,15 @@ public void addConstructionMinus(Construction contruction) { constructions.addToMinusSet(contruction); } + @Override + public DeltaSetTriple getRoles() { + return roles; + } + + public void addRole(EvaluatedAbstractRoleImpl role, PlusMinusZero mode) { + roles.addToSet(mode, role); + } + public Collection getOrgRefVals() { return orgRefVals; } @@ -113,6 +129,10 @@ public void addOrgRefVal(PrismReferenceValue org) { orgRefVals.add(org); } + /* (non-Javadoc) + * @see com.evolveum.midpoint.model.impl.lens.EvaluatedAssignment#getAuthorizations() + */ + @Override public Collection getAuthorizations() { return authorizations; } @@ -129,6 +149,10 @@ public void addFocusMapping(Mapping> focusMappin this.focusMappings.add(focusMapping); } + /* (non-Javadoc) + * @see com.evolveum.midpoint.model.impl.lens.EvaluatedAssignment#getTarget() + */ + @Override public PrismObject getTarget() { return target; } @@ -137,6 +161,10 @@ public void setTarget(PrismObject target) { this.target = target; } + /* (non-Javadoc) + * @see com.evolveum.midpoint.model.impl.lens.EvaluatedAssignment#isValid() + */ + @Override public boolean isValid() { return isValid; } @@ -188,6 +216,10 @@ public String debugDump(int indent) { sb.append("\n"); DebugUtil.debugDumpWithLabel(sb, "Constructions", constructions, indent+1); } + if (!roles.isEmpty()) { + sb.append("\n"); + DebugUtil.debugDumpWithLabel(sb, "Roles", roles, indent+1); + } if (!orgRefVals.isEmpty()) { sb.append("\n"); DebugUtil.debugDumpLabel(sb, "Orgs", indent+1); diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/LensContext.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/LensContext.java index 3eb5567f066..b58e985bede 100644 --- a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/LensContext.java +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/LensContext.java @@ -77,7 +77,7 @@ public class LensContext implements ModelContext { transient private ProjectionPolicyType accountSynchronizationSettings; transient private ValuePolicyType globalPasswordPolicy; - transient private DeltaSetTriple evaluatedAssignmentTriple; + transient private DeltaSetTriple evaluatedAssignmentTriple; /** * Just a cached copy. Keep it in context so we do not need to reload it all the time. @@ -401,11 +401,11 @@ public void setDoReconciliationForAllProjections(boolean doReconciliationForAllP this.doReconciliationForAllProjections = doReconciliationForAllProjections; } - public DeltaSetTriple getEvaluatedAssignmentTriple() { + public DeltaSetTriple getEvaluatedAssignmentTriple() { return evaluatedAssignmentTriple; } - public void setEvaluatedAssignmentTriple(DeltaSetTriple evaluatedAssignmentTriple) { + public void setEvaluatedAssignmentTriple(DeltaSetTriple evaluatedAssignmentTriple) { this.evaluatedAssignmentTriple = evaluatedAssignmentTriple; } diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/AssignmentProcessor.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/AssignmentProcessor.java index f879b6d04e9..a92c57d58e4 100644 --- a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/AssignmentProcessor.java +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/AssignmentProcessor.java @@ -38,6 +38,7 @@ import com.evolveum.midpoint.common.refinery.ResourceShadowDiscriminator; import com.evolveum.midpoint.model.api.ModelExecuteOptions; import com.evolveum.midpoint.model.api.PolicyViolationException; +import com.evolveum.midpoint.model.api.context.EvaluatedAssignment; import com.evolveum.midpoint.model.api.context.SynchronizationPolicyDecision; import com.evolveum.midpoint.model.common.expression.ItemDeltaItem; import com.evolveum.midpoint.model.common.expression.ObjectDeltaObject; @@ -49,7 +50,7 @@ import com.evolveum.midpoint.model.impl.lens.AssignmentPathSegment; import com.evolveum.midpoint.model.impl.lens.Construction; import com.evolveum.midpoint.model.impl.lens.ConstructionPack; -import com.evolveum.midpoint.model.impl.lens.EvaluatedAssignment; +import com.evolveum.midpoint.model.impl.lens.EvaluatedAssignmentImpl; import com.evolveum.midpoint.model.impl.lens.ItemValueWithOrigin; import com.evolveum.midpoint.model.impl.lens.LensContext; import com.evolveum.midpoint.model.impl.lens.LensFocusContext; @@ -262,7 +263,7 @@ private void processAssignmentsProjectionsWithFocus(LensCo source = focusContext.getObjectNew().asObjectable(); } - DeltaSetTriple> evaluatedAssignmentTriple = new DeltaSetTriple<>(); + DeltaSetTriple> evaluatedAssignmentTriple = new DeltaSetTriple<>(); context.setEvaluatedAssignmentTriple((DeltaSetTriple)evaluatedAssignmentTriple); // Iterate over all the assignments. I mean really all. This is a union of the existing and changed assignments @@ -321,7 +322,7 @@ private void processAssignmentsProjectionsWithFocus(LensCo if (LOGGER.isTraceEnabled()) { LOGGER.trace("Processing focus delete for: {}", SchemaDebugUtil.prettyPrint(assignmentCVal)); } - EvaluatedAssignment evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); if (evaluatedAssignment == null) { continue; } @@ -343,21 +344,21 @@ private void processAssignmentsProjectionsWithFocus(LensCo boolean willHaveValue = assignmentDelta.isValueToReplace(assignmentCVal, true); if (hadValue && willHaveValue) { // No change - EvaluatedAssignment evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); if (evaluatedAssignment == null) { continue; } collectToZero(evaluatedAssignmentTriple, evaluatedAssignment, forceRecon); } else if (willHaveValue) { // add - EvaluatedAssignment evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); if (evaluatedAssignment == null) { continue; } collectToPlus(evaluatedAssignmentTriple, evaluatedAssignment, forceRecon); } else if (hadValue) { // delete - EvaluatedAssignment evaluatedAssignment = evaluateAssignment(assignmentIdi, true, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = evaluateAssignment(assignmentIdi, true, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); if (evaluatedAssignment == null) { continue; } @@ -383,7 +384,7 @@ private void processAssignmentsProjectionsWithFocus(LensCo if (LOGGER.isTraceEnabled()) { LOGGER.trace("Processing changed assignment, phantom add: {}", SchemaDebugUtil.prettyPrint(assignmentCVal)); } - EvaluatedAssignment evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); if (evaluatedAssignment == null) { continue; } @@ -392,7 +393,7 @@ private void processAssignmentsProjectionsWithFocus(LensCo if (LOGGER.isTraceEnabled()) { LOGGER.trace("Processing changed assignment, add: {}", SchemaDebugUtil.prettyPrint(assignmentCVal)); } - EvaluatedAssignment evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); if (evaluatedAssignment == null) { continue; } @@ -404,7 +405,7 @@ private void processAssignmentsProjectionsWithFocus(LensCo if (LOGGER.isTraceEnabled()) { LOGGER.trace("Processing changed assignment, delete: {}", SchemaDebugUtil.prettyPrint(assignmentCVal)); } - EvaluatedAssignment evaluatedAssignment = evaluateAssignment(assignmentIdi, true, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = evaluateAssignment(assignmentIdi, true, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); if (evaluatedAssignment == null) { continue; } @@ -424,7 +425,7 @@ private void processAssignmentsProjectionsWithFocus(LensCo LOGGER.trace("Processing changed assignment, minor change (add={}, delete={}, valid={}): {}", new Object[]{isAdd, isDelete, isValid, SchemaDebugUtil.prettyPrint(assignmentCVal)}); } - EvaluatedAssignment evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); if (evaluatedAssignment == null) { continue; } @@ -435,7 +436,7 @@ private void processAssignmentsProjectionsWithFocus(LensCo LOGGER.trace("Processing changed assignment, assignment becomes valid (add={}, delete={}): {}", new Object[]{isAdd, isDelete, SchemaDebugUtil.prettyPrint(assignmentCVal)}); } - EvaluatedAssignment evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); if (evaluatedAssignment == null) { continue; } @@ -446,7 +447,7 @@ private void processAssignmentsProjectionsWithFocus(LensCo LOGGER.trace("Processing changed assignment, assignment becomes invalid (add={}, delete={}): {}", new Object[]{isAdd, isDelete, SchemaDebugUtil.prettyPrint(assignmentCVal)}); } - EvaluatedAssignment evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); if (evaluatedAssignment == null) { continue; } @@ -460,7 +461,7 @@ private void processAssignmentsProjectionsWithFocus(LensCo LOGGER.trace("Processing unchanged assignment {}", new Object[]{SchemaDebugUtil.prettyPrint(assignmentCVal)}); } boolean isValid = LensUtil.isValid(assignmentType, now, activationComputer); // TODO unused: why? [med] - EvaluatedAssignment evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = evaluateAssignment(assignmentIdi, false, context, source, assignmentEvaluator, assignmentPlacementDesc, task, result); if (evaluatedAssignment == null) { continue; } @@ -779,33 +780,33 @@ private ObjectType determineSource(LensFocusContext fo return focusContext.getObjectNew().asObjectable(); } - private void collectToZero(DeltaSetTriple> evaluatedAssignmentTriple, - EvaluatedAssignment evaluatedAssignment, boolean forceRecon) { + private void collectToZero(DeltaSetTriple> evaluatedAssignmentTriple, + EvaluatedAssignmentImpl evaluatedAssignment, boolean forceRecon) { evaluatedAssignment.setForceRecon(forceRecon); evaluatedAssignmentTriple.addToZeroSet(evaluatedAssignment); } - private void collectToPlus(DeltaSetTriple> evaluatedAssignmentTriple, - EvaluatedAssignment evaluatedAssignment, boolean forceRecon) { + private void collectToPlus(DeltaSetTriple> evaluatedAssignmentTriple, + EvaluatedAssignmentImpl evaluatedAssignment, boolean forceRecon) { evaluatedAssignment.setForceRecon(forceRecon); evaluatedAssignmentTriple.addToPlusSet(evaluatedAssignment); } - private void collectToMinus(DeltaSetTriple> evaluatedAssignmentTriple, - EvaluatedAssignment evaluatedAssignment, boolean forceRecon) { + private void collectToMinus(DeltaSetTriple> evaluatedAssignmentTriple, + EvaluatedAssignmentImpl evaluatedAssignment, boolean forceRecon) { evaluatedAssignment.setForceRecon(forceRecon); evaluatedAssignmentTriple.addToMinusSet(evaluatedAssignment); } private void evaluateConstructions(LensContext context, - DeltaSetTriple> evaluatedAssignmentTriple, Task task, OperationResult result) throws SchemaException, ExpressionEvaluationException, ObjectNotFoundException { + DeltaSetTriple> evaluatedAssignmentTriple, Task task, OperationResult result) throws SchemaException, ExpressionEvaluationException, ObjectNotFoundException { evaluateConstructions(context, evaluatedAssignmentTriple.getZeroSet(), task, result); evaluateConstructions(context, evaluatedAssignmentTriple.getPlusSet(), task, result); evaluateConstructions(context, evaluatedAssignmentTriple.getMinusSet(), task, result); } private void evaluateConstructions(LensContext context, - Collection> evaluatedAssignments, Task task, OperationResult result) throws SchemaException, ExpressionEvaluationException, ObjectNotFoundException { + Collection> evaluatedAssignments, Task task, OperationResult result) throws SchemaException, ExpressionEvaluationException, ObjectNotFoundException { if (evaluatedAssignments == null) { return; } @@ -814,9 +815,9 @@ private void evaluateConstructions(LensContext context, if (focusContext != null) { focusOdo = focusContext.getObjectDeltaObject(); } - Iterator> iterator = evaluatedAssignments.iterator(); + Iterator> iterator = evaluatedAssignments.iterator(); while (iterator.hasNext()) { - EvaluatedAssignment evaluatedAssignment = iterator.next(); + EvaluatedAssignmentImpl evaluatedAssignment = iterator.next(); try { evaluatedAssignment.evaluateConstructions(focusOdo, task, result); } catch (ObjectNotFoundException ex){ @@ -849,7 +850,7 @@ private void evaluateConstructions(LensContext context, } private void collectToConstructionMaps(LensContext context, - DeltaSetTriple> evaluatedAssignmentTriple, + DeltaSetTriple> evaluatedAssignmentTriple, DeltaMapTriple constructionMapTriple, OperationResult result) throws ObjectNotFoundException, SchemaException, CommunicationException, ConfigurationException, SecurityViolationException { @@ -859,10 +860,10 @@ private void collectToConstructionMaps(LensContext cont } private void collectToConstructionMapFromEvaluatedAssignments(LensContext context, - Collection> evaluatedAssignments, + Collection> evaluatedAssignments, DeltaMapTriple constructionMapTriple, PlusMinusZero mode, OperationResult result) throws ObjectNotFoundException, SchemaException, CommunicationException, ConfigurationException, SecurityViolationException { - for (EvaluatedAssignment evaluatedAssignment: evaluatedAssignments) { + for (EvaluatedAssignmentImpl evaluatedAssignment: evaluatedAssignments) { if (LOGGER.isTraceEnabled()) { LOGGER.trace("Collecting constructions from evaluated assignment:\n{}", evaluatedAssignment.debugDump()); } @@ -874,7 +875,7 @@ private void collectToConstructionMapFromEvaluatedAssignme } private void collectToConstructionMapFromEvaluatedConstructions(LensContext context, - EvaluatedAssignment evaluatedAssignment, + EvaluatedAssignmentImpl evaluatedAssignment, Collection> evaluatedConstructions, DeltaMapTriple constructionMapTriple, PlusMinusZero mode1, PlusMinusZero mode2, @@ -934,13 +935,13 @@ private Collection> mergeAssignments( return all; } - private EvaluatedAssignment evaluateAssignment(ItemDeltaItem> assignmentIdi, + private EvaluatedAssignmentImpl evaluateAssignment(ItemDeltaItem> assignmentIdi, boolean evaluateOld, LensContext context, ObjectType source, AssignmentEvaluator assignmentEvaluator, String assignmentPlacementDesc, Task task, OperationResult result) throws SchemaException, ExpressionEvaluationException, PolicyViolationException { try{ // Evaluate assignment. This follows to the assignment targets, follows to the inducements, // evaluates all the expressions, etc. - EvaluatedAssignment evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, evaluateOld, source, assignmentPlacementDesc, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, evaluateOld, source, assignmentPlacementDesc, task, result); context.rememberResources(evaluatedAssignment.getResources(result)); return evaluatedAssignment; } catch (ObjectNotFoundException ex){ @@ -1167,7 +1168,7 @@ private boolean containsRealValue(Collection public void processOrgAssignments(LensContext context, OperationResult result) throws SchemaException { LensFocusContext focusContext = context.getFocusContext(); - DeltaSetTriple evaluatedAssignmentTriple = context.getEvaluatedAssignmentTriple(); + DeltaSetTriple evaluatedAssignmentTriple = context.getEvaluatedAssignmentTriple(); if (focusContext == null || evaluatedAssignmentTriple == null) { return; } @@ -1184,7 +1185,7 @@ public void processOrgAssignments(LensContext context, // check if parentOrgRef recon is needed - it is when something inside OrgType assignment has changed boolean forceRecon = false; - for (EvaluatedAssignment assignment: evaluatedAssignmentTriple.getAllValues()) { + for (EvaluatedAssignmentImpl assignment: evaluatedAssignmentTriple.getAllValues()) { if (assignment.isForceRecon() && assignment.getAssignmentType() != null && assignment.getAssignmentType().getTargetRef() != null && @@ -1205,7 +1206,7 @@ public void processOrgAssignments(LensContext context, // we ignore any delete of values that should be existing or added. Collection notToBeDeletedCanonical = new HashSet<>(); - for (EvaluatedAssignment assignment : evaluatedAssignmentTriple.getZeroSet()) { + for (EvaluatedAssignmentImpl assignment : evaluatedAssignmentTriple.getZeroSet()) { Collection orgs = assignment.getOrgRefVals(); for (PrismReferenceValue org : orgs) { notToBeDeletedCanonical.add(org.toCannonical()); @@ -1213,7 +1214,7 @@ public void processOrgAssignments(LensContext context, } // Plus - for (EvaluatedAssignment assignment : evaluatedAssignmentTriple.getPlusSet()) { + for (EvaluatedAssignmentImpl assignment : evaluatedAssignmentTriple.getPlusSet()) { Collection orgs = assignment.getOrgRefVals(); for (PrismReferenceValue org : orgs) { ItemDelta orgRefDelta = orgRefDef.createEmptyDelta(orgRefPath); @@ -1229,7 +1230,7 @@ public void processOrgAssignments(LensContext context, } // Minus (except for these that are also in zero set) - for (EvaluatedAssignment assignment : evaluatedAssignmentTriple.getMinusSet()) { + for (EvaluatedAssignmentImpl assignment : evaluatedAssignmentTriple.getMinusSet()) { Collection orgs = assignment.getOrgRefVals(); for (PrismReferenceValue org : orgs) { ItemDelta orgRefDelta = orgRefDef.createEmptyDelta(orgRefPath); @@ -1253,7 +1254,7 @@ public void processOrgAssignments(LensContext context, ItemDelta orgRefDelta = orgRefDef.createEmptyDelta(orgRefPath); Set valuesToReplace = new HashSet<>(); - for (EvaluatedAssignment assignment : evaluatedAssignmentTriple.getNonNegativeValues()) { + for (EvaluatedAssignmentImpl assignment : evaluatedAssignmentTriple.getNonNegativeValues()) { Collection orgs = assignment.getOrgRefVals(); for (PrismReferenceValue org : orgs) { PrismReferenceValue canonical = org.toCannonical(); @@ -1329,21 +1330,21 @@ private void markPolicyDecision(LensProjectionContext accountSyncContext, Synchr } } - private void checkExclusions(LensContext context, Collection> assignmentsA, - Collection> assignmentsB) throws PolicyViolationException { - for (EvaluatedAssignment assignmentA: assignmentsA) { + private void checkExclusions(LensContext context, Collection> assignmentsA, + Collection> assignmentsB) throws PolicyViolationException { + for (EvaluatedAssignmentImpl assignmentA: assignmentsA) { checkExclusion(context, assignmentA, assignmentsB); } } - private void checkExclusion(LensContext context, EvaluatedAssignment assignmentA, - Collection> assignmentsB) throws PolicyViolationException { - for (EvaluatedAssignment assignmentB: assignmentsB) { + private void checkExclusion(LensContext context, EvaluatedAssignmentImpl assignmentA, + Collection> assignmentsB) throws PolicyViolationException { + for (EvaluatedAssignmentImpl assignmentB: assignmentsB) { checkExclusion(context, assignmentA, assignmentB); } } - private void checkExclusion(LensContext context, EvaluatedAssignment assignmentA, EvaluatedAssignment assignmentB) throws PolicyViolationException { + private void checkExclusion(LensContext context, EvaluatedAssignmentImpl assignmentA, EvaluatedAssignmentImpl assignmentB) throws PolicyViolationException { if (assignmentA == assignmentB) { // Same thing, this cannot exclude itself return; @@ -1402,9 +1403,9 @@ private void checkExclusionOneWay(AbstractRoleType roleA, AbstractRoleType roleB } private void checkAssigneeConstraints(LensContext context, - DeltaSetTriple> evaluatedAssignmentTriple, + DeltaSetTriple> evaluatedAssignmentTriple, OperationResult result) throws PolicyViolationException, SchemaException { - for (EvaluatedAssignment assignment: evaluatedAssignmentTriple.union()) { + for (EvaluatedAssignmentImpl assignment: evaluatedAssignmentTriple.union()) { if (evaluatedAssignmentTriple.presentInPlusSet(assignment)) { checkAssigneeConstraints(context, assignment, PlusMinusZero.PLUS, result); } else if (evaluatedAssignmentTriple.presentInZeroSet(assignment)) { @@ -1510,13 +1511,13 @@ private PrismContainerDefinition getAssign } private XMLGregorianCalendar collectFocusTripleFromMappings( - Collection> evaluatedAssignmnents, + Collection> evaluatedAssignmnents, Map>> outputTripleMap, PlusMinusZero plusMinusZero) throws SchemaException { XMLGregorianCalendar nextRecomputeTime = null; - for (EvaluatedAssignment ea: evaluatedAssignmnents) { + for (EvaluatedAssignmentImpl ea: evaluatedAssignmnents) { Collection> focusMappings = (Collection)ea.getFocusMappings(); for (Mapping mapping: focusMappings) { diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/security/UserProfileServiceImpl.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/security/UserProfileServiceImpl.java index 44f20b951e4..8977b5fa4df 100644 --- a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/security/UserProfileServiceImpl.java +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/security/UserProfileServiceImpl.java @@ -19,12 +19,12 @@ import com.evolveum.midpoint.common.ActivationComputer; import com.evolveum.midpoint.common.Clock; import com.evolveum.midpoint.model.api.PolicyViolationException; +import com.evolveum.midpoint.model.api.context.EvaluatedAssignment; import com.evolveum.midpoint.model.common.expression.ItemDeltaItem; import com.evolveum.midpoint.model.common.expression.ObjectDeltaObject; import com.evolveum.midpoint.model.common.mapping.MappingFactory; import com.evolveum.midpoint.model.impl.UserComputer; import com.evolveum.midpoint.model.impl.lens.AssignmentEvaluator; -import com.evolveum.midpoint.model.impl.lens.EvaluatedAssignment; import com.evolveum.midpoint.model.impl.lens.LensContext; import com.evolveum.midpoint.model.impl.lens.LensContextPlaceholder; import com.evolveum.midpoint.model.impl.lens.LensUtil; diff --git a/model/model-impl/src/test/java/com/evolveum/midpoint/model/impl/lens/TestAssignmentEvaluator.java b/model/model-impl/src/test/java/com/evolveum/midpoint/model/impl/lens/TestAssignmentEvaluator.java index 88e69f67e37..81669ef800d 100644 --- a/model/model-impl/src/test/java/com/evolveum/midpoint/model/impl/lens/TestAssignmentEvaluator.java +++ b/model/model-impl/src/test/java/com/evolveum/midpoint/model/impl/lens/TestAssignmentEvaluator.java @@ -52,7 +52,7 @@ import com.evolveum.midpoint.model.common.mapping.MappingFactory; import com.evolveum.midpoint.model.impl.AbstractInternalModelIntegrationTest; import com.evolveum.midpoint.model.impl.lens.AssignmentEvaluator; -import com.evolveum.midpoint.model.impl.lens.EvaluatedAssignment; +import com.evolveum.midpoint.model.impl.lens.EvaluatedAssignmentImpl; import com.evolveum.midpoint.prism.PrismContainer; import com.evolveum.midpoint.prism.PrismContainerDefinition; import com.evolveum.midpoint.prism.PrismContainerValue; @@ -127,7 +127,7 @@ public void testDirect() throws Exception { // WHEN TestUtil.displayWhen(TEST_NAME); - EvaluatedAssignment evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, "testDirect", task, result); + EvaluatedAssignmentImpl evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, "testDirect", task, result); evaluatedAssignment.evaluateConstructions(userOdo, task, result); // THEN @@ -167,7 +167,7 @@ public void testDirectExpression() throws Exception { // WHEN TestUtil.displayWhen(TEST_NAME); - EvaluatedAssignment evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, "testDirect", task, result); + EvaluatedAssignmentImpl evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, "testDirect", task, result); evaluatedAssignment.evaluateConstructions(userOdo, task, result); // THEN @@ -219,7 +219,7 @@ public void testDirectExpressionReplaceDescription() throws Exception { // WHEN TestUtil.displayWhen(TEST_NAME); - EvaluatedAssignment evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, "testDirect", task, result); + EvaluatedAssignmentImpl evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, "testDirect", task, result); evaluatedAssignment.evaluateConstructions(userOdo, task, result); // THEN @@ -286,7 +286,7 @@ public void testDirectExpressionReplaceDescriptionFromNull() throws Exception { // WHEN TestUtil.displayWhen(TEST_NAME); - EvaluatedAssignment evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, "testDirect", task, result); + EvaluatedAssignmentImpl evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, "testDirect", task, result); evaluatedAssignment.evaluateConstructions(userOdo, task, result); // THEN @@ -362,7 +362,7 @@ public void testRoleVisitor() throws Exception { // WHEN TestUtil.displayWhen(TEST_NAME); - EvaluatedAssignment evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, TEST_NAME, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, TEST_NAME, task, result); evaluatedAssignment.evaluateConstructions(userOdo, task, result); // THEN @@ -409,7 +409,7 @@ public void testRoleEngineer() throws Exception { // WHEN TestUtil.displayWhen(TEST_NAME); - EvaluatedAssignment evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, "testRoleEngineer", task, result); + EvaluatedAssignmentImpl evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, "testRoleEngineer", task, result); evaluatedAssignment.evaluateConstructions(userOdo, task, result); // THEN @@ -461,7 +461,7 @@ public void testAddRoleEngineer() throws Exception { // WHEN TestUtil.displayWhen(TEST_NAME); - EvaluatedAssignment evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, TEST_NAME, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, TEST_NAME, task, result); evaluatedAssignment.evaluateConstructions(userOdo, task, result); // THEN @@ -535,7 +535,7 @@ public void testRoleManagerChangeCostCenter() throws Exception { // WHEN TestUtil.displayWhen(TEST_NAME); - EvaluatedAssignment evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, TEST_NAME, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, TEST_NAME, task, result); evaluatedAssignment.evaluateConstructions(userOdo, task, result); // THEN @@ -601,7 +601,7 @@ public void testRoleManagerRemoveCostCenter() throws Exception { // WHEN TestUtil.displayWhen(TEST_NAME); - EvaluatedAssignment evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, TEST_NAME, task, result); + EvaluatedAssignmentImpl evaluatedAssignment = assignmentEvaluator.evaluate(assignmentIdi, false, userTypeJack, TEST_NAME, task, result); evaluatedAssignment.evaluateConstructions(userOdo, task, result); // THEN @@ -629,7 +629,7 @@ public void testRoleManagerRemoveCostCenter() throws Exception { assertNoConstruction(evaluatedAssignment, MINUS, "location"); } - private void assertNoConstruction(EvaluatedAssignment evaluatedAssignment, PlusMinusZero constructionSet, String attributeName) { + private void assertNoConstruction(EvaluatedAssignmentImpl evaluatedAssignment, PlusMinusZero constructionSet, String attributeName) { Collection> constructions = evaluatedAssignment.getConstructionSet(constructionSet); for (Construction construction : constructions) { Mapping> mapping = construction.getAttributeMapping(new QName(MidPointConstants.NS_RI, attributeName)); @@ -637,7 +637,7 @@ private void assertNoConstruction(EvaluatedAssignment evaluatedAssignm } } - private void assertConstruction(EvaluatedAssignment evaluatedAssignment, PlusMinusZero constructionSet, String attributeName, PlusMinusZero attributeSet, String... expectedValues) { + private void assertConstruction(EvaluatedAssignmentImpl evaluatedAssignment, PlusMinusZero constructionSet, String attributeName, PlusMinusZero attributeSet, String... expectedValues) { Collection> constructions = evaluatedAssignment.getConstructionSet(constructionSet); Set realValues = new HashSet<>(); for (Construction construction : constructions) { diff --git a/model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/TestRbac.java b/model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/TestRbac.java index 00cd8736e11..f268741cad4 100644 --- a/model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/TestRbac.java +++ b/model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/TestRbac.java @@ -36,12 +36,16 @@ import com.evolveum.icf.dummy.resource.DummyAccount; import com.evolveum.midpoint.model.api.PolicyViolationException; +import com.evolveum.midpoint.model.api.context.EvaluatedAbstractRole; +import com.evolveum.midpoint.model.api.context.EvaluatedAssignment; +import com.evolveum.midpoint.model.api.context.ModelContext; import com.evolveum.midpoint.prism.Objectable; import com.evolveum.midpoint.prism.PrismContainer; import com.evolveum.midpoint.prism.PrismObject; import com.evolveum.midpoint.prism.PrismObjectDefinition; import com.evolveum.midpoint.prism.PrismProperty; import com.evolveum.midpoint.prism.PrismPropertyDefinition; +import com.evolveum.midpoint.prism.delta.DeltaSetTriple; import com.evolveum.midpoint.prism.delta.ItemDelta; import com.evolveum.midpoint.prism.delta.ObjectDelta; import com.evolveum.midpoint.prism.path.IdItemPathSegment; @@ -570,6 +574,52 @@ public void test134JackAssignRoleAdriaticPirate() throws Exception { "jack sailed Adriatic, immediately Adriatic, role , with this The Seven Seas while focused on (in Pirate)"); } + /** + * Check if all the roles are visible in preview changes + */ + @Test + public void test135PreviewChangesEmptyDelta() throws Exception { + final String TEST_NAME = "test135PreviewChangesEmptyDelta"; + TestUtil.displayTestTile(this, TEST_NAME); + + Task task = taskManager.createTaskInstance(TestRbac.class.getName() + "." + TEST_NAME); + OperationResult result = task.getResult(); + PrismObject user = getUser(USER_JACK_OID); + ObjectDelta delta = user.createModifyDelta(); + + // WHEN + ModelContext modelContext = modelInteractionService.previewChanges(MiscSchemaUtil.createCollection(delta), null, task, result); + + // THEN + result.computeStatus(); + TestUtil.assertSuccess(result); + + DeltaSetTriple evaluatedAssignmentTriple = modelContext.getEvaluatedAssignmentTriple(); + PrismAsserts.assertTripleNoPlus(evaluatedAssignmentTriple); + PrismAsserts.assertTripleNoMinus(evaluatedAssignmentTriple); + Collection evaluatedAssignments = evaluatedAssignmentTriple.getZeroSet(); + assertEquals("Wrong number of evaluated assignments", 1, evaluatedAssignments.size()); + EvaluatedAssignment evaluatedAssignment = evaluatedAssignments.iterator().next(); + DeltaSetTriple rolesTriple = evaluatedAssignment.getRoles(); + PrismAsserts.assertTripleNoPlus(rolesTriple); + PrismAsserts.assertTripleNoMinus(rolesTriple); + Collection evaluatedRoles = rolesTriple.getZeroSet(); + assertEquals("Wrong number of evaluated role", 2, evaluatedRoles.size()); + assertEvaluatedRole(evaluatedRoles, ROLE_ADRIATIC_PIRATE_OID); + assertEvaluatedRole(evaluatedRoles, ROLE_PIRATE_OID); + + } + + private void assertEvaluatedRole(Collection evaluatedRoles, + String expectedRoleOid) { + for (EvaluatedAbstractRole evalRole: evaluatedRoles) { + if (expectedRoleOid.equals(evalRole.getRole().getOid())) { + return; + } + } + AssertJUnit.fail("Role "+expectedRoleOid+" no present in evaluated roles "+evaluatedRoles); + } + @Test public void test136JackUnAssignRoleAdriaticPirate() throws Exception { final String TEST_NAME = "test136JackUnAssignRoleAdriaticPirate"; diff --git a/model/model-intest/src/test/resources/logback-test.xml b/model/model-intest/src/test/resources/logback-test.xml index 2a027bd5942..a400b5b929e 100644 --- a/model/model-intest/src/test/resources/logback-test.xml +++ b/model/model-intest/src/test/resources/logback-test.xml @@ -40,11 +40,11 @@ - - - - - + + + + + From 4a70c01279d2a07048e4d3f8c9bb4fad9a19885d Mon Sep 17 00:00:00 2001 From: Erik Suta Date: Fri, 27 Feb 2015 15:23:57 +0100 Subject: [PATCH 04/30] marking deprecated component to remove in 3.2 release. --- .../page/admin/configuration/component/SystemConfigPanel.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.java index 38fbe69a886..bfcaea8e2b8 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.java @@ -90,6 +90,9 @@ protected void initLayout(){ ChooseTypePanel passPolicyChoosePanel = new ChooseTypePanel(ID_GLOBAL_PASSWORD_POLICY_CHOOSER, new PropertyModel(getModel(), SystemConfigurationDto.F_PASSWORD_POLICY)); + +// TODO - remove this before 3.2 release, this is kept only for compatibility reasons. ObjectPolicyConfigurationEditor +// is new incarnation of this deprecated config option. ChooseTypePanel userTemplateChoosePanel = new ChooseTypePanel(ID_GLOBAL_USER_TEMPLATE_CHOOSER, new PropertyModel(getModel(), SystemConfigurationDto.F_OBJECT_TEMPLATE)); From 44144b64aad77d231f8d6164997a55ecf3c3e651 Mon Sep 17 00:00:00 2001 From: Erik Suta Date: Fri, 27 Feb 2015 17:06:05 +0100 Subject: [PATCH 05/30] MID-2239 fix --- .../configuration/component/SystemConfigPanel.html | 1 + .../configuration/component/SystemConfigPanel.java | 11 +++++++++++ .../component/SystemConfigPanel.properties | 1 + .../midpoint/web/util/InfoTooltipBehavior.java | 9 ++++++++- 4 files changed, 21 insertions(+), 1 deletion(-) diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.html b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.html index 5710e0168a8..727bfadccf4 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.html +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.html @@ -35,6 +35,7 @@

diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.java index bfcaea8e2b8..56e26a1fc9c 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.java @@ -54,6 +54,7 @@ public class SystemConfigPanel extends SimplePanel { private static final String ID_CLEANUP_CLOSED_TASKS = "closedTasksCleanup"; private static final String ID_CLEANUP_AUDIT_RECORDS_TOOLTIP = "auditRecordsCleanupTooltip"; private static final String ID_CLEANUP_CLOSED_TASKS_TOOLTIP = "closedTasksCleanupTooltip"; + private static final String ID_OBJECT_POLICY_DEPRECATED_WARNING = "userTemplateDeprecatedWarning"; private static final String ID_DEFAULT_FROM = "defaultFrom"; private static final String ID_DEBUG = "debugCheckbox"; @@ -99,6 +100,16 @@ protected void initLayout(){ form.add(passPolicyChoosePanel); form.add(userTemplateChoosePanel); + Label objectPolicyDeprecationWarningTooltip = new Label(ID_OBJECT_POLICY_DEPRECATED_WARNING); + objectPolicyDeprecationWarningTooltip.add(new InfoTooltipBehavior(){ + + @Override + public String getCssClass() { + return "fa fa-fw fa-exclamation-triangle text-danger"; + } + }); + form.add(objectPolicyDeprecationWarningTooltip); + ObjectPolicyConfigurationEditor objectPolicyEditor = new ObjectPolicyConfigurationEditor(ID_OBJECT_POLICY_EDITOR, new PropertyModel>(getModel(), SystemConfigurationDto.F_OBJECT_POLICY_LIST)); form.add(objectPolicyEditor); diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.properties b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.properties index 06db0e4b0cf..182ff542790 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.properties +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/component/SystemConfigPanel.properties @@ -41,4 +41,5 @@ SystemConfigPanel.mail.transportSecurity=Transport security SystemConfigPanel.notification.redirectToFile=Redirect to file SystemConfigPanel.notification.redirectToFile.placeholder=Filename SystemConfigPanel.tooltip.duration=Format: P[n][p], n-number, p-period (d - days, m - months, ...), P3M - cleanup every 3 months +SystemConfigPanel.deprecated.objectPolicy=This part of configuration is deprecated. It is kept here for compatibility purposes. Please, use the component below to define object policies. mainForm.mailServer.nullValid=Choose One \ No newline at end of file diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/InfoTooltipBehavior.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/InfoTooltipBehavior.java index f7fa3567cbb..d33df9bd1eb 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/InfoTooltipBehavior.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/InfoTooltipBehavior.java @@ -51,11 +51,18 @@ public String getModalContainer(Component component) { public void onConfigure(Component component) { super.onConfigure(component); - component.add(AttributeModifier.replace("class", "fa fa-fw fa-info-circle text-info")); + component.add(AttributeModifier.replace("class", getCssClass())); } @Override public boolean isInsideModal() { return isContainerModal; } + + /** + * Override to provide custom css class (image, icon) for the tooltip + * */ + public String getCssClass(){ + return "fa fa-fw fa-info-circle text-info"; + } } From a668065e1b3f2e29595e39aa4402414ce81e3253 Mon Sep 17 00:00:00 2001 From: Pavol Mederly Date: Fri, 27 Feb 2015 19:16:49 +0100 Subject: [PATCH 06/30] Allowing c:actor variable to be used in source path expressions. --- .../common/expression/ExpressionUtil.java | 31 +++++++++++++++++++ ...alueTransformationExpressionEvaluator.java | 22 ++----------- .../model/common/mapping/Mapping.java | 15 ++++++--- .../model/common/mapping/MappingFactory.java | 14 +++++++-- .../src/main/resources/ctx-model.xml | 3 ++ 5 files changed, 58 insertions(+), 27 deletions(-) diff --git a/model/model-common/src/main/java/com/evolveum/midpoint/model/common/expression/ExpressionUtil.java b/model/model-common/src/main/java/com/evolveum/midpoint/model/common/expression/ExpressionUtil.java index 6f9581e038c..98818749f9a 100644 --- a/model/model-common/src/main/java/com/evolveum/midpoint/model/common/expression/ExpressionUtil.java +++ b/model/model-common/src/main/java/com/evolveum/midpoint/model/common/expression/ExpressionUtil.java @@ -25,6 +25,10 @@ import javax.xml.namespace.QName; import com.evolveum.midpoint.prism.query.ExpressionWrapper; +import com.evolveum.midpoint.security.api.MidPointPrincipal; +import com.evolveum.midpoint.security.api.SecurityEnforcer; +import com.evolveum.midpoint.util.exception.SecurityViolationException; +import com.evolveum.midpoint.xml.ns._public.common.common_3.UserType; import com.evolveum.prism.xml.ns._public.types_3.ProtectedStringType; import org.springframework.expression.ExpressionException; @@ -652,4 +656,31 @@ public static PlusMinusZero computeConditionResultMode(boolean condOld, boolean } throw new IllegalStateException("notreached"); } + + public static void addActorVariable(ExpressionVariables scriptVariables, SecurityEnforcer securityEnforcer) { + // There can already be a value, because for mappings, we create the variable before parsing sources. + // For other scripts we do it just before the execution, to catch all possible places where scripts can be executed. + + UserType oldActor = (UserType) scriptVariables.get(ExpressionConstants.VAR_ACTOR); + if (oldActor != null) { + return; + } + + UserType actor = null; + try { + if (securityEnforcer != null) { + MidPointPrincipal principal = securityEnforcer.getPrincipal(); + if (principal != null) { + actor = principal.getUser(); + } + } + if (actor == null) { + LOGGER.error("Couldn't get principal information - the 'actor' variable is set to null"); + } + } catch (SecurityViolationException e) { + LoggingUtils.logUnexpectedException(LOGGER, "Couldn't get principal information - the 'actor' variable is set to null", e); + } + scriptVariables.addVariableDefinition(ExpressionConstants.VAR_ACTOR, actor); + } + } diff --git a/model/model-common/src/main/java/com/evolveum/midpoint/model/common/expression/evaluator/AbstractValueTransformationExpressionEvaluator.java b/model/model-common/src/main/java/com/evolveum/midpoint/model/common/expression/evaluator/AbstractValueTransformationExpressionEvaluator.java index 155eedd9b52..fbeee2ae67d 100644 --- a/model/model-common/src/main/java/com/evolveum/midpoint/model/common/expression/evaluator/AbstractValueTransformationExpressionEvaluator.java +++ b/model/model-common/src/main/java/com/evolveum/midpoint/model/common/expression/evaluator/AbstractValueTransformationExpressionEvaluator.java @@ -18,6 +18,7 @@ import com.evolveum.midpoint.model.common.expression.ExpressionEvaluationContext; import com.evolveum.midpoint.model.common.expression.ExpressionEvaluator; import com.evolveum.midpoint.model.common.expression.ExpressionSyntaxException; +import com.evolveum.midpoint.model.common.expression.ExpressionUtil; import com.evolveum.midpoint.model.common.expression.ExpressionVariables; import com.evolveum.midpoint.model.common.expression.ItemDeltaItem; import com.evolveum.midpoint.model.common.expression.ObjectDeltaObject; @@ -93,7 +94,7 @@ public PrismValueDeltaSetTriple evaluate(ExpressionEvaluationContext context) PrismValueDeltaSetTriple outputTriple = new PrismValueDeltaSetTriple(); - addActorVariable(context.getVariables()); + ExpressionUtil.addActorVariable(context.getVariables(), securityEnforcer); if (expressionEvaluatorType.getRelativityMode() == TransformExpressionRelativityModeType.ABSOLUTE) { @@ -304,25 +305,6 @@ private Collection evaluateScriptExpression(Collection transformSingleValue(ExpressionVariables variables, PlusMinusZero valueDestination, boolean useNew, ExpressionEvaluationContext params, String contextDescription, Task task, OperationResult result) throws ExpressionEvaluationException, ObjectNotFoundException, SchemaException; diff --git a/model/model-common/src/main/java/com/evolveum/midpoint/model/common/mapping/Mapping.java b/model/model-common/src/main/java/com/evolveum/midpoint/model/common/mapping/Mapping.java index 7868e83a7ce..da3d8cf9aed 100644 --- a/model/model-common/src/main/java/com/evolveum/midpoint/model/common/mapping/Mapping.java +++ b/model/model-common/src/main/java/com/evolveum/midpoint/model/common/mapping/Mapping.java @@ -30,6 +30,7 @@ import javax.xml.datatype.XMLGregorianCalendar; import javax.xml.namespace.QName; +import com.evolveum.midpoint.security.api.SecurityEnforcer; import com.evolveum.prism.xml.ns._public.types_3.ItemPathType; import org.apache.commons.lang.Validate; @@ -114,6 +115,7 @@ public class Mapping implements DebugDumpable { private String mappingContextDescription = null; private MappingType mappingType; private ObjectResolver objectResolver = null; + private SecurityEnforcer securityEnforcer; // in order to get c:actor variable private Source defaultSource = null; private ItemDefinition defaultTargetDefinition = null; private ItemPath defaultTargetPath = null; @@ -148,11 +150,12 @@ public class Mapping implements DebugDumpable { private static final Trace LOGGER = TraceManager.getTrace(Mapping.class); - Mapping(MappingType mappingType, String contextDescription, ExpressionFactory expressionFactory) { + Mapping(MappingType mappingType, String contextDescription, ExpressionFactory expressionFactory, SecurityEnforcer securityEnforcer) { Validate.notNull(mappingType); this.contextDescription = contextDescription; this.mappingType = mappingType; this.expressionFactory = expressionFactory; + this.securityEnforcer = securityEnforcer; } public ObjectResolver getObjectResolver() { @@ -474,8 +477,10 @@ public void setRefinedObjectClassDefinition(RefinedObjectClassDefinition refined public void evaluate(Task task, OperationResult parentResult) throws ExpressionEvaluationException, ObjectNotFoundException, SchemaException { OperationResult result = parentResult.createMinorSubresult(Mapping.class.getName()+".evaluate"); - - traceEvaluationStart(); + + ExpressionUtil.addActorVariable(variables, securityEnforcer); + + traceEvaluationStart(); try { evaluateTimeConstraintValid(result); @@ -486,7 +491,7 @@ public void evaluate(Task task, OperationResult parentResult) throws ExpressionE traceDeferred(); return; } - + parseSources(result); parseTarget(); @@ -1034,7 +1039,7 @@ private PrismPropertyValue filterValue(PrismPropertyValue propertyValu * Shallow clone. Only the output is cloned deeply. */ public Mapping clone() { - Mapping clone = new Mapping(mappingType, contextDescription, expressionFactory); + Mapping clone = new Mapping(mappingType, contextDescription, expressionFactory, securityEnforcer); clone.conditionMaskNew = this.conditionMaskNew; clone.conditionMaskOld = this.conditionMaskOld; if (this.conditionOutputTriple != null) { diff --git a/model/model-common/src/main/java/com/evolveum/midpoint/model/common/mapping/MappingFactory.java b/model/model-common/src/main/java/com/evolveum/midpoint/model/common/mapping/MappingFactory.java index a1d2e9384a9..38865ccae25 100644 --- a/model/model-common/src/main/java/com/evolveum/midpoint/model/common/mapping/MappingFactory.java +++ b/model/model-common/src/main/java/com/evolveum/midpoint/model/common/mapping/MappingFactory.java @@ -35,6 +35,7 @@ import com.evolveum.midpoint.prism.PrismValue; import com.evolveum.midpoint.prism.crypto.Protector; import com.evolveum.midpoint.schema.util.ObjectResolver; +import com.evolveum.midpoint.security.api.SecurityEnforcer; import com.evolveum.midpoint.xml.ns._public.common.common_3.AsIsExpressionEvaluatorType; import com.evolveum.midpoint.xml.ns._public.common.common_3.ExpressionType; import com.evolveum.midpoint.xml.ns._public.common.common_3.GenerateExpressionEvaluatorType; @@ -54,6 +55,7 @@ public class MappingFactory { private Protector protector; private PrismContext prismContext; private FilterManager filterManager; + private SecurityEnforcer securityEnforcer; private boolean profiling = false; public ExpressionFactory getExpressionFactory() { @@ -96,7 +98,15 @@ public void setFilterManager(FilterManager filterManager) { this.filterManager = filterManager; } - public boolean isProfiling() { + public SecurityEnforcer getSecurityEnforcer() { + return securityEnforcer; + } + + public void setSecurityEnforcer(SecurityEnforcer securityEnforcer) { + this.securityEnforcer = securityEnforcer; + } + + public boolean isProfiling() { return profiling; } @@ -105,7 +115,7 @@ public void setProfiling(boolean profiling) { } public Mapping createMapping(MappingType mappingType, String shortDesc) { - Mapping mapping = new Mapping(mappingType, shortDesc, expressionFactory); + Mapping mapping = new Mapping<>(mappingType, shortDesc, expressionFactory, securityEnforcer); mapping.setFilterManager(filterManager); mapping.setProfiling(profiling); return mapping; diff --git a/model/model-impl/src/main/resources/ctx-model.xml b/model/model-impl/src/main/resources/ctx-model.xml index 28f7a9c1c3b..32e889cc1df 100644 --- a/model/model-impl/src/main/resources/ctx-model.xml +++ b/model/model-impl/src/main/resources/ctx-model.xml @@ -223,6 +223,9 @@ + + + Date: Fri, 27 Feb 2015 19:17:08 +0100 Subject: [PATCH 07/30] Fixing report-ds-impl and admin-gui tests. --- .../initial-objects/090-report-audit.xml | 8 +++---- .../100-report-reconciliation.xml | 8 +++---- .../107-report-user-accounts.xml | 8 +++---- .../initial-objects/108-report-user-orgs.xml | 8 +++---- .../initial-objects/109-report-user-roles.xml | 10 ++++----- .../initial-objects/110-report-user-list.xml | 8 +++---- ...111-report-reconciliation-shadow-owner.xml | 8 +++---- model/report-ds-impl/pom.xml | 18 ++++++++++------ model/report-ds-impl/testng.xml | 21 +++++++++++++++++++ 9 files changed, 55 insertions(+), 42 deletions(-) create mode 100644 model/report-ds-impl/testng.xml diff --git a/gui/admin-gui/src/main/resources/initial-objects/090-report-audit.xml b/gui/admin-gui/src/main/resources/initial-objects/090-report-audit.xml index 4cc32027a28..62b24a047c6 100644 --- a/gui/admin-gui/src/main/resources/initial-objects/090-report-audit.xml +++ b/gui/admin-gui/src/main/resources/initial-objects/090-report-audit.xml @@ -1,8 +1,7 @@ - - Audit logs report @@ -20,4 +19,3 @@ landscape xls - \ No newline at end of file diff --git a/gui/admin-gui/src/main/resources/initial-objects/100-report-reconciliation.xml b/gui/admin-gui/src/main/resources/initial-objects/100-report-reconciliation.xml index 001eec7faa7..d02a0cf6811 100644 --- a/gui/admin-gui/src/main/resources/initial-objects/100-report-reconciliation.xml +++ b/gui/admin-gui/src/main/resources/initial-objects/100-report-reconciliation.xml @@ -1,8 +1,7 @@ - - Reconciliation report @@ -26,4 +25,3 @@ landscape pdf - \ No newline at end of file diff --git a/gui/admin-gui/src/main/resources/initial-objects/107-report-user-accounts.xml b/gui/admin-gui/src/main/resources/initial-objects/107-report-user-accounts.xml index 0434cb426db..67801f8087a 100644 --- a/gui/admin-gui/src/main/resources/initial-objects/107-report-user-accounts.xml +++ b/gui/admin-gui/src/main/resources/initial-objects/107-report-user-accounts.xml @@ -1,8 +1,7 @@ - - User accounts subreport @@ -19,4 +18,3 @@ landscape xls - \ No newline at end of file diff --git a/gui/admin-gui/src/main/resources/initial-objects/108-report-user-orgs.xml b/gui/admin-gui/src/main/resources/initial-objects/108-report-user-orgs.xml index b3b3308a570..23cc2caa22f 100644 --- a/gui/admin-gui/src/main/resources/initial-objects/108-report-user-orgs.xml +++ b/gui/admin-gui/src/main/resources/initial-objects/108-report-user-orgs.xml @@ -1,8 +1,7 @@ - - User orgs subreport @@ -19,4 +18,3 @@ landscape xls - \ No newline at end of file diff --git a/gui/admin-gui/src/main/resources/initial-objects/109-report-user-roles.xml b/gui/admin-gui/src/main/resources/initial-objects/109-report-user-roles.xml index f43669d937b..5eae05ec2b4 100644 --- a/gui/admin-gui/src/main/resources/initial-objects/109-report-user-roles.xml +++ b/gui/admin-gui/src/main/resources/initial-objects/109-report-user-roles.xml @@ -1,11 +1,10 @@ - - - User roles subreport + User roles subreport User roles subreport for midpoint users. 2015-02-26T14:46:27.195+01:00 @@ -19,4 +18,3 @@ landscape xls - \ No newline at end of file diff --git a/gui/admin-gui/src/main/resources/initial-objects/110-report-user-list.xml b/gui/admin-gui/src/main/resources/initial-objects/110-report-user-list.xml index 7a4be6ecdfb..7460ccb0e77 100644 --- a/gui/admin-gui/src/main/resources/initial-objects/110-report-user-list.xml +++ b/gui/admin-gui/src/main/resources/initial-objects/110-report-user-list.xml @@ -1,8 +1,7 @@ - - Users in MidPoint @@ -41,4 +40,3 @@ landscape xls - \ No newline at end of file diff --git a/gui/admin-gui/src/main/resources/initial-objects/111-report-reconciliation-shadow-owner.xml b/gui/admin-gui/src/main/resources/initial-objects/111-report-reconciliation-shadow-owner.xml index 0f01646679b..3d55572d9af 100644 --- a/gui/admin-gui/src/main/resources/initial-objects/111-report-reconciliation-shadow-owner.xml +++ b/gui/admin-gui/src/main/resources/initial-objects/111-report-reconciliation-shadow-owner.xml @@ -1,8 +1,7 @@ - - Shadow owner subreport @@ -61,4 +60,3 @@ - \ No newline at end of file diff --git a/model/report-ds-impl/pom.xml b/model/report-ds-impl/pom.xml index c91a83ba3b0..853ecd8aef9 100644 --- a/model/report-ds-impl/pom.xml +++ b/model/report-ds-impl/pom.xml @@ -124,12 +124,18 @@ - - - - - - + + org.testng + testng + test + + + + com.evolveum.midpoint.tools + test-ng + 3.2-SNAPSHOT + test + \ No newline at end of file diff --git a/model/report-ds-impl/testng.xml b/model/report-ds-impl/testng.xml new file mode 100644 index 00000000000..5aff4ad6b4d --- /dev/null +++ b/model/report-ds-impl/testng.xml @@ -0,0 +1,21 @@ + + + + + + + From 90b06dc784b78f134550e9ad99a55cb9329ea139 Mon Sep 17 00:00:00 2001 From: Pavol Mederly Date: Fri, 27 Feb 2015 21:40:15 +0100 Subject: [PATCH 08/30] Experimental implementation of event.isRelatedToItem(itemPath). --- .../midpoint/prism/path/ItemPath.java | 12 +- .../notifications/api/events/BaseEvent.java | 128 ++++++++++++++++++ .../notifications/api/events/Event.java | 23 ++++ .../notifications/api/events/ModelEvent.java | 7 + .../api/events/ResourceObjectEvent.java | 6 + .../api/events/WorkflowEvent.java | 5 + 6 files changed, 179 insertions(+), 2 deletions(-) diff --git a/infra/prism/src/main/java/com/evolveum/midpoint/prism/path/ItemPath.java b/infra/prism/src/main/java/com/evolveum/midpoint/prism/path/ItemPath.java index 827b4504dd0..c3022fb0d3c 100644 --- a/infra/prism/src/main/java/com/evolveum/midpoint/prism/path/ItemPath.java +++ b/infra/prism/src/main/java/com/evolveum/midpoint/prism/path/ItemPath.java @@ -59,8 +59,16 @@ public ItemPath(QName... qnames) { add(qname); } } - - public ItemPath(ItemPath parentPath, QName subName) { + + public ItemPath(String... names) { + this.segments = new ArrayList(names.length); + for (String name : names) { + add(new QName(name)); + } + } + + + public ItemPath(ItemPath parentPath, QName subName) { this.segments = new ArrayList(parentPath.segments.size()+1); segments.addAll(parentPath.segments); add(subName); diff --git a/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/BaseEvent.java b/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/BaseEvent.java index 12e81f09716..04d65dca5d3 100644 --- a/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/BaseEvent.java +++ b/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/BaseEvent.java @@ -16,7 +16,18 @@ package com.evolveum.midpoint.notifications.api.events; +import com.evolveum.midpoint.prism.Item; +import com.evolveum.midpoint.prism.PrismContainer; +import com.evolveum.midpoint.prism.PrismContainerValue; +import com.evolveum.midpoint.prism.PrismProperty; +import com.evolveum.midpoint.prism.PrismReference; +import com.evolveum.midpoint.prism.PrismValue; import com.evolveum.midpoint.prism.delta.ChangeType; +import com.evolveum.midpoint.prism.delta.ItemDelta; +import com.evolveum.midpoint.prism.delta.ObjectDelta; +import com.evolveum.midpoint.prism.path.IdItemPathSegment; +import com.evolveum.midpoint.prism.path.ItemPath; +import com.evolveum.midpoint.prism.path.NameItemPathSegment; import com.evolveum.midpoint.schema.constants.SchemaConstants; import com.evolveum.midpoint.schema.result.OperationResult; import com.evolveum.midpoint.task.api.LightweightIdentifier; @@ -24,9 +35,13 @@ import com.evolveum.midpoint.xml.ns._public.common.common_3.EventCategoryType; import com.evolveum.midpoint.xml.ns._public.common.common_3.EventOperationType; import com.evolveum.midpoint.xml.ns._public.common.common_3.EventStatusType; +import com.evolveum.midpoint.xml.ns._public.common.common_3.FocusType; +import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectType; import javax.xml.namespace.QName; +import java.util.Collection; +import java.util.List; import java.util.Map; /** @@ -159,4 +174,117 @@ public void createExpressionVariables(Map variables, OperationRes variables.put(SchemaConstants.C_REQUESTER, requester != null ? requester.resolveObjectType(result) : null); variables.put(SchemaConstants.C_REQUESTEE, requestee != null ? requestee.resolveObjectType(result) : null); } + + // Finding items in deltas/objects + // this is similar to delta.hasItemDelta but much, much more relaxed (we completely ignore ID path segments and we take subpaths into account) + // + // Very experimental implementation. Needs a bit of time to clean up and test adequately. + public boolean containsItem(ObjectDelta delta, ItemPath itemPath) { + if (delta.getChangeType() == ChangeType.ADD) { + return containsItem(delta.getObjectToAdd(), itemPath); + } else if (delta.getChangeType() == ChangeType.MODIFY) { + return containsItemInModifications(delta.getModifications(), itemPath); + } else { + return false; + } + } + + private boolean containsItemInModifications(Collection modifications, ItemPath itemPath) { + for (ItemDelta itemDelta : modifications) { + if (containsItem(itemDelta, itemPath)) { + return true; + } + } + return false; + } + + private boolean containsItem(ItemDelta itemDelta, ItemPath itemPath) { + ItemPath namesOnlyPathTested = itemPath.namedSegmentsOnly(); + ItemPath namesOnlyPathInDelta = itemDelta.getPath().namedSegmentsOnly(); + if (namesOnlyPathTested.isSubPathOrEquivalent(namesOnlyPathInDelta)) { + return true; + } + // however, we can add/delete whole container (containing part of the path) + // e.g. we can test for activation/administrativeStatus, and the delta is: + // ADD activation VALUE (administrativeStatus=ENABLED) + if (!namesOnlyPathInDelta.isSubPath(namesOnlyPathTested)) { + return false; + } + // for ADD values we know + // for REPLACE values we know - for values being added, but NOT for values being left behind + // for DELETE we have a problem if we are deleting "by ID" - we just don't know if the value being deleted contains the path in question or not + + ItemPath remainder = namesOnlyPathTested.remainder(namesOnlyPathInDelta); + return containsItemInValues(itemDelta.getValuesToAdd(), remainder) || + containsItemInValues(itemDelta.getValuesToReplace(), remainder) || + containsItemInValues(itemDelta.getValuesToDelete(), remainder); + } + + // remainder contains only named segments and is not empty + private boolean containsItemInValues(Collection values, ItemPath remainder) { + if (values == null) { + return false; + } + for (PrismValue value : values) { + if (value instanceof PrismContainerValue) { // we do not want to look inside references nor primitive values + if (containsItem((PrismContainerValue) value, remainder)) { + return true; + } + } + } + return false; + } + + public boolean containsItem(List> deltas, ItemPath itemPath) { + for (ObjectDelta objectDelta : deltas) { + if (containsItem(objectDelta, itemPath)) { + return true; + } + } + return false; + } + + // itemPath is empty or starts with named item path segment + private boolean containsItem(PrismContainer container, ItemPath itemPath) { + if (container.size() == 0) { + return false; // there is a container, but no values + } + if (itemPath.isEmpty()) { + return true; + } + for (Object o : container.getValues()) { + if (containsItem((PrismContainerValue) o, itemPath)) { + return true; + } + } + return false; + } + + // path starts with named item path segment + private boolean containsItem(PrismContainerValue prismContainerValue, ItemPath itemPath) { + QName first = ((NameItemPathSegment) itemPath.first()).getName(); + Item item = prismContainerValue.findItem(first); + if (item == null) { + return false; + } + ItemPath pathTail = pathTail(itemPath); + if (item instanceof PrismContainer) { + return containsItem((PrismContainer) item, pathTail); + } else if (item instanceof PrismReference) { + return pathTail.isEmpty(); // we do not want to look inside references + } else if (item instanceof PrismProperty) { + return pathTail.isEmpty(); // ...neither inside atomic values + } else { + return false; // should not occur anyway + } + } + + private ItemPath pathTail(ItemPath itemPath) { + while (!itemPath.isEmpty() && itemPath.first() instanceof IdItemPathSegment) { + itemPath = itemPath.tail(); + } + return itemPath; + } + + } diff --git a/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/Event.java b/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/Event.java index 5173a90a21a..ee391d21882 100644 --- a/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/Event.java +++ b/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/Event.java @@ -16,6 +16,7 @@ package com.evolveum.midpoint.notifications.api.events; +import com.evolveum.midpoint.prism.path.ItemPath; import com.evolveum.midpoint.schema.result.OperationResult; import com.evolveum.midpoint.task.api.LightweightIdentifier; import com.evolveum.midpoint.xml.ns._public.common.common_3.*; @@ -78,4 +79,26 @@ public interface Event { void setRequestee(SimpleObjectRef requestee); void createExpressionVariables(Map variables, OperationResult result); + + /** + * Checks if the event is related to an item with a given path. + * The meaning of the result depends on a kind of event (focal, resource object, workflow) + * and on operation (add, modify, delete). + * + * Namely, this method is currently defined for ADD and MODIFY (not for DELETE) operations, + * for focal and resource objects events (not for workflow ones). + * + * For MODIFY it checks whether an item with a given path is touched. + * For ADD it checks whether there is a value for an item with a given path in the object created. + * + * For unsupported events the method returns false. + * + * Paths are compared without taking ID segments into account. + * + * EXPERIMENTAL; does not always work (mainly for values being deleted) + * + * @param itemPath + * @return + */ + boolean isRelatedToItem(ItemPath itemPath); } diff --git a/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/ModelEvent.java b/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/ModelEvent.java index 6fa8d6f7e84..002cb4a0902 100644 --- a/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/ModelEvent.java +++ b/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/ModelEvent.java @@ -23,6 +23,7 @@ import com.evolveum.midpoint.prism.PrismContext; import com.evolveum.midpoint.prism.delta.ChangeType; import com.evolveum.midpoint.prism.delta.ObjectDelta; +import com.evolveum.midpoint.prism.path.ItemPath; import com.evolveum.midpoint.schema.ObjectDeltaOperation; import com.evolveum.midpoint.task.api.LightweightIdentifierGenerator; import com.evolveum.midpoint.util.exception.SchemaException; @@ -180,4 +181,10 @@ public boolean hasFocusOfType(QName focusType) { } return hasFocusOfType(expectedClass); } + + @Override + public boolean isRelatedToItem(ItemPath itemPath) { + return containsItem(getFocusDeltas(), itemPath); + } + } diff --git a/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/ResourceObjectEvent.java b/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/ResourceObjectEvent.java index e32c2da7e9a..9d6e7b0e7a4 100644 --- a/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/ResourceObjectEvent.java +++ b/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/ResourceObjectEvent.java @@ -19,6 +19,7 @@ import com.evolveum.midpoint.notifications.api.OperationStatus; import com.evolveum.midpoint.prism.delta.ChangeType; import com.evolveum.midpoint.prism.delta.ObjectDelta; +import com.evolveum.midpoint.prism.path.ItemPath; import com.evolveum.midpoint.provisioning.api.ResourceOperationDescription; import com.evolveum.midpoint.task.api.LightweightIdentifierGenerator; import com.evolveum.midpoint.util.logging.Trace; @@ -128,6 +129,11 @@ public boolean isStatusType(EventStatusType eventStatusType) { return operationStatus.matchesEventStatusType(eventStatusType); } + @Override + public boolean isRelatedToItem(ItemPath itemPath) { + return containsItem(getShadowDelta(), itemPath); + } + @Override public String toString() { return "ResourceObjectEvent{" + diff --git a/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/WorkflowEvent.java b/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/WorkflowEvent.java index bc0bdacad3a..826e8906b07 100644 --- a/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/WorkflowEvent.java +++ b/model/notifications-api/src/main/java/com/evolveum/midpoint/notifications/api/events/WorkflowEvent.java @@ -19,6 +19,7 @@ import com.evolveum.midpoint.notifications.api.OperationStatus; import com.evolveum.midpoint.prism.PrismObject; import com.evolveum.midpoint.prism.delta.ChangeType; +import com.evolveum.midpoint.prism.path.ItemPath; import com.evolveum.midpoint.task.api.LightweightIdentifierGenerator; import com.evolveum.midpoint.wf.util.ApprovalUtils; import com.evolveum.midpoint.xml.ns._public.common.common_3.EventOperationType; @@ -114,6 +115,10 @@ private OperationStatus resultToStatus(ChangeType changeType, String decision) { } } + @Override + public boolean isRelatedToItem(ItemPath itemPath) { + return false; + } @Override public String toString() { From 2fbe37e42e9c7d34ff23280b6a0f7ad5811e1307 Mon Sep 17 00:00:00 2001 From: Pavol Mederly Date: Sun, 1 Mar 2015 00:27:00 +0100 Subject: [PATCH 09/30] Fixed some of xmlns problems in longtests. (Partly?) fixed determination of ObjectPolicyConfigurationType. --- .../model/impl/lens/projector/ContextLoader.java | 16 +++++++++++----- .../science/resource-opendj-ad-simulation.xml | 1 + .../test/resources/science/role-statistics.xml | 3 ++- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/ContextLoader.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/ContextLoader.java index 0f0b54e3d29..32346f79543 100644 --- a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/ContextLoader.java +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/ContextLoader.java @@ -357,6 +357,14 @@ private void loadFromSystemConfig(LensContext context, return; } SystemConfigurationType systemConfigurationType = systemConfiguration.asObjectable(); + + if (context.getFocusContext() != null) { + if (context.getFocusContext().getObjectPolicyConfigurationType() == null) { + ObjectPolicyConfigurationType policyConfigurationType = + ModelUtils.determineObjectPolicyConfiguration(context.getFocusContext().getObjectTypeClass(), systemConfigurationType); + context.getFocusContext().setObjectPolicyConfigurationType(policyConfigurationType); + } + } if (context.getFocusTemplate() == null) { PrismObject focusTemplate = determineFocusTemplate(context, result); @@ -387,16 +395,14 @@ private void loadFromSystemConfig(LensContext context, context.setGlobalPasswordPolicy(globalPasswordPolicy); } } - + + // expects that object policy configuration is already set in focusContext private PrismObject determineFocusTemplate(LensContext context, OperationResult result) throws ObjectNotFoundException, SchemaException, ConfigurationException { - SystemConfigurationType systemConfigurationType = context.getSystemConfiguration().asObjectable(); LensFocusContext focusContext = context.getFocusContext(); if (focusContext == null) { return null; } - Class focusType = focusContext.getObjectTypeClass(); - - ObjectPolicyConfigurationType policyConfigurationType = ModelUtils.determineObjectPolicyConfiguration(focusType, systemConfigurationType); + ObjectPolicyConfigurationType policyConfigurationType = focusContext.getObjectPolicyConfigurationType(); if (policyConfigurationType == null) { LOGGER.trace("No default object template"); return null; diff --git a/testing/story/src/test/resources/science/resource-opendj-ad-simulation.xml b/testing/story/src/test/resources/science/resource-opendj-ad-simulation.xml index 41855ae491e..f376f33efce 100644 --- a/testing/story/src/test/resources/science/resource-opendj-ad-simulation.xml +++ b/testing/story/src/test/resources/science/resource-opendj-ad-simulation.xml @@ -27,6 +27,7 @@ xmlns:ri="http://midpoint.evolveum.com/xml/ns/public/resource/instance-3" xmlns:icfs="http://midpoint.evolveum.com/xml/ns/public/connector/icf-1/resource-schema-3" xmlns:func="http://midpoint.evolveum.com/xml/ns/public/function/basic-3" + xmlns:ext="http://midpoint.evolveum.com/xml/ns/science/user/ext" > Test AD (OpenDJ simulation) diff --git a/testing/story/src/test/resources/science/role-statistics.xml b/testing/story/src/test/resources/science/role-statistics.xml index 313e455c712..7d468d75721 100644 --- a/testing/story/src/test/resources/science/role-statistics.xml +++ b/testing/story/src/test/resources/science/role-statistics.xml @@ -1,4 +1,5 @@ Stats @@ -13,7 +14,7 @@ - attributes/icsf:name + attributes/icfs:name CN=StatsUsers,OU=groups,DC=example,DC=com From b5f40b6b0ae43341b0bd4c142cc40e0dcd5a432e Mon Sep 17 00:00:00 2001 From: Erik Suta Date: Mon, 2 Mar 2015 11:03:45 +0100 Subject: [PATCH 10/30] MID-2117 - validation plugin interface initial implementation. --- .../validation/IMidpointFormValidator.java | 87 +++++++++++++++++++ .../validation/MidpointFormValidator.java | 44 ++++++++++ .../validation/SimpleValidationError.java | 78 +++++++++++++++++ 3 files changed, 209 insertions(+) create mode 100644 gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/IMidpointFormValidator.java create mode 100644 gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidator.java create mode 100644 gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/SimpleValidationError.java diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/IMidpointFormValidator.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/IMidpointFormValidator.java new file mode 100644 index 00000000000..b1ac3823de6 --- /dev/null +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/IMidpointFormValidator.java @@ -0,0 +1,87 @@ +/* + * Copyright (c) 2010-2015 Evolveum + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.evolveum.midpoint.web.util.validation; + +import com.evolveum.midpoint.prism.PrismObject; +import com.evolveum.midpoint.prism.delta.ObjectDelta; +import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectType; + +import java.util.Collection; + +/** + *

+ * A simple interface that aims to work as a custom validation plugin used in GUI. + * This plugin should be used BEFORE the changes made by user are sent for processing + * to model component. + *

+ * + *

+ * This plugin serves as another form of validation process and can be used, when + * standard validation mechanism of GUI forms (usually aimed to validate one field + * at a time) is not enough. A classic use case may be a situation, when we need to + * examine the relationship between attributes edited via GUI before sending them + * for processing to model component. + *

+ * + * @author shood + * */ +public interface IMidpointFormValidator { + + /** + *

+ * Performs validation on an instance of object. Entire data + * of object are accessible for validation purposes + *

+ * + * @param object + * An object to validate + * + * @return A collection of SimpleValidationError instances + * + * */ + Collection validateObject(PrismObject object); + + /** + *

+ * Performs validation on a collection of ObjectDelta objects + *

+ * + * @param deltas + * A collection of ObjectDelta instances - a representation of changes made by user + * + * @return A collection of SimpleValidationError instances + * + * */ + Collection validateObject(Collection> deltas); + + /** + * Performs a validation on an instance of object. Entire data of the object + * are accessible for validation purposes as well as a collection of ObjectDelta + * instances - the collection of current changes made by user prior to + * validation. + * + * @param object + * An object to validate + * + * @param deltas + * A collection of ObjectDelta instances - a representation of changes made by user + * + * @return A collection of SimpleValidationError instances + * + * */ + Collection validateObject(PrismObject object, Collection> deltas); +} diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidator.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidator.java new file mode 100644 index 00000000000..e2c02ceb4b5 --- /dev/null +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidator.java @@ -0,0 +1,44 @@ +/* + * Copyright (c) 2010-2015 Evolveum + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.evolveum.midpoint.web.util.validation; + +import com.evolveum.midpoint.prism.PrismObject; +import com.evolveum.midpoint.prism.delta.ObjectDelta; +import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectType; + +import java.util.Collection; + +/** + * TODO - implement + * */ +public class MidpointFormValidator implements IMidpointFormValidator{ + + @Override + public Collection validateObject(PrismObject object) { + return null; + } + + @Override + public Collection validateObject(Collection> deltas) { + return null; + } + + @Override + public Collection validateObject(PrismObject object, Collection> deltas) { + return null; + } +} diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/SimpleValidationError.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/SimpleValidationError.java new file mode 100644 index 00000000000..5c515eaed51 --- /dev/null +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/SimpleValidationError.java @@ -0,0 +1,78 @@ +/* + * Copyright (c) 2010-2015 Evolveum + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.evolveum.midpoint.web.util.validation; + +import com.evolveum.prism.xml.ns._public.types_3.ItemPathType; + +import java.io.Serializable; + +/** + * This is just a simple representation of custom form validation error. Currently, it holds + * only a simple String 'message' attribute as an information about validation error and + * an ItemPathType 'attribute' as a path to the source of error. Feel free + * to add any information about validation errors that yout custom validator requires. + * + * @author shood + * */ +public class SimpleValidationError implements Serializable{ + + private String message; + private ItemPathType attribute; + + public SimpleValidationError() {} + + public SimpleValidationError(String message, ItemPathType attribute) { + this.message = message; + this.attribute = attribute; + } + + public String getMessage() { + return message; + } + + public void setMessage(String message) { + this.message = message; + } + + public ItemPathType getAttribute() { + return attribute; + } + + public void setAttribute(ItemPathType attribute) { + this.attribute = attribute; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (!(o instanceof SimpleValidationError)) return false; + + SimpleValidationError that = (SimpleValidationError) o; + + if (attribute != null ? !attribute.equals(that.attribute) : that.attribute != null) return false; + if (message != null ? !message.equals(that.message) : that.message != null) return false; + + return true; + } + + @Override + public int hashCode() { + int result = message != null ? message.hashCode() : 0; + result = 31 * result + (attribute != null ? attribute.hashCode() : 0); + return result; + } +} From 095cdf011d07d5c4c90875411aa720fb9d755d4b Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Mon, 2 Mar 2015 12:44:23 +0100 Subject: [PATCH 11/30] Validation interface conventions --- .../validation/IMidpointFormValidator.java | 87 ------------------- .../validation/MidpointFormValidator.java | 48 ++++++---- .../validation/MidpointFormValidatorImpl.java | 34 ++++++++ .../validation/SimpleValidationError.java | 2 +- 4 files changed, 67 insertions(+), 104 deletions(-) delete mode 100644 gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/IMidpointFormValidator.java create mode 100644 gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorImpl.java diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/IMidpointFormValidator.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/IMidpointFormValidator.java deleted file mode 100644 index b1ac3823de6..00000000000 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/IMidpointFormValidator.java +++ /dev/null @@ -1,87 +0,0 @@ -/* - * Copyright (c) 2010-2015 Evolveum - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.evolveum.midpoint.web.util.validation; - -import com.evolveum.midpoint.prism.PrismObject; -import com.evolveum.midpoint.prism.delta.ObjectDelta; -import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectType; - -import java.util.Collection; - -/** - *

- * A simple interface that aims to work as a custom validation plugin used in GUI. - * This plugin should be used BEFORE the changes made by user are sent for processing - * to model component. - *

- * - *

- * This plugin serves as another form of validation process and can be used, when - * standard validation mechanism of GUI forms (usually aimed to validate one field - * at a time) is not enough. A classic use case may be a situation, when we need to - * examine the relationship between attributes edited via GUI before sending them - * for processing to model component. - *

- * - * @author shood - * */ -public interface IMidpointFormValidator { - - /** - *

- * Performs validation on an instance of object. Entire data - * of object are accessible for validation purposes - *

- * - * @param object - * An object to validate - * - * @return A collection of SimpleValidationError instances - * - * */ - Collection validateObject(PrismObject object); - - /** - *

- * Performs validation on a collection of ObjectDelta objects - *

- * - * @param deltas - * A collection of ObjectDelta instances - a representation of changes made by user - * - * @return A collection of SimpleValidationError instances - * - * */ - Collection validateObject(Collection> deltas); - - /** - * Performs a validation on an instance of object. Entire data of the object - * are accessible for validation purposes as well as a collection of ObjectDelta - * instances - the collection of current changes made by user prior to - * validation. - * - * @param object - * An object to validate - * - * @param deltas - * A collection of ObjectDelta instances - a representation of changes made by user - * - * @return A collection of SimpleValidationError instances - * - * */ - Collection validateObject(PrismObject object, Collection> deltas); -} diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidator.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidator.java index e2c02ceb4b5..d7be028447f 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidator.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidator.java @@ -23,22 +23,38 @@ import java.util.Collection; /** - * TODO - implement + *

+ * A simple interface that aims to work as a custom validation plugin used in GUI. + * This plugin should be used BEFORE the changes made by user are sent for processing + * to model component. + *

+ * + *

+ * This plugin serves as another form of validation process and can be used, when + * standard validation mechanism of GUI forms (usually aimed to validate one field + * at a time) is not enough. A classic use case may be a situation, when we need to + * examine the relationship between attributes edited via GUI before sending them + * for processing to model component. + *

+ * + * @author shood * */ -public class MidpointFormValidator implements IMidpointFormValidator{ - - @Override - public Collection validateObject(PrismObject object) { - return null; - } - - @Override - public Collection validateObject(Collection> deltas) { - return null; - } +public interface MidpointFormValidator { - @Override - public Collection validateObject(PrismObject object, Collection> deltas) { - return null; - } + /** + * Performs a validation on an instance of object. Entire data of the object + * are accessible for validation purposes as well as a collection of ObjectDelta + * instances - the collection of current changes made by user prior to + * validation. + * + * @param object + * An object to validate + * + * @param deltas + * A collection of ObjectDelta instances - a representation of changes made by user + * + * @return A collection of SimpleValidationError instances + * + * */ + Collection validateObject(PrismObject object, Collection> deltas); } diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorImpl.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorImpl.java new file mode 100644 index 00000000000..e4b060cb59e --- /dev/null +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorImpl.java @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2010-2015 Evolveum + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.evolveum.midpoint.web.util.validation; + +import com.evolveum.midpoint.prism.PrismObject; +import com.evolveum.midpoint.prism.delta.ObjectDelta; +import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectType; + +import java.util.Collection; + +/** + * TODO - implement + * */ +public class MidpointFormValidatorImpl implements MidpointFormValidator { + + @Override + public Collection validateObject(PrismObject object, Collection> deltas) { + return null; + } +} diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/SimpleValidationError.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/SimpleValidationError.java index 5c515eaed51..ef9b5f962f2 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/SimpleValidationError.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/SimpleValidationError.java @@ -28,7 +28,7 @@ * * @author shood * */ -public class SimpleValidationError implements Serializable{ +public class SimpleValidationError implements Serializable { private String message; private ItemPathType attribute; From 6e38f1b0a3d17aa468b4480b809bc715c62073f4 Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Mon, 2 Mar 2015 13:04:48 +0100 Subject: [PATCH 12/30] Validator registry --- .../MidpointFormValidatorRegistry.java | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorRegistry.java diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorRegistry.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorRegistry.java new file mode 100644 index 00000000000..c02eb55b1dc --- /dev/null +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorRegistry.java @@ -0,0 +1,40 @@ +/** + * Copyright (c) 2015 Evolveum + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.evolveum.midpoint.web.util.validation; + +import java.util.ArrayList; +import java.util.Collection; + +import org.springframework.stereotype.Component; + +/** + * @author semancik + * + */ +@Component +public class MidpointFormValidatorRegistry { + + private Collection validators = new ArrayList<>(); + + public void registerValidator(MidpointFormValidator validator) { + validators.add(validator); + } + + public Collection getValidators() { + return validators; + } + +} From d4f1cedc4183768d4ca5d33be195fae96ed4258e Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Mon, 2 Mar 2015 14:03:06 +0100 Subject: [PATCH 13/30] Upgrading groovy to 2.4.0 --- build-system/pom.xml | 7 ++++++- model/model-common/pom.xml | 5 ++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/build-system/pom.xml b/build-system/pom.xml index a3dcd2d3736..17455c9deaf 100644 --- a/build-system/pom.xml +++ b/build-system/pom.xml @@ -67,7 +67,7 @@ 9.3-1102-jdbc41 5.1.31 6.17.0 - 1.8.6 + 2.4.0 5.17.0 5.17.0 1.3 @@ -150,6 +150,11 @@ groovy ${groovy.version} + + org.codehaus.groovy + groovy-jsr223 + ${groovy.version} + com.h2database h2 diff --git a/model/model-common/pom.xml b/model/model-common/pom.xml index ee0ff617f87..9049452ca83 100644 --- a/model/model-common/pom.xml +++ b/model/model-common/pom.xml @@ -78,7 +78,10 @@ org.codehaus.groovy groovy - 1.8.6 + + + org.codehaus.groovy + groovy-jsr223 From 0689dd45b63b3c07f030cc3fce7c7aa461a1dcaa Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Mon, 2 Mar 2015 14:41:50 +0100 Subject: [PATCH 14/30] Fixing problem with objectPolicy matching, which also should fix MID-2236 --- .../evolveum/midpoint/schema/constants/ObjectTypes.java | 2 +- .../evolveum/midpoint/model/impl/lens/LensContext.java | 8 ++++---- .../midpoint/model/impl/lens/projector/ContextLoader.java | 4 ++-- .../midpoint/model/test/AbstractModelIntegrationTest.java | 3 ++- .../com/evolveum/midpoint/testing/story/TestVillage.java | 6 +++++- 5 files changed, 14 insertions(+), 9 deletions(-) diff --git a/infra/schema/src/main/java/com/evolveum/midpoint/schema/constants/ObjectTypes.java b/infra/schema/src/main/java/com/evolveum/midpoint/schema/constants/ObjectTypes.java index fbc95c02aba..e1fa762be58 100644 --- a/infra/schema/src/main/java/com/evolveum/midpoint/schema/constants/ObjectTypes.java +++ b/infra/schema/src/main/java/com/evolveum/midpoint/schema/constants/ObjectTypes.java @@ -172,7 +172,7 @@ public static ObjectTypes getObjectTypeFromTypeQName(QName typeQName) { // END OF UGLY HACK for (ObjectTypes type : values()) { - if (type.getTypeQName().equals(typeQName)) { + if (QNameUtil.match(type.getTypeQName(), typeQName)) { return type; } } diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/LensContext.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/LensContext.java index b58e985bede..159159eb7bf 100644 --- a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/LensContext.java +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/LensContext.java @@ -252,6 +252,10 @@ public ObjectTemplateType getFocusTemplate() { return focusTemplate; } + public void setFocusTemplate(ObjectTemplateType focusTemplate) { + this.focusTemplate = focusTemplate; + } + public LensProjectionContext findProjectionContext(ResourceShadowDiscriminator rat, String oid) { LensProjectionContext projectionContext = findProjectionContext(rat); @@ -271,10 +275,6 @@ public void setSystemConfiguration( this.systemConfiguration = systemConfiguration; } - public void setFocusTemplate(ObjectTemplateType focusTemplate) { - this.focusTemplate = focusTemplate; - } - public ProjectionPolicyType getAccountSynchronizationSettings() { return accountSynchronizationSettings; } diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/ContextLoader.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/ContextLoader.java index 32346f79543..adc45a0a42d 100644 --- a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/ContextLoader.java +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/ContextLoader.java @@ -404,12 +404,12 @@ private PrismObject determineFocusTem } ObjectPolicyConfigurationType policyConfigurationType = focusContext.getObjectPolicyConfigurationType(); if (policyConfigurationType == null) { - LOGGER.trace("No default object template"); + LOGGER.trace("No default object template (no policy)"); return null; } ObjectReferenceType templateRef = policyConfigurationType.getObjectTemplateRef(); if (templateRef == null) { - LOGGER.trace("No default object template"); + LOGGER.trace("No default object template (no templateRef)"); return null; } diff --git a/model/model-test/src/main/java/com/evolveum/midpoint/model/test/AbstractModelIntegrationTest.java b/model/model-test/src/main/java/com/evolveum/midpoint/model/test/AbstractModelIntegrationTest.java index 41d355156c9..40f0c03ae8d 100644 --- a/model/model-test/src/main/java/com/evolveum/midpoint/model/test/AbstractModelIntegrationTest.java +++ b/model/model-test/src/main/java/com/evolveum/midpoint/model/test/AbstractModelIntegrationTest.java @@ -94,6 +94,7 @@ import com.evolveum.midpoint.test.util.TestUtil; import com.evolveum.midpoint.util.DebugUtil; import com.evolveum.midpoint.util.MiscUtil; +import com.evolveum.midpoint.util.QNameUtil; import com.evolveum.midpoint.util.exception.CommunicationException; import com.evolveum.midpoint.util.exception.ConfigurationException; import com.evolveum.midpoint.util.exception.ExpressionEvaluationException; @@ -1539,7 +1540,7 @@ protected void setDefaultObjectTemplate(QName objectType, String userTemplateOid PrismContainerValue oldValue = null; for (ObjectPolicyConfigurationType focusPolicyType: systemConfig.asObjectable().getDefaultObjectPolicyConfiguration()) { - if (objectType.equals(focusPolicyType.getType())) { + if (QNameUtil.match(objectType, focusPolicyType.getType())) { oldValue = focusPolicyType.asPrismContainerValue(); } } diff --git a/testing/story/src/test/java/com/evolveum/midpoint/testing/story/TestVillage.java b/testing/story/src/test/java/com/evolveum/midpoint/testing/story/TestVillage.java index 56b78240fd9..359ba3ab437 100644 --- a/testing/story/src/test/java/com/evolveum/midpoint/testing/story/TestVillage.java +++ b/testing/story/src/test/java/com/evolveum/midpoint/testing/story/TestVillage.java @@ -1,6 +1,6 @@ package com.evolveum.midpoint.testing.story; /* - * Copyright (c) 2014 Evolveum + * Copyright (c) 2014-2015 Evolveum * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -335,6 +335,10 @@ public void test000Sanity() throws Exception { OperationResult testResultOpenDj = modelService.testResource(RESOURCE_OPENDJ_OID, task); TestUtil.assertSuccess(testResultOpenDj); + SystemConfigurationType systemConfiguration = getSystemConfiguration(); + assertNotNull("No system configuration", systemConfiguration); + display("System config", systemConfiguration); + waitForTaskStart(TASK_TRIGGER_SCANNER_OID, true); waitForTaskStart(TASK_VALIDITY_SCANNER_OID, true); waitForTaskStart(TASK_LIVE_SYNC_DUMMY_SOURCE_OID, false); From 674125537b41597d8b597ab7447806243bbc32f2 Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Mon, 2 Mar 2015 16:07:00 +0100 Subject: [PATCH 15/30] Reworking LookupTable to a more generic "relational object". --- .../resources/xml/ns/public/annotation-3.xsd | 24 ++++- .../midpoint/schema/GetOperationOptions.java | 14 +-- .../schema/RelationalValueSearchQuery.java | 93 +++++++++++++++++++ .../schema/RelationalValueSearchType.java | 4 +- .../xml/ns/public/common/common-3.xsd | 26 ++---- .../midpoint/schema/TestParseLookupTable.java | 14 +-- .../test/resources/common/lookup-table.xml | 6 +- .../midpoint/repo/api/RepositoryService.java | 25 +---- .../midpoint/repo/cache/RepositoryCache.java | 10 +- .../repo/sql/SqlRepositoryServiceImpl.java | 9 -- .../repo/sql/data/common/RLookupTable.java | 31 +++---- 11 files changed, 157 insertions(+), 99 deletions(-) create mode 100644 infra/schema/src/main/java/com/evolveum/midpoint/schema/RelationalValueSearchQuery.java rename repo/repo-api/src/main/java/com/evolveum/midpoint/repo/api/LookupTableSearchType.java => infra/schema/src/main/java/com/evolveum/midpoint/schema/RelationalValueSearchType.java (89%) diff --git a/infra/prism/src/main/resources/xml/ns/public/annotation-3.xsd b/infra/prism/src/main/resources/xml/ns/public/annotation-3.xsd index 664f3eade7e..81d78976ef6 100644 --- a/infra/prism/src/main/resources/xml/ns/public/annotation-3.xsd +++ b/infra/prism/src/main/resources/xml/ns/public/annotation-3.xsd @@ -1,7 +1,7 @@ @@ -7434,29 +7434,18 @@ Data structure that represents entire content of the lookup table. - - - - - - - - - - - - - - - Lookup table row. The table row is a (complex) property. It is intentionally not - a container, so we can avoid maintaining container IDs for each row. The delta semantics - has a slightly different meaning for the lookup tables. Each key must be unique and the key + The delta semantics has a slightly different meaning for the lookup tables. Each key must be unique and the key functions as an implicit identifier. E.g. adding a new row with a key that does not exist yet will insert a new row. Adding a new row with key that already exists will overwrite existing row. Replace operation on this property will efficiently clear the entire table and replace it with a new data. We do not recommend using this operation as it may be very inefficient. Add and delete operations are expected during normal operation. + + + + + @@ -7515,6 +7504,7 @@ + diff --git a/infra/schema/src/test/java/com/evolveum/midpoint/schema/TestParseLookupTable.java b/infra/schema/src/test/java/com/evolveum/midpoint/schema/TestParseLookupTable.java index b70ddd8a729..40e234c9b6a 100644 --- a/infra/schema/src/test/java/com/evolveum/midpoint/schema/TestParseLookupTable.java +++ b/infra/schema/src/test/java/com/evolveum/midpoint/schema/TestParseLookupTable.java @@ -14,7 +14,6 @@ import com.evolveum.midpoint.util.DOMUtil; import com.evolveum.midpoint.util.PrettyPrinter; import com.evolveum.midpoint.util.exception.SchemaException; -import com.evolveum.midpoint.xml.ns._public.common.common_3.LookupTableRowType; import com.evolveum.midpoint.xml.ns._public.common.common_3.LookupTableTableType; import com.evolveum.midpoint.xml.ns._public.common.common_3.LookupTableType; import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectTemplateType; @@ -88,24 +87,21 @@ private void assertTable(PrismObject table) { assertPropertyValue(table, "description", "description of lookup table"); assertPropertyDefinition(table, "description", DOMUtil.XSD_STRING, 0, 1); PrismContainer tableContainer = table.findContainer(LookupTableType.F_TABLE); - assertEquals("wrong number of tables", 1, tableContainer.size()); - PrismContainerValue tableValue = tableContainer.getValue(); - PrismProperty rowsProperty = tableValue.findProperty(LookupTableTableType.F_ROW); - assertEquals("wrong number of rows", 2, rowsProperty.size()); - assertRow((PrismPropertyValue) rowsProperty.getValue(0), + assertEquals("wrong number of rows", 2, tableContainer.size()); + assertRow(tableContainer.getValue(0), "first key", "first value", PrismTestUtil.createPolyStringType("first label"), XmlTypeConverter.createXMLGregorianCalendar("2013-05-07T10:38:21.350+02:00")); - assertRow((PrismPropertyValue) rowsProperty.getValue(1), + assertRow(tableContainer.getValue(1), "2 key", "2 value", PrismTestUtil.createPolyStringType("second ľábeľ", "second label"), XmlTypeConverter.createXMLGregorianCalendar("2013-05-07T10:40:21.350+02:00")); } - private void assertRow(PrismPropertyValue rowValue, String key, String value, PolyStringType label, XMLGregorianCalendar lastChangeTimestamp) { - LookupTableRowType row = rowValue.getValue(); + private void assertRow(PrismContainerValue tableContainerValue, String key, String value, PolyStringType label, XMLGregorianCalendar lastChangeTimestamp) { + LookupTableTableType row = tableContainerValue.asContainerable(); assertEquals("wrong key", key, row.getKey()); assertEquals("wrong value", value, row.getValue()); assertEquals("wrong label", label, row.getLabel()); diff --git a/infra/schema/src/test/resources/common/lookup-table.xml b/infra/schema/src/test/resources/common/lookup-table.xml index 6ac111aedc2..ac04b89523b 100644 --- a/infra/schema/src/test/resources/common/lookup-table.xml +++ b/infra/schema/src/test/resources/common/lookup-table.xml @@ -21,13 +21,12 @@ first lookup description of lookup table - first key first value 2013-05-07T10:38:21.350+02:00 - - +
+ 2 key2 value2013-05-07T10:40:21.350+02:00 -
\ No newline at end of file diff --git a/repo/repo-api/src/main/java/com/evolveum/midpoint/repo/api/RepositoryService.java b/repo/repo-api/src/main/java/com/evolveum/midpoint/repo/api/RepositoryService.java index 5d75b12afb9..f0adaefc754 100644 --- a/repo/repo-api/src/main/java/com/evolveum/midpoint/repo/api/RepositoryService.java +++ b/repo/repo-api/src/main/java/com/evolveum/midpoint/repo/api/RepositoryService.java @@ -26,6 +26,7 @@ import com.evolveum.midpoint.prism.query.ObjectPaging; import com.evolveum.midpoint.prism.query.ObjectQuery; import com.evolveum.midpoint.schema.GetOperationOptions; +import com.evolveum.midpoint.schema.RelationalValueSearchType; import com.evolveum.midpoint.schema.RepositoryDiag; import com.evolveum.midpoint.schema.ResultHandler; import com.evolveum.midpoint.schema.SearchResultList; @@ -38,7 +39,6 @@ import com.evolveum.midpoint.util.exception.SchemaException; import com.evolveum.midpoint.xml.ns._public.common.common_3.CleanupPolicyType; import com.evolveum.midpoint.xml.ns._public.common.common_3.FocusType; -import com.evolveum.midpoint.xml.ns._public.common.common_3.LookupTableRowType; import com.evolveum.midpoint.xml.ns._public.common.common_3.LookupTableType; import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectReferenceType; import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectType; @@ -478,29 +478,6 @@ PrismObject searchShadowOwner(String shadowOid, Collect List> listResourceObjectShadows(String resourceOid, Class resourceObjectShadowType, OperationResult parentResult) throws ObjectNotFoundException, SchemaException; - - /** - *

Select specified rows from the lookup table.

- *

- * This operation works only on lookup tables. If OID of any other object - * is specified as a parameter it results in an error. - *

- * - * @param lookupTableOid OID of the lookup table - * @param column name of the column to search - * @param searchValue value to search for - * @param searchType type of search (exact, substring, ...) - * @param paging paging parameters (page offset and size) - * @return selected table rows - * - * @throws ObjectNotFoundException - * specified object does not exist - * @throws SchemaException - * object is not of type {@link LookupTableType} - */ - List searchLookupTable(String lookupTableOid, QName column, String searchValue, - LookupTableSearchType searchType, ObjectPaging paging) throws ObjectNotFoundException, - SchemaException; /** * Provide repository run-time configuration and diagnostic information. diff --git a/repo/repo-cache/src/main/java/com/evolveum/midpoint/repo/cache/RepositoryCache.java b/repo/repo-cache/src/main/java/com/evolveum/midpoint/repo/cache/RepositoryCache.java index b3bed118010..bc585afe6a6 100644 --- a/repo/repo-cache/src/main/java/com/evolveum/midpoint/repo/cache/RepositoryCache.java +++ b/repo/repo-cache/src/main/java/com/evolveum/midpoint/repo/cache/RepositoryCache.java @@ -20,10 +20,10 @@ import com.evolveum.midpoint.prism.delta.ItemDelta; import com.evolveum.midpoint.prism.query.ObjectPaging; import com.evolveum.midpoint.prism.query.ObjectQuery; -import com.evolveum.midpoint.repo.api.LookupTableSearchType; import com.evolveum.midpoint.repo.api.RepoAddOptions; import com.evolveum.midpoint.repo.api.RepositoryService; import com.evolveum.midpoint.schema.GetOperationOptions; +import com.evolveum.midpoint.schema.RelationalValueSearchType; import com.evolveum.midpoint.schema.RepositoryDiag; import com.evolveum.midpoint.schema.ResultHandler; import com.evolveum.midpoint.schema.SearchResultList; @@ -36,7 +36,6 @@ import com.evolveum.midpoint.util.logging.Trace; import com.evolveum.midpoint.util.logging.TraceManager; import com.evolveum.midpoint.xml.ns._public.common.common_3.FocusType; -import com.evolveum.midpoint.xml.ns._public.common.common_3.LookupTableRowType; import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectType; import com.evolveum.midpoint.xml.ns._public.common.common_3.ShadowType; import com.evolveum.midpoint.xml.ns._public.common.common_3.TaskType; @@ -353,11 +352,4 @@ private void log(String message, Object... params) { PERFORMANCE_ADVISOR.trace(message, params); } } - - @Override - public List searchLookupTable(String lookupTableOid, QName column, - String searchValue, LookupTableSearchType searchType, ObjectPaging paging) - throws ObjectNotFoundException, SchemaException { - return repository.searchLookupTable(lookupTableOid, column, searchValue, searchType, paging); - } } diff --git a/repo/repo-sql-impl/src/main/java/com/evolveum/midpoint/repo/sql/SqlRepositoryServiceImpl.java b/repo/repo-sql-impl/src/main/java/com/evolveum/midpoint/repo/sql/SqlRepositoryServiceImpl.java index 7ee92cc06f3..6a67a27c016 100644 --- a/repo/repo-sql-impl/src/main/java/com/evolveum/midpoint/repo/sql/SqlRepositoryServiceImpl.java +++ b/repo/repo-sql-impl/src/main/java/com/evolveum/midpoint/repo/sql/SqlRepositoryServiceImpl.java @@ -26,7 +26,6 @@ import com.evolveum.midpoint.prism.path.ItemPath; import com.evolveum.midpoint.prism.polystring.PolyString; import com.evolveum.midpoint.prism.query.*; -import com.evolveum.midpoint.repo.api.LookupTableSearchType; import com.evolveum.midpoint.repo.api.RepoAddOptions; import com.evolveum.midpoint.repo.api.RepositoryService; import com.evolveum.midpoint.repo.sql.data.common.*; @@ -1654,12 +1653,4 @@ private boolean isAnySubordinateAttempt(String upperOrgOid, Collection l throw new SystemException("isAnySubordinateAttempt failed somehow, this really should not happen."); } - - @Override - public List searchLookupTable(String lookupTableOid, QName column, - String searchValue, LookupTableSearchType searchType, ObjectPaging paging) - throws ObjectNotFoundException, SchemaException { - // TODO implement - throw new UnsupportedOperationException(); - } } diff --git a/repo/repo-sql-impl/src/main/java/com/evolveum/midpoint/repo/sql/data/common/RLookupTable.java b/repo/repo-sql-impl/src/main/java/com/evolveum/midpoint/repo/sql/data/common/RLookupTable.java index 88dc505e0d0..3661a8cf32b 100644 --- a/repo/repo-sql-impl/src/main/java/com/evolveum/midpoint/repo/sql/data/common/RLookupTable.java +++ b/repo/repo-sql-impl/src/main/java/com/evolveum/midpoint/repo/sql/data/common/RLookupTable.java @@ -8,7 +8,6 @@ import com.evolveum.midpoint.repo.sql.util.RUtil; import com.evolveum.midpoint.schema.GetOperationOptions; import com.evolveum.midpoint.schema.SelectorOptions; -import com.evolveum.midpoint.xml.ns._public.common.common_3.LookupTableRowType; import com.evolveum.midpoint.xml.ns._public.common.common_3.LookupTableTableType; import com.evolveum.midpoint.xml.ns._public.common.common_3.LookupTableType; import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectType; @@ -61,21 +60,21 @@ public static void copyFromJAXB(LookupTableType jaxb, RLookupTable repo, PrismCo repo.setName(RPolyString.copyFromJAXB(jaxb.getName())); - LookupTableTableType table = jaxb.getTable(); - if (table == null) { - return; - } - - for (LookupTableRowType row : table.getRow()) { - RLookupTableRow rRow = new RLookupTableRow(); - rRow.setOwner(repo); - rRow.setKey(row.getKey()); - rRow.setLabel(RPolyString.copyFromJAXB(row.getLabel())); - rRow.setLastChangeTimestamp(row.getLastChangeTimestamp()); - rRow.setValue(row.getValue()); - - repo.getRows().add(rRow); - } +// LookupTableTableType table = jaxb.getTable(); +// if (table == null) { +// return; +// } +// +// for (LookupTableRowType row : table.getRow()) { +// RLookupTableRow rRow = new RLookupTableRow(); +// rRow.setOwner(repo); +// rRow.setKey(row.getKey()); +// rRow.setLabel(RPolyString.copyFromJAXB(row.getLabel())); +// rRow.setLastChangeTimestamp(row.getLastChangeTimestamp()); +// rRow.setValue(row.getValue()); +// +// repo.getRows().add(rRow); +// } } protected static void copyToJAXB(RLookupTable repo, LookupTableType jaxb, PrismContext prismContext, From 01466fef3705b0ce4302a69cc171825d2420e29b Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Mon, 2 Mar 2015 17:11:56 +0100 Subject: [PATCH 16/30] Tests for groovy polystrings (MID-2204) --- .../expression/script/AbstractScriptTest.java | 24 +- .../script/TestGroovyExpressions.java | 291 +++++++++++++++++- .../groovy/expression-polystring-equals-1.xml | 23 ++ .../groovy/expression-polystring-equals-2.xml | 23 ++ ...pression-polystring-equals-stringify-1.xml | 23 ++ ...pression-polystring-equals-stringify-2.xml | 23 ++ 6 files changed, 401 insertions(+), 6 deletions(-) create mode 100644 model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-1.xml create mode 100644 model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-2.xml create mode 100644 model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-stringify-1.xml create mode 100644 model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-stringify-2.xml diff --git a/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/AbstractScriptTest.java b/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/AbstractScriptTest.java index 3d071af460b..f90d79c2f8d 100644 --- a/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/AbstractScriptTest.java +++ b/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/AbstractScriptTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010-2013 Evolveum + * Copyright (c) 2010-2015 Evolveum * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -73,9 +73,9 @@ */ public abstract class AbstractScriptTest { - private static final QName PROPERTY_NAME = new QName(MidPointConstants.NS_MIDPOINT_TEST_PREFIX, "whatever"); - private static final String NS_X = "http://example.com/xxx"; - private static final String NS_Y = "http://example.com/yyy"; + protected static final QName PROPERTY_NAME = new QName(MidPointConstants.NS_MIDPOINT_TEST_PREFIX, "whatever"); + protected static final String NS_X = "http://example.com/xxx"; + protected static final String NS_Y = "http://example.com/yyy"; protected static File BASE_TEST_DIR = new File("src/test/resources/expression"); protected static File OBJECTS_DIR = new File("src/test/resources/objects"); protected static final String USER_OID = "c0c010c0-d34d-b33f-f00d-111111111111"; @@ -286,7 +286,7 @@ private PrismPropertyValue asScalar(List> expressio return expressionResultList.iterator().next(); } - private void evaluateAndAssertStringScalarExpresssion(String fileName, String testName, ExpressionVariables variables, String expectedValue) throws SchemaException, IOException, JAXBException, ExpressionEvaluationException, ObjectNotFoundException { + protected void evaluateAndAssertStringScalarExpresssion(String fileName, String testName, ExpressionVariables variables, String expectedValue) throws SchemaException, IOException, JAXBException, ExpressionEvaluationException, ObjectNotFoundException { List> expressionResultList = evaluateStringExpresssion(fileName, testName, variables, true); PrismPropertyValue expressionResult = asScalar(expressionResultList, testName); assertNotNull("Expression "+testName+" resulted in null value (expected '"+expectedValue+"')", expressionResult); @@ -297,6 +297,12 @@ private void evaluateAndAssertStringListExpresssion(String fileName, String test List> expressionResultList = evaluateStringExpresssion(fileName, testName, variables, true); TestUtil.assertSetEquals("Expression "+testName+" resulted in wrong values", PrismPropertyValue.getValues(expressionResultList), expectedValues); } + protected void evaluateAndAssertBooleanScalarExpresssion(String fileName, String testName, ExpressionVariables variables, Boolean expectedValue) throws SchemaException, IOException, JAXBException, ExpressionEvaluationException, ObjectNotFoundException { + List> expressionResultList = evaluateBooleanExpresssion(fileName, testName, variables, true); + PrismPropertyValue expressionResult = asScalar(expressionResultList, testName); + assertNotNull("Expression "+testName+" resulted in null value (expected '"+expectedValue+"')", expressionResult); + assertEquals("Expression "+testName+" resulted in wrong value", expectedValue, expressionResult.getValue()); + } private List> evaluateStringExpresssion(String fileName, String testName, ExpressionVariables variables, boolean scalar) throws SchemaException, IOException, JAXBException, ExpressionEvaluationException, ObjectNotFoundException { displayTestTitle(testName); @@ -306,6 +312,14 @@ private List> evaluateStringExpresssion(String fileNa return evaluateExpression(scriptType, DOMUtil.XSD_STRING, true, variables, testName, opResult); } + private List> evaluateBooleanExpresssion(String fileName, String testName, ExpressionVariables variables, boolean scalar) throws SchemaException, IOException, JAXBException, ExpressionEvaluationException, ObjectNotFoundException { + displayTestTitle(testName); + ScriptExpressionEvaluatorType scriptType = parseScriptType(fileName); + OperationResult opResult = new OperationResult(testName); + + return evaluateExpression(scriptType, DOMUtil.XSD_BOOLEAN, true, variables, testName, opResult); + } + private void displayTestTitle(String testName) { System.out.println("===[ "+evaluator.getLanguageName()+": "+testName+" ]==========================="); diff --git a/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/TestGroovyExpressions.java b/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/TestGroovyExpressions.java index 4e9b15a1ba1..f7ecccd90f8 100644 --- a/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/TestGroovyExpressions.java +++ b/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/TestGroovyExpressions.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010-2013 Evolveum + * Copyright (c) 2010-2015 Evolveum * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,6 +15,7 @@ */ package com.evolveum.midpoint.model.common.expression.script; +import com.evolveum.midpoint.model.common.expression.ExpressionVariables; import com.evolveum.midpoint.model.common.expression.script.ScriptEvaluator; import com.evolveum.midpoint.model.common.expression.script.jsr223.Jsr223ScriptEvaluator; import com.evolveum.midpoint.model.common.expression.script.xpath.XPathScriptEvaluator; @@ -43,6 +44,7 @@ import javax.xml.bind.JAXBElement; import javax.xml.bind.JAXBException; +import javax.xml.namespace.QName; import java.io.File; import java.io.FileNotFoundException; @@ -73,5 +75,292 @@ protected File getTestDir() { return new File(BASE_TEST_DIR, "groovy"); } + @Test + public void testExpressionPolyStringEquals101() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-1.xml", + "testExpressionPolyStringEquals101", + ExpressionVariables.create( + new QName(NS_X, "foo"), "FOO", + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.TRUE); + } + + @Test + public void testExpressionPolyStringEquals102() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-1.xml", + "testExpressionPolyStringEquals102", + ExpressionVariables.create( + new QName(NS_X, "foo"), "FOOBAR", + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEquals111() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-1.xml", + "testExpressionPolyStringEquals111", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyString("FOO"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEquals112() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-1.xml", + "testExpressionPolyStringEquals112", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyString("FOOBAR"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEquals121() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-1.xml", + "testExpressionPolyStringEquals121", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyStringType("FOO"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEquals122() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-1.xml", + "testExpressionPolyStringEquals122", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyStringType("FOOBAR"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEquals201() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-2.xml", + "testExpressionPolyStringEquals201", + ExpressionVariables.create( + new QName(NS_X, "foo"), "FOO", + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.TRUE); + } + + @Test + public void testExpressionPolyStringEquals202() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-2.xml", + "testExpressionPolyStringEquals202", + ExpressionVariables.create( + new QName(NS_X, "foo"), "FOOBAR", + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEquals211() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-2.xml", + "testExpressionPolyStringEquals211", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyString("FOO"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEquals212() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-2.xml", + "testExpressionPolyStringEquals212", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyString("FOOBAR"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEquals221() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-2.xml", + "testExpressionPolyStringEquals221", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyStringType("FOO"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEquals222() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-2.xml", + "testExpressionPolyStringEquals222", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyStringType("FOOBAR"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEqualsStringify101() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-stringify-1.xml", + "testExpressionPolyStringEqualsStringify101", + ExpressionVariables.create( + new QName(NS_X, "foo"), "FOO", + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.TRUE); + } + + @Test + public void testExpressionPolyStringEqualsStringify102() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-stringify-1.xml", + "testExpressionPolyStringEqualsStringify102", + ExpressionVariables.create( + new QName(NS_X, "foo"), "FOOBAR", + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEqualsStringify111() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-stringify-1.xml", + "testExpressionPolyStringEqualsStringify111", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyString("FOO"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.TRUE); + } + + @Test + public void testExpressionPolyStringEqualsStringify112() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-stringify-1.xml", + "testExpressionPolyStringEqualsStringify112", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyString("FOOBAR"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEqualsStringify121() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-stringify-1.xml", + "testExpressionPolyStringEqualsStringify121", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyStringType("FOO"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.TRUE); + } + + @Test + public void testExpressionPolyStringEqualsStringify122() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-stringify-1.xml", + "testExpressionPolyStringEqualsStringify122", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyStringType("FOOBAR"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEqualsStringify201() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-stringify-2.xml", + "testExpressionPolyStringEqualsStringify201", + ExpressionVariables.create( + new QName(NS_X, "foo"), "FOO", + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.TRUE); + } + + @Test + public void testExpressionPolyStringEqualsStringify202() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-stringify-2.xml", + "testExpressionPolyStringEqualsStringify202", + ExpressionVariables.create( + new QName(NS_X, "foo"), "FOOBAR", + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEqualsStringify211() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-stringify-2.xml", + "testExpressionPolyStringEqualsStringify211", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyString("FOO"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.TRUE); + } + + @Test + public void testExpressionPolyStringEqualsStringify212() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-stringify-2.xml", + "testExpressionPolyStringEqualsStringify212", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyString("FOOBAR"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } + + @Test + public void testExpressionPolyStringEqualsStringify221() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-stringify-2.xml", + "testExpressionPolyStringEqualsStringify221", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyStringType("FOO"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.TRUE); + } + + @Test + public void testExpressionPolyStringEqualsStringify222() throws Exception { + evaluateAndAssertBooleanScalarExpresssion( + "expression-polystring-equals-stringify-2.xml", + "testExpressionPolyStringEqualsStringify222", + ExpressionVariables.create( + new QName(NS_X, "foo"), PrismTestUtil.createPolyStringType("FOOBAR"), + new QName(NS_Y, "bar"), "BAR" + ), + Boolean.FALSE); + } } diff --git a/model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-1.xml b/model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-1.xml new file mode 100644 index 00000000000..1485b67e3c0 --- /dev/null +++ b/model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-1.xml @@ -0,0 +1,23 @@ + + + + diff --git a/model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-2.xml b/model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-2.xml new file mode 100644 index 00000000000..9c2f2c1a883 --- /dev/null +++ b/model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-2.xml @@ -0,0 +1,23 @@ + + + + diff --git a/model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-stringify-1.xml b/model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-stringify-1.xml new file mode 100644 index 00000000000..3a6e2cc2269 --- /dev/null +++ b/model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-stringify-1.xml @@ -0,0 +1,23 @@ + + + + diff --git a/model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-stringify-2.xml b/model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-stringify-2.xml new file mode 100644 index 00000000000..38b9c9d9b69 --- /dev/null +++ b/model/model-common/src/test/resources/expression/groovy/expression-polystring-equals-stringify-2.xml @@ -0,0 +1,23 @@ + + + + From b4295e3b9de574957d8045a1f0b513555cc02feb Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Mon, 2 Mar 2015 17:29:12 +0100 Subject: [PATCH 17/30] Fixing PolyString.plus method. --- .../midpoint/prism/polystring/PolyString.java | 22 +++---------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/infra/prism/src/main/java/com/evolveum/midpoint/prism/polystring/PolyString.java b/infra/prism/src/main/java/com/evolveum/midpoint/prism/polystring/PolyString.java index b5588417127..24ff37d63af 100644 --- a/infra/prism/src/main/java/com/evolveum/midpoint/prism/polystring/PolyString.java +++ b/infra/prism/src/main/java/com/evolveum/midpoint/prism/polystring/PolyString.java @@ -122,31 +122,15 @@ public Object resolve(ItemPath subpath) { throw new IllegalArgumentException("Unknown path segment "+itemName); } } - - // Groovy operator overload - public PolyString plus(PolyString other) { - if (other == null) { - return this; - } - return new PolyString(this.orig + other.orig); - } // Groovy operator overload - public PolyString plus(String other) { - if (other == null) { - return this; - } - return new PolyString(this.orig + other); - } - - // Groovy operator overload - public PolyString plus(PolyStringType other) { + public PolyString plus(Object other) { if (other == null) { return this; } - return new PolyString(this.orig + other.getOrig()); + return new PolyString(this.orig + other.toString()); } - + // Groovy operator overload public PolyString getAt(int index) { return new PolyString(this.orig.substring(index, index+1)); From 409d5e117c7ddd9e35ce5c2bc4ec6c3ff51bfb8d Mon Sep 17 00:00:00 2001 From: Pavol Mederly Date: Mon, 2 Mar 2015 22:21:02 +0100 Subject: [PATCH 18/30] Fixed NPE when removing a role (MID-2240) --- .../processors/primary/user/AddResourceAssignmentAspect.java | 2 +- .../impl/processors/primary/user/AddRoleAssignmentAspect.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/model/workflow-impl/src/main/java/com/evolveum/midpoint/wf/impl/processors/primary/user/AddResourceAssignmentAspect.java b/model/workflow-impl/src/main/java/com/evolveum/midpoint/wf/impl/processors/primary/user/AddResourceAssignmentAspect.java index fc2a25c757c..b45fc1a6101 100644 --- a/model/workflow-impl/src/main/java/com/evolveum/midpoint/wf/impl/processors/primary/user/AddResourceAssignmentAspect.java +++ b/model/workflow-impl/src/main/java/com/evolveum/midpoint/wf/impl/processors/primary/user/AddResourceAssignmentAspect.java @@ -198,7 +198,7 @@ private List> getApprovalRequestsFromUserModify( } } // let's sanitize the delta - if (delta.getValuesToAdd().isEmpty()) { // empty set of values to add is an illegal state + if (delta.getValuesToAdd() != null && delta.getValuesToAdd().isEmpty()) { // empty set of values to add is an illegal state delta.resetValuesToAdd(); } if (delta.getValuesToAdd() == null && delta.getValuesToReplace() == null && delta.getValuesToDelete() == null) { diff --git a/model/workflow-impl/src/main/java/com/evolveum/midpoint/wf/impl/processors/primary/user/AddRoleAssignmentAspect.java b/model/workflow-impl/src/main/java/com/evolveum/midpoint/wf/impl/processors/primary/user/AddRoleAssignmentAspect.java index 7a662d60f65..4b5c1a38c69 100644 --- a/model/workflow-impl/src/main/java/com/evolveum/midpoint/wf/impl/processors/primary/user/AddRoleAssignmentAspect.java +++ b/model/workflow-impl/src/main/java/com/evolveum/midpoint/wf/impl/processors/primary/user/AddRoleAssignmentAspect.java @@ -191,7 +191,7 @@ private List> getApprovalRequestsFromUserModify( } } // let's sanitize the delta - if (delta.getValuesToAdd().isEmpty()) { // empty set of values to add is an illegal state + if (delta.getValuesToAdd() != null && delta.getValuesToAdd().isEmpty()) { // empty set of values to add is an illegal state delta.resetValuesToAdd(); } if (delta.getValuesToAdd() == null && delta.getValuesToReplace() == null && delta.getValuesToDelete() == null) { From 35f7711f1c05fa03c2ae0749046661e1ba3f0c60 Mon Sep 17 00:00:00 2001 From: Erik Suta Date: Wed, 4 Mar 2015 10:47:56 +0100 Subject: [PATCH 19/30] MID-2117 - Validation plugin improvements. --- .../evolveum/midpoint/web/page/PageBase.java | 10 ++- .../web/page/admin/users/PageUser.java | 78 ++++++++++++++++++- .../validation/MidpointFormValidator.java | 12 +++ .../validation/MidpointFormValidatorImpl.java | 44 ++++++++++- .../MidpointFormValidatorRegistry.java | 2 +- .../validation/SimpleValidationError.java | 10 ++- 6 files changed, 148 insertions(+), 8 deletions(-) diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/PageBase.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/PageBase.java index 9c5edaa0562..7712f0e9535 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/PageBase.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/PageBase.java @@ -24,7 +24,6 @@ import com.evolveum.midpoint.prism.Objectable; import com.evolveum.midpoint.prism.PrismContext; import com.evolveum.midpoint.prism.PrismObject; -import com.evolveum.midpoint.prism.match.MatchingRuleRegistry; import com.evolveum.midpoint.report.api.ReportManager; import com.evolveum.midpoint.schema.constants.SchemaConstants; import com.evolveum.midpoint.schema.result.OperationResult; @@ -39,6 +38,8 @@ import com.evolveum.midpoint.web.security.SecurityUtils; import com.evolveum.midpoint.web.security.WebApplicationConfiguration; import com.evolveum.midpoint.web.session.UserProfileStorage; +import com.evolveum.midpoint.web.util.validation.MidpointFormValidatorImpl; +import com.evolveum.midpoint.web.util.validation.MidpointFormValidatorRegistry; import com.evolveum.midpoint.wf.api.WorkflowManager; import com.evolveum.midpoint.xml.ns._public.common.common_3.UserType; import org.apache.commons.lang.Validate; @@ -48,7 +49,6 @@ import org.apache.wicket.model.StringResourceModel; import org.apache.wicket.request.mapper.parameter.PageParameters; import org.apache.wicket.spring.injection.annot.SpringBean; -import org.springframework.beans.factory.annotation.Autowired; import org.w3c.dom.Element; import org.w3c.dom.Node; @@ -81,6 +81,8 @@ public abstract class PageBase extends PageTemplate { private ReportManager reportManager; @SpringBean(name = "accessDecisionManager") private SecurityEnforcer securityEnforcer; + @SpringBean + private MidpointFormValidatorRegistry formValidatorRegistry; public PageBase(PageParameters parameters) { super(parameters); @@ -148,6 +150,10 @@ protected ModelDiagnosticService getModelDiagnosticService() { return modelDiagnosticService; } + public MidpointFormValidatorRegistry getFormValidatorRegistry() { + return formValidatorRegistry; + } + public static StringResourceModel createStringResourceStatic(Component component, String resourceKey, Object... objects) { return new StringResourceModel(resourceKey, component, new Model(), resourceKey, objects); } diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/users/PageUser.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/users/PageUser.java index 806700de479..cd7bc7b41d9 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/users/PageUser.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/users/PageUser.java @@ -97,6 +97,8 @@ import com.evolveum.midpoint.web.security.MidPointApplication; import com.evolveum.midpoint.web.util.OnePageParameterEncoder; import com.evolveum.midpoint.web.util.WebMiscUtil; +import com.evolveum.midpoint.web.util.validation.MidpointFormValidator; +import com.evolveum.midpoint.web.util.validation.SimpleValidationError; import com.evolveum.midpoint.xml.ns._public.common.common_3.ActivationStatusType; import com.evolveum.midpoint.xml.ns._public.common.common_3.ActivationType; import com.evolveum.midpoint.xml.ns._public.common.common_3.AssignmentType; @@ -1039,7 +1041,7 @@ private void cancelPerformed(AjaxRequestTarget target) { } private List> modifyAccounts(OperationResult result) { - List> deltas = new ArrayList>(); + List> deltas = new ArrayList<>(); List accounts = accountsModel.getObject(); OperationResult subResult = null; @@ -1239,6 +1241,7 @@ private ContainerDelta handleAssignmentDeltas(ObjectDelta userDelta, P List assignments = assignmentsModel.getObject(); for (AssignmentEditorDto assDto : assignments) { PrismContainerValue newValue = assDto.getNewValue(); + switch (assDto.getStatus()) { case ADD: newValue.applyDefinition(assignmentDef, false); @@ -1376,6 +1379,18 @@ private void savePerformed(AjaxRequestTarget target) { if (!delta.isEmpty()) { delta.revive(getPrismContext()); + + Collection validationErrors = performCustomValidation(user, WebMiscUtil.createDeltaCollection(delta)); + if(validationErrors != null && !validationErrors.isEmpty()){ + for(SimpleValidationError error: validationErrors){ + LOGGER.error("Validation error, attribute: '" + error.printAttribute() + "', message: '" + error.getMessage() + "'."); + error("Validation error, attribute: '" + error.printAttribute() + "', message: '" + error.getMessage() + "'."); + } + + target.add(getFeedbackPanel()); + return; + } + progressReporter.executeChanges(WebMiscUtil.createDeltaCollection(delta), options, task, result, target); } else { result.recordSuccess(); @@ -1396,7 +1411,7 @@ private void savePerformed(AjaxRequestTarget target) { } List> accountDeltas = modifyAccounts(result); - Collection> deltas = new ArrayList>(); + Collection> deltas = new ArrayList<>(); if (!delta.isEmpty()) { delta.revive(getPrismContext()); @@ -1414,8 +1429,31 @@ private void savePerformed(AjaxRequestTarget target) { ObjectDelta emptyDelta = ObjectDelta.createEmptyModifyDelta(UserType.class, userWrapper.getObject().getOid(), getPrismContext()); deltas.add(emptyDelta); + + Collection validationErrors = performCustomValidation(null, deltas); + if(validationErrors != null && !validationErrors.isEmpty()){ + for(SimpleValidationError error: validationErrors){ + LOGGER.error("Validation error, attribute: '" + error.printAttribute() + "', message: '" + error.getMessage() + "'."); + error("Validation error, attribute: '" + error.printAttribute() + "', message: '" + error.getMessage() + "'."); + } + + target.add(getFeedbackPanel()); + return; + } + progressReporter.executeChanges(deltas, options, task, result, target); } else if (!deltas.isEmpty()) { + Collection validationErrors = performCustomValidation(null, deltas); + if(validationErrors != null && !validationErrors.isEmpty()){ + for(SimpleValidationError error: validationErrors){ + LOGGER.error("Validation error, attribute: '" + error.printAttribute() + "', message: '" + error.getMessage() + "'."); + error("Validation error, attribute: '" + error.printAttribute() + "', message: '" + error.getMessage() + "'."); + } + + target.add(getFeedbackPanel()); + return; + } + progressReporter.executeChanges(deltas, options, task, result, target); } else { result.recordSuccess(); @@ -1442,6 +1480,42 @@ private void savePerformed(AjaxRequestTarget target) { } } + private Collection performCustomValidation(PrismObject user, Collection> deltas) throws SchemaException { + Collection errors = null; + + if(user == null){ + if(userModel != null && userModel.getObject() != null && userModel.getObject().getObject() != null){ + user = userModel.getObject().getObject(); + + for(ObjectDelta delta: deltas){ + delta.applyTo(user); + } + } + } + + if(user != null && user.asObjectable() != null){ + for(AssignmentType assignment: user.asObjectable().getAssignment()){ + for(MidpointFormValidator validator: getFormValidatorRegistry().getValidators()){ + if(errors == null){ + errors = validator.validateAssignment(assignment); + } else { + errors.addAll(validator.validateAssignment(assignment)); + } + } + } + } + + for(MidpointFormValidator validator: getFormValidatorRegistry().getValidators()){ + if(errors == null){ + errors = validator.validateObject(user, deltas); + } else { + errors.addAll(validator.validateObject(user, deltas)); + } + } + + return errors; + } + @Override public void finishProcessing(AjaxRequestTarget target, OperationResult result) { diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidator.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidator.java index d7be028447f..ec0de889e26 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidator.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidator.java @@ -18,6 +18,7 @@ import com.evolveum.midpoint.prism.PrismObject; import com.evolveum.midpoint.prism.delta.ObjectDelta; +import com.evolveum.midpoint.xml.ns._public.common.common_3.AssignmentType; import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectType; import java.util.Collection; @@ -57,4 +58,15 @@ public interface MidpointFormValidator { * * */ Collection validateObject(PrismObject object, Collection> deltas); + + /** + * Performs a validation on an instance of AssignmentType that represents + * an assignment in midPoint. + * + * @param assignment + * An object to validate + * + * @return A collection of SimpleValidationError instances + * */ + Collection validateAssignment(AssignmentType assignment); } diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorImpl.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorImpl.java index e4b060cb59e..0599700f435 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorImpl.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorImpl.java @@ -18,17 +18,57 @@ import com.evolveum.midpoint.prism.PrismObject; import com.evolveum.midpoint.prism.delta.ObjectDelta; +import com.evolveum.midpoint.xml.ns._public.common.common_3.AssignmentType; import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectType; +import com.evolveum.midpoint.xml.ns._public.common.common_3.UserType; +import com.evolveum.prism.xml.ns._public.types_3.ItemPathType; +import java.util.ArrayList; import java.util.Collection; +import java.util.List; /** - * TODO - implement + * This is a simple implementation of MidpointFormValidator interface + * + * @author shood * */ public class MidpointFormValidatorImpl implements MidpointFormValidator { @Override public Collection validateObject(PrismObject object, Collection> deltas) { - return null; + List errors = new ArrayList<>(); + + if(object != null){ + UserType user = (UserType)object.asObjectable(); + + if(user.getName() == null){ + errors.add(new SimpleValidationError("The name of the user can't be null", new ItemPathType("user/name"))); + } + + if(user.getGivenName() == null){ + errors.add(new SimpleValidationError("The given name of the user can't be null", new ItemPathType("user/givenName"))); + } + } + + return errors; + } + + @Override + public Collection validateAssignment(AssignmentType assignment) { + List errors = new ArrayList<>(); + + if(assignment == null){ + return errors; + } + + if(assignment.getTargetRef() == null){ + errors.add(new SimpleValidationError("The target ref of the assignment can't be null", new ItemPathType("assignment/targetRef"))); + } + + if(assignment.getTenantRef() == null){ + errors.add(new SimpleValidationError("The tenant ref of the assignment can't be null", new ItemPathType("assignment/tenantRef"))); + } + + return errors; } } diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorRegistry.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorRegistry.java index c02eb55b1dc..6f1de166884 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorRegistry.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorRegistry.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (c) 2015 Evolveum * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/SimpleValidationError.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/SimpleValidationError.java index ef9b5f962f2..701d4bc3bf0 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/SimpleValidationError.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/SimpleValidationError.java @@ -24,7 +24,7 @@ * This is just a simple representation of custom form validation error. Currently, it holds * only a simple String 'message' attribute as an information about validation error and * an ItemPathType 'attribute' as a path to the source of error. Feel free - * to add any information about validation errors that yout custom validator requires. + * to add any information about validation errors that your custom validator requires. * * @author shood * */ @@ -56,6 +56,14 @@ public void setAttribute(ItemPathType attribute) { this.attribute = attribute; } + /** + * Override to create custom implementation of printing the attribute + * (for logging and GUI purposes) + * */ + public String printAttribute(){ + return getAttribute().toString(); + } + @Override public boolean equals(Object o) { if (this == o) return true; From 0246381c44c5c331f706e3d005b77da0dd29491b Mon Sep 17 00:00:00 2001 From: Erik Suta Date: Wed, 4 Mar 2015 12:14:41 +0100 Subject: [PATCH 20/30] Replacing String constants in MP form validator impl. with values from schema. --- .../web/util/validation/MidpointFormValidatorImpl.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorImpl.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorImpl.java index 0599700f435..2ef4d0d3474 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorImpl.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/util/validation/MidpointFormValidatorImpl.java @@ -42,11 +42,11 @@ public Collection validateObject(PrismObject validateAssignment(AssignmentType assig } if(assignment.getTargetRef() == null){ - errors.add(new SimpleValidationError("The target ref of the assignment can't be null", new ItemPathType("assignment/targetRef"))); + errors.add(new SimpleValidationError("The target ref of the assignment can't be null", new ItemPathType(AssignmentType.F_TARGET_REF.getLocalPart()))); } if(assignment.getTenantRef() == null){ - errors.add(new SimpleValidationError("The tenant ref of the assignment can't be null", new ItemPathType("assignment/tenantRef"))); + errors.add(new SimpleValidationError("The tenant ref of the assignment can't be null", new ItemPathType(AssignmentType.F_TENANT_REF.getLocalPart()))); } return errors; From 309eb87c42e4c4d0ae44c9a8658728aca21d785f Mon Sep 17 00:00:00 2001 From: Jan Marcek Date: Thu, 5 Mar 2015 08:39:55 +0100 Subject: [PATCH 21/30] bugfix: midPoint Distribution - set correct dependency com.evolveum.midpoint.infra.prism and com.evolveum.midpoint.infra.schema to ${project.version} --- dist/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/pom.xml b/dist/pom.xml index bd9e05ae877..3de7f7183d1 100644 --- a/dist/pom.xml +++ b/dist/pom.xml @@ -85,14 +85,14 @@ com.evolveum.midpoint.infra prism - 3.1-SNAPSHOT + ${project.version} jar META-INF/catalog-runtime.xml com.evolveum.midpoint.infra schema - 3.1-SNAPSHOT + ${project.version} jar META-INF/jax-ws-catalog.xml From 2eb9f8b00b50e6bdcbf1d6840d03234d278748b8 Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Thu, 5 Mar 2015 17:32:01 +0100 Subject: [PATCH 22/30] Support for Pyhon expressions --- build-system/pom.xml | 5 ++ model/model-common/pom.xml | 4 + .../expression/script/AbstractScriptTest.java | 2 +- .../script/TestPythonExpressions.java | 78 +++++++++++++++++++ .../groovy/expression-objectref-variables.xml | 4 +- .../expression-objectref-variables.xml | 4 +- .../python/expression-func-concatname.xml | 23 ++++++ .../expression/python/expression-func.xml | 23 ++++++ .../expression/python/expression-list.xml | 25 ++++++ ...ression-objectref-variables-polystring.xml | 29 +++++++ .../python/expression-objectref-variables.xml | 29 +++++++ .../expression/python/expression-simple.xml | 21 +++++ .../python/expression-string-variables.xml | 21 +++++ .../expression-user-extension-ship-path.xml | 22 ++++++ .../python/expression-user-extension-ship.xml | 21 +++++ .../python/expression-user-given-name.xml | 21 +++++ .../expression-user-stringify-full-name.xml | 21 +++++ .../xpath/expression-objectref-variables.xml | 4 +- .../src/test/resources/logback-test.xml | 45 +++++++++++ model/model-common/testng.xml | 1 + .../src/main/resources/ctx-model.xml | 8 ++ 21 files changed, 404 insertions(+), 7 deletions(-) create mode 100644 model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/TestPythonExpressions.java create mode 100644 model/model-common/src/test/resources/expression/python/expression-func-concatname.xml create mode 100644 model/model-common/src/test/resources/expression/python/expression-func.xml create mode 100644 model/model-common/src/test/resources/expression/python/expression-list.xml create mode 100644 model/model-common/src/test/resources/expression/python/expression-objectref-variables-polystring.xml create mode 100644 model/model-common/src/test/resources/expression/python/expression-objectref-variables.xml create mode 100644 model/model-common/src/test/resources/expression/python/expression-simple.xml create mode 100644 model/model-common/src/test/resources/expression/python/expression-string-variables.xml create mode 100644 model/model-common/src/test/resources/expression/python/expression-user-extension-ship-path.xml create mode 100644 model/model-common/src/test/resources/expression/python/expression-user-extension-ship.xml create mode 100644 model/model-common/src/test/resources/expression/python/expression-user-given-name.xml create mode 100644 model/model-common/src/test/resources/expression/python/expression-user-stringify-full-name.xml create mode 100644 model/model-common/src/test/resources/logback-test.xml diff --git a/build-system/pom.xml b/build-system/pom.xml index 17455c9deaf..a2b0b59d1ec 100644 --- a/build-system/pom.xml +++ b/build-system/pom.xml @@ -155,6 +155,11 @@ groovy-jsr223 ${groovy.version}
+ + org.python + jython + 2.5.3 + com.h2database h2 diff --git a/model/model-common/pom.xml b/model/model-common/pom.xml index 9049452ca83..4525d786278 100644 --- a/model/model-common/pom.xml +++ b/model/model-common/pom.xml @@ -83,6 +83,10 @@ org.codehaus.groovy groovy-jsr223 + + org.python + jython + org.testng diff --git a/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/AbstractScriptTest.java b/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/AbstractScriptTest.java index f90d79c2f8d..b9f2089f381 100644 --- a/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/AbstractScriptTest.java +++ b/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/AbstractScriptTest.java @@ -144,7 +144,7 @@ public void testExpressionObjectRefVariables() throws Exception { new QName(NS_Y, "jack"), MiscSchemaUtil.createObjectReference(USER_OID, UserType.COMPLEX_TYPE) ), - "Captain jack"); + "Captain emp1234"); } @Test diff --git a/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/TestPythonExpressions.java b/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/TestPythonExpressions.java new file mode 100644 index 00000000000..69c9df03704 --- /dev/null +++ b/model/model-common/src/test/java/com/evolveum/midpoint/model/common/expression/script/TestPythonExpressions.java @@ -0,0 +1,78 @@ +/* + * Copyright (c) 2010-2015 Evolveum + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.evolveum.midpoint.model.common.expression.script; + +import com.evolveum.midpoint.model.common.expression.ExpressionVariables; +import com.evolveum.midpoint.model.common.expression.script.ScriptEvaluator; +import com.evolveum.midpoint.model.common.expression.script.jsr223.Jsr223ScriptEvaluator; +import com.evolveum.midpoint.model.common.expression.script.xpath.XPathScriptEvaluator; +import com.evolveum.midpoint.prism.PrismContext; +import com.evolveum.midpoint.prism.PrismPropertyValue; +import com.evolveum.midpoint.prism.crypto.Protector; +import com.evolveum.midpoint.prism.util.PrismTestUtil; +import com.evolveum.midpoint.schema.MidPointPrismContextFactory; +import com.evolveum.midpoint.schema.constants.MidPointConstants; +import com.evolveum.midpoint.schema.constants.SchemaConstants; +import com.evolveum.midpoint.schema.result.OperationResult; +import com.evolveum.midpoint.schema.util.ObjectResolver; +import com.evolveum.midpoint.test.util.DirectoryFileObjectResolver; +import com.evolveum.midpoint.util.DebugUtil; +import com.evolveum.midpoint.util.JAXBUtil; +import com.evolveum.midpoint.util.exception.ExpressionEvaluationException; +import com.evolveum.midpoint.util.exception.ObjectNotFoundException; +import com.evolveum.midpoint.util.exception.SchemaException; +import com.evolveum.midpoint.xml.ns._public.common.common_3.ExpressionType; +import com.evolveum.midpoint.xml.ns._public.common.common_3.ObjectReferenceType; + +import org.testng.annotations.BeforeClass; +import org.testng.annotations.BeforeSuite; +import org.testng.annotations.Test; +import org.xml.sax.SAXException; + +import javax.xml.bind.JAXBElement; +import javax.xml.bind.JAXBException; +import javax.xml.namespace.QName; + +import java.io.File; +import java.io.FileNotFoundException; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +import static org.testng.AssertJUnit.assertEquals; + +/** + * @author Radovan Semancik + */ +public class TestPythonExpressions extends AbstractScriptTest { + + /* (non-Javadoc) + * @see com.evolveum.midpoint.common.expression.AbstractExpressionTest#createEvaluator() + */ + @Override + protected ScriptEvaluator createEvaluator(PrismContext prismContext, Protector protector) { + return new Jsr223ScriptEvaluator("python", prismContext, protector); + } + + /* (non-Javadoc) + * @see com.evolveum.midpoint.common.expression.AbstractExpressionTest#getTestDir() + */ + @Override + protected File getTestDir() { + return new File(BASE_TEST_DIR, "python"); + } + +} diff --git a/model/model-common/src/test/resources/expression/groovy/expression-objectref-variables.xml b/model/model-common/src/test/resources/expression/groovy/expression-objectref-variables.xml index c50dfa24a95..3bbafb23e6f 100644 --- a/model/model-common/src/test/resources/expression/groovy/expression-objectref-variables.xml +++ b/model/model-common/src/test/resources/expression/groovy/expression-objectref-variables.xml @@ -1,6 +1,6 @@ - foo + " " + jack.getName(); + foo + " " + jack.getEmployeeNumber(); diff --git a/model/model-common/src/test/resources/expression/javascript/expression-objectref-variables.xml b/model/model-common/src/test/resources/expression/javascript/expression-objectref-variables.xml index 01ead774e5e..e3fbbb74403 100644 --- a/model/model-common/src/test/resources/expression/javascript/expression-objectref-variables.xml +++ b/model/model-common/src/test/resources/expression/javascript/expression-objectref-variables.xml @@ -1,6 +1,6 @@ - foo + ' ' + jack.getName(); + foo + ' ' + jack.getEmployeeNumber(); diff --git a/model/model-common/src/test/resources/expression/python/expression-func-concatname.xml b/model/model-common/src/test/resources/expression/python/expression-func-concatname.xml new file mode 100644 index 00000000000..ac0bd08f00c --- /dev/null +++ b/model/model-common/src/test/resources/expression/python/expression-func-concatname.xml @@ -0,0 +1,23 @@ + + + + diff --git a/model/model-common/src/test/resources/expression/python/expression-func.xml b/model/model-common/src/test/resources/expression/python/expression-func.xml new file mode 100644 index 00000000000..a10db404641 --- /dev/null +++ b/model/model-common/src/test/resources/expression/python/expression-func.xml @@ -0,0 +1,23 @@ + + + + diff --git a/model/model-common/src/test/resources/expression/python/expression-list.xml b/model/model-common/src/test/resources/expression/python/expression-list.xml new file mode 100644 index 00000000000..99ce6aea98b --- /dev/null +++ b/model/model-common/src/test/resources/expression/python/expression-list.xml @@ -0,0 +1,25 @@ + + + + diff --git a/model/model-common/src/test/resources/expression/python/expression-objectref-variables-polystring.xml b/model/model-common/src/test/resources/expression/python/expression-objectref-variables-polystring.xml new file mode 100644 index 00000000000..71bbef34d18 --- /dev/null +++ b/model/model-common/src/test/resources/expression/python/expression-objectref-variables-polystring.xml @@ -0,0 +1,29 @@ + + + + diff --git a/model/model-common/src/test/resources/expression/python/expression-objectref-variables.xml b/model/model-common/src/test/resources/expression/python/expression-objectref-variables.xml new file mode 100644 index 00000000000..412cb10bf49 --- /dev/null +++ b/model/model-common/src/test/resources/expression/python/expression-objectref-variables.xml @@ -0,0 +1,29 @@ + + + + diff --git a/model/model-common/src/test/resources/expression/python/expression-simple.xml b/model/model-common/src/test/resources/expression/python/expression-simple.xml new file mode 100644 index 00000000000..d01b18f5f34 --- /dev/null +++ b/model/model-common/src/test/resources/expression/python/expression-simple.xml @@ -0,0 +1,21 @@ + + + + diff --git a/model/model-common/src/test/resources/expression/python/expression-string-variables.xml b/model/model-common/src/test/resources/expression/python/expression-string-variables.xml new file mode 100644 index 00000000000..62dc6a5d289 --- /dev/null +++ b/model/model-common/src/test/resources/expression/python/expression-string-variables.xml @@ -0,0 +1,21 @@ + + + + diff --git a/model/model-common/src/test/resources/expression/python/expression-user-extension-ship-path.xml b/model/model-common/src/test/resources/expression/python/expression-user-extension-ship-path.xml new file mode 100644 index 00000000000..979f65d0dec --- /dev/null +++ b/model/model-common/src/test/resources/expression/python/expression-user-extension-ship-path.xml @@ -0,0 +1,22 @@ + + + + diff --git a/model/model-common/src/test/resources/expression/python/expression-user-extension-ship.xml b/model/model-common/src/test/resources/expression/python/expression-user-extension-ship.xml new file mode 100644 index 00000000000..c6f7fc51ef2 --- /dev/null +++ b/model/model-common/src/test/resources/expression/python/expression-user-extension-ship.xml @@ -0,0 +1,21 @@ + + + + diff --git a/model/model-common/src/test/resources/expression/python/expression-user-given-name.xml b/model/model-common/src/test/resources/expression/python/expression-user-given-name.xml new file mode 100644 index 00000000000..7b711886677 --- /dev/null +++ b/model/model-common/src/test/resources/expression/python/expression-user-given-name.xml @@ -0,0 +1,21 @@ + + + + diff --git a/model/model-common/src/test/resources/expression/python/expression-user-stringify-full-name.xml b/model/model-common/src/test/resources/expression/python/expression-user-stringify-full-name.xml new file mode 100644 index 00000000000..87829b5280b --- /dev/null +++ b/model/model-common/src/test/resources/expression/python/expression-user-stringify-full-name.xml @@ -0,0 +1,21 @@ + + + + diff --git a/model/model-common/src/test/resources/expression/xpath/expression-objectref-variables.xml b/model/model-common/src/test/resources/expression/xpath/expression-objectref-variables.xml index a7f4d566db0..7a142c42c55 100644 --- a/model/model-common/src/test/resources/expression/xpath/expression-objectref-variables.xml +++ b/model/model-common/src/test/resources/expression/xpath/expression-objectref-variables.xml @@ -1,6 +1,6 @@ + + + + ./target/test.log + + %date [%thread] %-5level \(%logger{46}\): %message%n + + + + + + + + + + + + + + + + + + + + + + + diff --git a/model/model-common/testng.xml b/model/model-common/testng.xml index 3ec2f8562f1..dc25d9c529f 100644 --- a/model/model-common/testng.xml +++ b/model/model-common/testng.xml @@ -27,6 +27,7 @@ + diff --git a/model/model-impl/src/main/resources/ctx-model.xml b/model/model-impl/src/main/resources/ctx-model.xml index 32e889cc1df..0c4e1cb10ff 100644 --- a/model/model-impl/src/main/resources/ctx-model.xml +++ b/model/model-impl/src/main/resources/ctx-model.xml @@ -99,6 +99,13 @@
+ + + + + + @@ -116,6 +123,7 @@ + From 5b445ff5419fd6cca90e2ba6a35b0a4d814e5d51 Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Fri, 6 Mar 2015 08:57:57 +0100 Subject: [PATCH 23/30] Fixing conntest OpenLDAP scripts --- .../com/evolveum/midpoint/test/util/TestUtil.java | 14 ++++++++++++-- .../midpoint/testing/conntest/TestOpenLdap.java | 4 ++-- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/infra/test-util/src/main/java/com/evolveum/midpoint/test/util/TestUtil.java b/infra/test-util/src/main/java/com/evolveum/midpoint/test/util/TestUtil.java index 08f2c6841b3..3e63c6b85c9 100644 --- a/infra/test-util/src/main/java/com/evolveum/midpoint/test/util/TestUtil.java +++ b/infra/test-util/src/main/java/com/evolveum/midpoint/test/util/TestUtil.java @@ -472,12 +472,17 @@ private static void selectSubresultsInternal(List retval, Opera selectSubresultsInternal(retval, subresult, operationNames); } } - + public static String execSystemCommand(String command) throws IOException, InterruptedException { + return execSystemCommand(command, false); + } + + public static String execSystemCommand(String command, boolean ignoreExitCode) throws IOException, InterruptedException { Runtime runtime = Runtime.getRuntime(); LOGGER.debug("Executing system command: {}", command); Process process = runtime.exec(command); - process.waitFor(); + int exitCode = process.waitFor(); + LOGGER.debug("Command exit code: {}", exitCode); BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream())); StringBuilder output = new StringBuilder(); String line = null; @@ -487,6 +492,11 @@ public static String execSystemCommand(String command) throws IOException, Inter reader.close(); String outstring = output.toString(); LOGGER.debug("Command output:\n{}",outstring); + if (!ignoreExitCode && exitCode != 0) { + String msg = "Execution of command '"+command+"' failed with exit code "+exitCode; + LOGGER.error("{}", msg); + throw new IOException(msg); + } return outstring; } diff --git a/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/TestOpenLdap.java b/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/TestOpenLdap.java index b088cf838ff..08eeb14fe2c 100644 --- a/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/TestOpenLdap.java +++ b/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/TestOpenLdap.java @@ -41,12 +41,12 @@ protected File getResourceFile() { @Override public String getStartSystemCommand() { - return getScriptDirectoryName()+"/openldap-start"; + return "sudo "+getScriptDirectoryName()+"/openldap-start"; } @Override public String getStopSystemCommand() { - return getScriptDirectoryName()+"/openldap-stop"; + return "sudo "+getScriptDirectoryName()+"/openldap-stop"; } From 080239479bfcfbcb10a6eb89973ce5e15a2cb30a Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Fri, 6 Mar 2015 10:21:19 +0100 Subject: [PATCH 24/30] Extending OpenLDAP conntest --- testing/conntest/pom.xml | 5 ++ .../conntest/AbstractLdapConnTest.java | 73 ++++++++++++++++++- .../testing/conntest/TestOpenLdap.java | 22 +++++- 3 files changed, 98 insertions(+), 2 deletions(-) diff --git a/testing/conntest/pom.xml b/testing/conntest/pom.xml index c0a7f11805e..d0a8aa5c10c 100644 --- a/testing/conntest/pom.xml +++ b/testing/conntest/pom.xml @@ -107,6 +107,11 @@ repo-test-util 3.2-SNAPSHOT + + org.apache.directory.api + api-all + 1.0.0-M29-SNAPSHOT + diff --git a/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/AbstractLdapConnTest.java b/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/AbstractLdapConnTest.java index 2a15250fa49..0b051abc6ba 100644 --- a/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/AbstractLdapConnTest.java +++ b/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/AbstractLdapConnTest.java @@ -1,6 +1,6 @@ package com.evolveum.midpoint.testing.conntest; /* - * Copyright (c) 2010-2014 Evolveum + * Copyright (c) 2010-2015 Evolveum * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -33,8 +33,20 @@ import org.springframework.test.annotation.DirtiesContext; import org.springframework.test.annotation.DirtiesContext.ClassMode; import org.springframework.test.context.ContextConfiguration; +import org.testng.AssertJUnit; import org.testng.annotations.AfterClass; import org.testng.annotations.Test; +import org.apache.directory.api.ldap.model.cursor.CursorException; +import org.apache.directory.api.ldap.model.cursor.EntryCursor; +import org.apache.directory.api.ldap.model.entry.Entry; +import org.apache.directory.api.ldap.model.exception.LdapException; +import org.apache.directory.api.ldap.model.message.BindRequest; +import org.apache.directory.api.ldap.model.message.BindRequestImpl; +import org.apache.directory.api.ldap.model.message.BindResponse; +import org.apache.directory.api.ldap.model.message.SearchScope; +import org.apache.directory.api.ldap.model.name.Dn; +import org.apache.directory.ldap.client.api.LdapConnectionConfig; +import org.apache.directory.ldap.client.api.LdapNetworkConnection; import com.evolveum.midpoint.model.test.AbstractModelIntegrationTest; import com.evolveum.midpoint.prism.PrismObject; @@ -132,6 +144,14 @@ public static void stopResources() throws Exception { protected abstract String getResourceOid(); protected abstract File getResourceFile(); + + protected abstract String getLdapServerHost(); + + protected abstract int getLdapServerPort(); + + protected abstract String getLdapBindDn(); + + protected abstract String getLdapBindPassword(); protected String getLdapSuffix() { return "dc=example,dc=com"; @@ -210,6 +230,27 @@ public void test010Connection() throws Exception { TestUtil.assertSuccess("Test connection failed",operationResult); } + @Test + public void test100AssignAccountToBarbossa() throws Exception { + final String TEST_NAME = "test100AssignAccountToBarbossa"; + TestUtil.displayTestTile(this, TEST_NAME); + + // GIVEN + Task task = taskManager.createTaskInstance(this.getClass().getName() + "." + TEST_NAME); + OperationResult result = task.getResult(); + + // WHEN + TestUtil.displayWhen(TEST_NAME); + assignAccount(USER_BARBOSSA_OID, getResourceOid(), null, task, result); + + // THEN + TestUtil.displayThen(TEST_NAME); + result.computeStatus(); + TestUtil.assertSuccess(result); + + String accountDn = assertLdapAccount(USER_BARBOSSA_USERNAME, USER_BARBOSSA_FULL_NAME); + } + // private Entry createEntry(String uid, String name) throws IOException { @@ -222,6 +263,36 @@ public void test010Connection() throws Exception { // sb.append("sn: ").append(name).append("\n"); // } + private String assertLdapAccount(String uid, String cn) throws LdapException, IOException, CursorException { + LdapConnectionConfig config = new LdapConnectionConfig(); + config.setLdapHost(getLdapServerHost()); + config.setLdapPort(getLdapServerPort()); + LdapNetworkConnection connection = new LdapNetworkConnection(config); + boolean connected = connection.connect(); + if (!connected) { + AssertJUnit.fail("Cannot connect to LDAP server "+getLdapServerHost()+":"+getLdapServerPort()); + } + BindRequest bindRequest = new BindRequestImpl(); + bindRequest.setDn(new Dn(getLdapBindDn())); + bindRequest.setCredentials(getLdapBindPassword()); + BindResponse bindResponse = connection.bind(bindRequest); + + EntryCursor entryCursor = connection.search( getLdapSuffix(), "(uid="+uid+")", SearchScope.SUBTREE, "*" ); + Entry entry = null; + while (entryCursor.next()) { + entry = entryCursor.get(); + } + + connection.close(); + + if (entry == null) { + return null; + } + String dn = entry.getDn().toString(); + assertEquals("Wrong cn in "+dn, cn, entry.get("cn").getString()); + return dn; + } + protected String toDn(String username) { return "uid="+username+","+getPeopleLdapSuffix(); } diff --git a/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/TestOpenLdap.java b/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/TestOpenLdap.java index 08eeb14fe2c..fc76b4486a9 100644 --- a/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/TestOpenLdap.java +++ b/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/TestOpenLdap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2014 Evolveum + * Copyright (c) 2014-2015 Evolveum * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -48,6 +48,26 @@ public String getStartSystemCommand() { public String getStopSystemCommand() { return "sudo "+getScriptDirectoryName()+"/openldap-stop"; } + + @Override + protected String getLdapServerHost() { + return "localhost"; + } + + @Override + protected int getLdapServerPort() { + return 11389; + } + + @Override + protected String getLdapBindDn() { + return "cn=admin,dc=example,dc=com"; + } + + @Override + protected String getLdapBindPassword() { + return "secret"; + } From 0b27ea9d5c82eb14e54680471674d6fe2bcf1cb4 Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Fri, 6 Mar 2015 11:25:44 +0100 Subject: [PATCH 25/30] Fixing getEditObjectDefinition(Shadow) problem (MID-2244) --- .../impl/controller/ModelController.java | 23 ++++++++++++++++--- .../midpoint/model/intest/TestSecurity.java | 6 +++++ 2 files changed, 26 insertions(+), 3 deletions(-) diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/controller/ModelController.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/controller/ModelController.java index c2490fbe311..fe1539c2c53 100644 --- a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/controller/ModelController.java +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/controller/ModelController.java @@ -116,6 +116,7 @@ import com.evolveum.midpoint.schema.result.OperationResultRunner; import com.evolveum.midpoint.schema.result.OperationResultStatus; import com.evolveum.midpoint.schema.util.MiscSchemaUtil; +import com.evolveum.midpoint.schema.util.ShadowUtil; import com.evolveum.midpoint.security.api.AuthorizationConstants; import com.evolveum.midpoint.security.api.ObjectSecurityConstraints; import com.evolveum.midpoint.security.api.SecurityEnforcer; @@ -874,6 +875,20 @@ public PrismObjectDefinition getEditObjectDefinition(P securityConstraints.getActionDecision(ModelAuthorizationAction.ADD.getUrl(), phase), securityConstraints.getActionDecision(ModelAuthorizationAction.MODIFY.getUrl(), phase), phase); + if (object.canRepresent(ShadowType.class)) { + PrismObject shadow = (PrismObject)object; + String resourceOid = ShadowUtil.getResourceOid(shadow); + PrismObject resource; + try { + resource = provisioning.getObject(ResourceType.class, resourceOid, null, null, result); + } catch (CommunicationException | SecurityViolationException e) { + throw new ConfigurationException(e.getMessage(), e); + } + RefinedObjectClassDefinition refinedObjectClassDefinition = getEditObjectClassDefinition(shadow, resource, phase); + objectDefinition.getComplexTypeDefinition().replaceDefinition(ShadowType.F_ATTRIBUTES, + refinedObjectClassDefinition.toResourceAttributeContainerDefinition()); + } + result.computeStatus(); return objectDefinition; } @@ -962,10 +977,12 @@ private void applySecurityConstraints(D itemDefinitio if (itemDefinition instanceof PrismContainerDefinition) { PrismContainerDefinition containerDefinition = (PrismContainerDefinition)itemDefinition; - List origSubDefinitions = ((PrismContainerDefinition)containerDefinition).getDefinitions(); - for (ItemDefinition subDef: origSubDefinitions) { - applySecurityConstraints(subDef, new ItemPath(itemPath, subDef.getName()), securityConstraints, + List subDefinitions = ((PrismContainerDefinition)containerDefinition).getDefinitions(); + for (ItemDefinition subDef: subDefinitions) { + if (!subDef.getName().equals(ShadowType.F_ATTRIBUTES)) { // Shadow attributes have special handling + applySecurityConstraints(subDef, new ItemPath(itemPath, subDef.getName()), securityConstraints, readDecision, addDecision, modifyDecision, phase); + } } } } diff --git a/model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/TestSecurity.java b/model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/TestSecurity.java index 1aa2b7e5d7b..3cf42180122 100644 --- a/model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/TestSecurity.java +++ b/model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/TestSecurity.java @@ -971,6 +971,12 @@ public void run(Task task, OperationResult result) throws Exception { assertDeleteDeny(ShadowType.class, accountOid); assertDeleteDeny(ShadowType.class, ACCOUNT_SHADOW_ELAINE_DUMMY_OID); + + PrismObjectDefinition userEditSchema = getEditObjectDefinition(user); + // TODO: assert items + + PrismObjectDefinition shadowEditSchema = getEditObjectDefinition(shadow); + // TODO: assert items } @Test From ba8646646a6229164237d65d17282ddca4a443bd Mon Sep 17 00:00:00 2001 From: Erik Suta Date: Fri, 6 Mar 2015 12:28:53 +0100 Subject: [PATCH 26/30] MID-2220 fix --- .../admin/configuration/PageInternals.java | 74 +++++++++++++------ .../configuration/PageInternals.properties | 3 +- 2 files changed, 55 insertions(+), 22 deletions(-) diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/PageInternals.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/PageInternals.java index 8e501be82b2..c5033edc066 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/PageInternals.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/PageInternals.java @@ -32,9 +32,13 @@ public class PageInternals extends PageAdminConfiguration { private static final Trace LOGGER = TraceManager.getTrace(PageInternals.class); + private static final String ID_MAIN_FORM = "mainForm"; + private static final String ID_OFFSET = "offset"; + private static final String ID_BUTTON_SAVE = "save"; + private static final String ID_BUTTON_RESET = "reset"; private static final String ID_DEBUG_UTIL_FORM = "debugUtilForm"; private static final String ID_SAVE_DEBUG_UTIL = "saveDebugUtil"; - private static final String ID_INTERNALS_CONFIGFORM = "internalsConfigForm"; + private static final String ID_INTERNALS_CONFIG_FORM = "internalsConfigForm"; private static final String ID_UPDATE_INTERNALS_CONFIG = "updateInternalsConfig"; private static final String ID_CONSISTENCY_CHECKS = "consistencyChecks"; private static final String ID_ENCRYPTION_CHECKS = "encryptionChecks"; @@ -52,10 +56,6 @@ public class PageInternals extends PageAdminConfiguration { private IModel internalsModel; public PageInternals() { - initLayout(); - } - - private void initLayout() { model = new LoadableModel() { @Override @@ -63,15 +63,21 @@ protected XMLGregorianCalendar load() { return clock.currentTimeXMLGregorianCalendar(); } }; + internalsModel = new Model<>(new InternalsConfigDto()); - Form mainForm = new Form("mainForm"); + initLayout(); + } + + private void initLayout() { + Form mainForm = new Form(ID_MAIN_FORM); + mainForm.setOutputMarkupId(true); add(mainForm); - DatePanel offset = new DatePanel("offset", model); + DatePanel offset = new DatePanel(ID_OFFSET, model); mainForm.add(offset); - AjaxSubmitButton saveButton = new AjaxSubmitButton("save", createStringResource("PageInternals.button.changeTime")) { + AjaxSubmitButton saveButton = new AjaxSubmitButton(ID_BUTTON_SAVE, createStringResource("PageInternals.button.changeTime")) { @Override protected void onSubmit(AjaxRequestTarget target, Form form) { @@ -85,7 +91,7 @@ protected void onError(AjaxRequestTarget target, Form form) { }; mainForm.add(saveButton); - AjaxSubmitButton resetButton = new AjaxSubmitButton("reset", createStringResource("PageInternals.button.resetTimeChange")) { + AjaxSubmitButton resetButton = new AjaxSubmitButton(ID_BUTTON_RESET, createStringResource("PageInternals.button.resetTimeChange")) { @Override protected void onSubmit(AjaxRequestTarget target, Form form) { @@ -105,6 +111,7 @@ protected void onError(AjaxRequestTarget target, Form form) { private void initDebugUtilForm() { Form form = new Form(ID_DEBUG_UTIL_FORM); + form.setOutputMarkupId(true); add(form); CheckFormGroup detailed = new CheckFormGroup(ID_DETAILED_DEBUG_DUMP, @@ -117,9 +124,7 @@ private void initDebugUtilForm() { @Override protected void onSubmit(AjaxRequestTarget target, Form form) { - internalsModel.getObject().saveDebugUtil(); - - LOGGER.trace("Updated debug util, detailedDebugDump={}", DebugUtil.isDetailedDebugDump()); + updateDebugPerformed(target); } @Override @@ -131,7 +136,8 @@ protected void onError(AjaxRequestTarget target, Form form) { } private void initInternalsConfigForm() { - Form form = new Form(ID_INTERNALS_CONFIGFORM); + Form form = new Form(ID_INTERNALS_CONFIG_FORM); + form.setOutputMarkupId(true); add(form); CheckFormGroup consistency = new CheckFormGroup(ID_CONSISTENCY_CHECKS, @@ -156,11 +162,7 @@ private void initInternalsConfigForm() { @Override protected void onSubmit(AjaxRequestTarget target, Form form) { - internalsModel.getObject().saveInternalsConfig(); - - LOGGER.trace("Updated internals config, consistencyChecks={},encryptionChecks={},readEncryptionChecks={}", - new Object[]{InternalsConfig.consistencyChecks, InternalsConfig.encryptionChecks, - InternalsConfig.readEncryptionChecks}); + updateInternalConfig(target); } @Override @@ -171,6 +173,37 @@ protected void onError(AjaxRequestTarget target, Form form) { form.add(update); } + private Form getMainForm(){ + return (Form) get(ID_MAIN_FORM); + } + + private Form getDebugUtilForm(){ + return (Form) get(ID_DEBUG_UTIL_FORM); + } + + private Form getInternalsConfigForm(){ + return (Form) get(ID_INTERNALS_CONFIG_FORM); + } + + private void updateDebugPerformed(AjaxRequestTarget target){ + internalsModel.getObject().saveDebugUtil(); + + LOGGER.trace("Updated debug util, detailedDebugDump={}", DebugUtil.isDetailedDebugDump()); + success(getString("PageInternals.message.debugUpdatePerformed", DebugUtil.isDetailedDebugDump())); + target.add(getFeedbackPanel(), getDebugUtilForm()); + } + + private void updateInternalConfig(AjaxRequestTarget target){ + internalsModel.getObject().saveInternalsConfig(); + + LOGGER.trace("Updated internals config, consistencyChecks={},encryptionChecks={},readEncryptionChecks={}", + new Object[]{InternalsConfig.consistencyChecks, InternalsConfig.encryptionChecks, + InternalsConfig.readEncryptionChecks}); + success(getString("PageInternals.message.internalsConfigUpdate", InternalsConfig.consistencyChecks, + InternalsConfig.encryptionChecks, InternalsConfig.readEncryptionChecks)); + target.add(getFeedbackPanel(), getInternalsConfigForm()); + } + private void savePerformed(AjaxRequestTarget target) { OperationResult result = new OperationResult(PageInternals.class.getName() + ".changeTime"); XMLGregorianCalendar offset = model.getObject(); @@ -180,8 +213,7 @@ private void savePerformed(AjaxRequestTarget target) { result.recordSuccess(); showResult(result); - target.add(getFeedbackPanel()); - + target.add(getFeedbackPanel(), getMainForm()); } private void resetPerformed(AjaxRequestTarget target) { @@ -190,7 +222,7 @@ private void resetPerformed(AjaxRequestTarget target) { model.reset(); result.recordSuccess(); showResult(result); - target.add(this); + target.add(getMainForm()); target.add(getFeedbackPanel()); } } diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/PageInternals.properties b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/PageInternals.properties index 4cfd5841e15..b9e5b0d2e0b 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/PageInternals.properties +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/configuration/PageInternals.properties @@ -25,5 +25,6 @@ PageInternals.checkEncryption=Check encryption PageInternals.checkReadEncrypion=Check read encryption PageInternals.tolerateUndeclaredPrefixes=Tolerate undeclared prefixes in QNames and paths PageInternals.detailedDebugDump=Detailed debug dump - +PageInternals.message.debugUpdatePerformed=Debug util updated. New value: {0} +PageInternals.message.internalsConfigUpdate=Internals config update. consistencyChecks: {0},encryptionChecks: {1}, readEncryptionChecks: {2} From 91a89f46a60874bd440135f46dc2a3655b378de5 Mon Sep 17 00:00:00 2001 From: Pavol Mederly Date: Fri, 6 Mar 2015 15:41:35 +0100 Subject: [PATCH 27/30] Fixed MID-2242 --- .../model/impl/lens/AssignmentEvaluator.java | 30 ++++++----- .../impl/lens/EvaluatedAssignmentImpl.java | 2 +- .../lens/projector/AssignmentProcessor.java | 22 ++++++-- .../midpoint/model/intest/TestOrgStruct.java | 51 +++++++++++++++++++ .../src/test/resources/orgstruct/org-temp.xml | 26 ++++++++++ 5 files changed, 113 insertions(+), 18 deletions(-) create mode 100644 model/model-intest/src/test/resources/orgstruct/org-temp.xml diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/AssignmentEvaluator.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/AssignmentEvaluator.java index bcb738e235c..12f244450c1 100644 --- a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/AssignmentEvaluator.java +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/AssignmentEvaluator.java @@ -238,7 +238,16 @@ private void evaluateAssignment(EvaluatedAssignmentImpl evalAssignment, Assig if (assignmentType.getTarget() != null) { target = assignmentType.getTarget().asPrismObject(); } else if (assignmentType.getTargetRef() != null) { - target = resolveTarget(assignmentType, source, sourceDescription, task, result); + try { + target = resolveTarget(assignmentType, source, sourceDescription, task, result); + } catch (ObjectNotFoundException ex) { + // Do not throw an exception. We don't have referential integrity. Therefore if a role is deleted then throwing + // an exception would prohibit any operations with the users that have the role, including removal of the reference. + // The failure is recorded in the result and we will log it. It should be enough. + LOGGER.error(ex.getMessage()+" in assignment target reference in "+sourceDescription,ex); + // For OrgType references we trigger the reconciliation (see MID-2242) + evalAssignment.setForceRecon(true); + } } if (target != null && evalAssignment.getTarget() == null) { evalAssignment.setTarget(target); @@ -390,19 +399,12 @@ private PrismObject resolveTarget(AssignmentType assignmentType, ObjectType s throw new SchemaException("Missing type in target reference in " + assignmentType + " in " + sourceDescription); } PrismObject target = null; - try { - target = repository.getObject(clazz, oid, null, result); - if (target == null) { - throw new IllegalArgumentException("Got null target from repository, oid:"+oid+", class:"+clazz+" (should not happen, probably a bug) in "+sourceDescription); - } - } catch (ObjectNotFoundException ex) { - // Do not throw an exception. We don't have referential integrity. Therefore if a role is deleted then throwing - // an exception would prohibit any operations with the users that have the role, including removal of the reference. - // The failure is recorded in the result and we will log it. It should be enough. - LOGGER.error(ex.getMessage()+" in assignment target reference in "+sourceDescription,ex); -// throw new ObjectNotFoundException(ex.getMessage()+" in assignment target reference in "+sourceDescription,ex); - } - + target = repository.getObject(clazz, oid, null, result); + if (target == null) { + throw new IllegalArgumentException("Got null target from repository, oid:"+oid+", class:"+clazz+" (should not happen, probably a bug) in "+sourceDescription); + } + // Handling ObjectNotFoundException - we just pass it to the caller + return target; } diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/EvaluatedAssignmentImpl.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/EvaluatedAssignmentImpl.java index 95ca388370b..89fbaef2178 100644 --- a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/EvaluatedAssignmentImpl.java +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/EvaluatedAssignmentImpl.java @@ -61,7 +61,7 @@ public class EvaluatedAssignmentImpl implements EvaluatedAs private Collection>> focusMappings; private PrismObject target; private boolean isValid; - private boolean forceRecon; + private boolean forceRecon; // used also to force recomputation of parentOrgRefs public EvaluatedAssignmentImpl() { constructions = new DeltaSetTriple<>(); diff --git a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/AssignmentProcessor.java b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/AssignmentProcessor.java index a92c57d58e4..26fd5f8b854 100644 --- a/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/AssignmentProcessor.java +++ b/model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/lens/projector/AssignmentProcessor.java @@ -782,19 +782,25 @@ private ObjectType determineSource(LensFocusContext fo private void collectToZero(DeltaSetTriple> evaluatedAssignmentTriple, EvaluatedAssignmentImpl evaluatedAssignment, boolean forceRecon) { - evaluatedAssignment.setForceRecon(forceRecon); + if (forceRecon) { + evaluatedAssignment.setForceRecon(true); + } evaluatedAssignmentTriple.addToZeroSet(evaluatedAssignment); } private void collectToPlus(DeltaSetTriple> evaluatedAssignmentTriple, EvaluatedAssignmentImpl evaluatedAssignment, boolean forceRecon) { - evaluatedAssignment.setForceRecon(forceRecon); + if (forceRecon) { + evaluatedAssignment.setForceRecon(true); + } evaluatedAssignmentTriple.addToPlusSet(evaluatedAssignment); } private void collectToMinus(DeltaSetTriple> evaluatedAssignmentTriple, EvaluatedAssignmentImpl evaluatedAssignment, boolean forceRecon) { - evaluatedAssignment.setForceRecon(forceRecon); + if (forceRecon) { + evaluatedAssignment.setForceRecon(true); + } evaluatedAssignmentTriple.addToMinusSet(evaluatedAssignment); } @@ -1194,6 +1200,16 @@ public void processOrgAssignments(LensContext context, break; } } + // for zero and minus sets we check isForceRecon for all non-construction-related assignments (MID-2242) + if (!forceRecon) { + for (EvaluatedAssignmentImpl assignment: evaluatedAssignmentTriple.getNonPositiveValues()) { + if (assignment.isForceRecon() && + (assignment.getConstructions() == null || assignment.getConstructions().isEmpty())) { + forceRecon = true; + break; + } + } + } if (!forceRecon) { // if no recon, we simply add/delete values as needed diff --git a/model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/TestOrgStruct.java b/model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/TestOrgStruct.java index 214da119bab..9b90be722d8 100644 --- a/model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/TestOrgStruct.java +++ b/model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/TestOrgStruct.java @@ -78,6 +78,9 @@ public class TestOrgStruct extends AbstractInitializedModelIntegrationTest { public static final File ROLE_DEFENDER_FILE = new File(TEST_DIR, "role-defender.xml"); public static final String ROLE_DEFENDER_OID = "12345111-1111-2222-1111-121212111567"; + public static final File ORG_TEMP_FILE = new File(TEST_DIR, "org-temp.xml"); + public static final String ORG_TEMP_OID = "43214321-4311-0952-4762-854392584320"; + @Override public void initSystem(Task initTask, OperationResult initResult) throws Exception { super.initSystem(initTask, initResult); @@ -1228,6 +1231,54 @@ public void test412JackChangeMinistryOfOffenseMemberToManagerByModifyingAssignme } } + // import temp org + assign to jack (preparation for the next test) + @Test + public void test420JackAssignTempOrg() throws Exception { + final String TEST_NAME = "test420JackAssignTempOrg"; + TestUtil.displayTestTile(this, TEST_NAME); + + Task task = taskManager.createTaskInstance(TestOrgStruct.class.getName() + "." + TEST_NAME); + OperationResult result = task.getResult(); + + addObject(ORG_TEMP_FILE); + + // WHEN + assignOrg(USER_JACK_OID, ORG_TEMP_OID, task, result); + + // THEN + PrismObject userJack = getUser(USER_JACK_OID); + display("User jack after", userJack); + assertUserAssignedOrgs(userJack, ORG_MINISTRY_OF_OFFENSE_OID, ORG_TEMP_OID); + assertUserHasOrgs(userJack, ORG_MINISTRY_OF_OFFENSE_OID, ORG_TEMP_OID); + + // Postcondition + assertMonkeyIslandOrgSanity(); + } + + // delete the org and then unassign it + @Test + public void test425JackUnassignDeletedOrg() throws Exception { + final String TEST_NAME = "test425JackUnassignDeletedOrg"; + TestUtil.displayTestTile(this, TEST_NAME); + + Task task = taskManager.createTaskInstance(TestOrgStruct.class.getName() + "." + TEST_NAME); + OperationResult result = task.getResult(); + + deleteObject(OrgType.class, ORG_TEMP_OID, task, result); + + // WHEN + unassignOrg(USER_JACK_OID, ORG_TEMP_OID, task, result); + + // THEN + PrismObject userJack = getUser(USER_JACK_OID); + display("User jack after", userJack); + assertUserAssignedOrgs(userJack, ORG_MINISTRY_OF_OFFENSE_OID); + assertUserHasOrgs(userJack, ORG_MINISTRY_OF_OFFENSE_OID); + + // Postcondition + assertMonkeyIslandOrgSanity(); + } + /** * Now let's test working with assignments when there is an object template that prescribes an org assignment * based on organizationalUnit property. diff --git a/model/model-intest/src/test/resources/orgstruct/org-temp.xml b/model/model-intest/src/test/resources/orgstruct/org-temp.xml new file mode 100644 index 00000000000..e5d63be01f9 --- /dev/null +++ b/model/model-intest/src/test/resources/orgstruct/org-temp.xml @@ -0,0 +1,26 @@ + + + + + TEMP + Suddenly appearing and disappearing org + Temp Org + oooo + functional + CCoooo + + From f8f40fbc4407d006ed73543f8564cd17fddfaeb1 Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Fri, 6 Mar 2015 16:35:15 +0100 Subject: [PATCH 28/30] Improvinf OpenLDAP conntest --- .../conntest/AbstractLdapConnTest.java | 103 ++++++++++++++---- 1 file changed, 84 insertions(+), 19 deletions(-) diff --git a/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/AbstractLdapConnTest.java b/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/AbstractLdapConnTest.java index 0b051abc6ba..4741ecba7f5 100644 --- a/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/AbstractLdapConnTest.java +++ b/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/AbstractLdapConnTest.java @@ -21,7 +21,10 @@ import java.io.File; import java.io.IOException; +import java.util.ArrayList; +import java.util.Collection; import java.util.HashMap; +import java.util.List; import java.util.Map; import javax.xml.namespace.QName; @@ -54,8 +57,10 @@ import com.evolveum.midpoint.prism.util.PrismTestUtil; import com.evolveum.midpoint.schema.ResultHandler; import com.evolveum.midpoint.schema.constants.MidPointConstants; +import com.evolveum.midpoint.schema.processor.ResourceAttribute; import com.evolveum.midpoint.schema.result.OperationResult; import com.evolveum.midpoint.schema.util.ObjectQueryUtil; +import com.evolveum.midpoint.schema.util.ShadowUtil; import com.evolveum.midpoint.task.api.Task; import com.evolveum.midpoint.test.util.MidPointTestConstants; import com.evolveum.midpoint.test.util.TestUtil; @@ -106,6 +111,8 @@ public abstract class AbstractLdapConnTest extends AbstractModelIntegrationTest private static final int NUM_LDAP_ENTRIES = 100; private static final String LDAP_GROUP_PIRATES_DN = "cn=Pirates,ou=groups,dc=example,dc=com"; + + private static final String ATTRIBUTE_ENTRY_UUID = "entryUuid"; protected ResourceType resourceType; protected PrismObject resource; @@ -248,7 +255,39 @@ public void test100AssignAccountToBarbossa() throws Exception { result.computeStatus(); TestUtil.assertSuccess(result); - String accountDn = assertLdapAccount(USER_BARBOSSA_USERNAME, USER_BARBOSSA_FULL_NAME); + Entry entry = assertLdapAccount(USER_BARBOSSA_USERNAME, USER_BARBOSSA_FULL_NAME); + + PrismObject user = getUser(USER_BARBOSSA_OID); + String shadowOid = getSingleLinkOid(user); + PrismObject shadow = getShadowModel(shadowOid); + Collection> identifiers = ShadowUtil.getIdentifiers(shadow); + String icfsUid = (String) identifiers.iterator().next().getRealValue(); + + assertEquals("Wrong ICFS UID", entry.get(ATTRIBUTE_ENTRY_UUID).getString(), icfsUid); + } + + @Test + public void test190UnAssignAccountBarbossa() throws Exception { + final String TEST_NAME = "test190UnAssignAccountBarbossa"; + TestUtil.displayTestTile(this, TEST_NAME); + + // GIVEN + Task task = taskManager.createTaskInstance(this.getClass().getName() + "." + TEST_NAME); + OperationResult result = task.getResult(); + + // WHEN + TestUtil.displayWhen(TEST_NAME); + unassignAccount(USER_BARBOSSA_OID, getResourceOid(), null, task, result); + + // THEN + TestUtil.displayThen(TEST_NAME); + result.computeStatus(); + TestUtil.assertSuccess(result); + + assertNoLdapAccount(USER_BARBOSSA_USERNAME); + + PrismObject user = getUser(USER_BARBOSSA_OID); + assertNoLinkedAccount(user); } @@ -263,7 +302,47 @@ public void test100AssignAccountToBarbossa() throws Exception { // sb.append("sn: ").append(name).append("\n"); // } - private String assertLdapAccount(String uid, String cn) throws LdapException, IOException, CursorException { + protected Entry assertLdapAccount(String uid, String cn) throws LdapException, IOException, CursorException { + LdapNetworkConnection connection = ldapConnect(); + List entries = ldapSearch(connection, "(uid="+uid+")"); + ldapDisconnect(connection); + + assertEquals("Unexpected number of entries for uid="+uid+": "+entries, 1, entries.size()); + Entry entry = entries.get(0); + + String dn = entry.getDn().toString(); + assertEquals("Wrong cn in "+dn, cn, entry.get("cn").getString()); + return entry; + } + + protected void assertNoLdapAccount(String uid) throws LdapException, IOException, CursorException { + LdapNetworkConnection connection = ldapConnect(); + List entries = ldapSearch(connection, "(uid="+uid+")"); + ldapDisconnect(connection); + + assertEquals("Unexpected number of entries for uid="+uid+": "+entries, 0, entries.size()); + } + + protected List ldapSearch(LdapNetworkConnection connection, String filter) throws LdapException, CursorException { + return ldapSearch(connection, getLdapSuffix(), filter, SearchScope.SUBTREE, "*", ATTRIBUTE_ENTRY_UUID); + } + + protected List ldapSearch(LdapNetworkConnection connection, String baseDn, String filter, SearchScope scope, String... attributes) throws LdapException, CursorException { + List entries = new ArrayList(); + EntryCursor entryCursor = connection.search( baseDn, filter, scope, attributes ); + Entry entry = null; + while (entryCursor.next()) { + entries.add(entryCursor.get()); + } + return entries; + } + + + protected String toDn(String username) { + return "uid="+username+","+getPeopleLdapSuffix(); + } + + protected LdapNetworkConnection ldapConnect() throws LdapException { LdapConnectionConfig config = new LdapConnectionConfig(); config.setLdapHost(getLdapServerHost()); config.setLdapPort(getLdapServerPort()); @@ -276,24 +355,10 @@ private String assertLdapAccount(String uid, String cn) throws LdapException, IO bindRequest.setDn(new Dn(getLdapBindDn())); bindRequest.setCredentials(getLdapBindPassword()); BindResponse bindResponse = connection.bind(bindRequest); - - EntryCursor entryCursor = connection.search( getLdapSuffix(), "(uid="+uid+")", SearchScope.SUBTREE, "*" ); - Entry entry = null; - while (entryCursor.next()) { - entry = entryCursor.get(); - } - - connection.close(); - - if (entry == null) { - return null; - } - String dn = entry.getDn().toString(); - assertEquals("Wrong cn in "+dn, cn, entry.get("cn").getString()); - return dn; + return connection; } - protected String toDn(String username) { - return "uid="+username+","+getPeopleLdapSuffix(); + protected void ldapDisconnect(LdapNetworkConnection connection) throws IOException { + connection.close(); } } From 97a57f35709b7bea3cce63503ce3e9760f076cc9 Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Fri, 6 Mar 2015 19:51:20 +0100 Subject: [PATCH 29/30] Upgrading embedded test OpenDJ to 2.6.2 --- build-system/pom.xml | 4 +- .../opendj.template/config/admin-backend.ldif | 64 +- .../config/admin-backend.ldif.old | 46 +- .../opendj.template/config/admin-keystore | Bin 1311 -> 1309 bytes .../opendj.template/config/admin-keystore.pin | 2 +- .../opendj.template/config/admin-truststore | Bin 604 -> 604 bytes .../opendj.template/config/ads-truststore | Bin 1790 -> 1789 bytes .../opendj.template/config/ads-truststore.pin | 2 +- .../config-20150306180837Z.gz | Bin 0 -> 12953 bytes .../config-20150306180838Z.gz | Bin 0 -> 12118 bytes .../config-20150306180847Z-2.gz | Bin 0 -> 12290 bytes .../config-20150306180847Z-3.gz | Bin 0 -> 12368 bytes .../config-20150306180847Z-4.gz | Bin 0 -> 12399 bytes .../config-20150306180847Z-5.gz | Bin 0 -> 12462 bytes .../config-20150306180847Z-6.gz | Bin 0 -> 12474 bytes .../config-20150306180847Z-7.gz | Bin 0 -> 12492 bytes .../config-20150306180847Z-8.gz | Bin 0 -> 12547 bytes .../config-20150306180847Z-9.gz | Bin 0 -> 12554 bytes .../config-20150306180847Z.gz | Bin 0 -> 12256 bytes .../config-20150306181208Z.gz | Bin 0 -> 12549 bytes .../config-20150306181505Z.gz | Bin 0 -> 12592 bytes .../config-20150306181507Z.gz | Bin 0 -> 12594 bytes .../config-20150306181728Z.gz | Bin 0 -> 12680 bytes .../opendj.template/config/buildinfo | 2 +- .../opendj.template/config/config.ldif | 326 +- .../config/config.ldif.startok | 304 +- .../opendj.template/config/http-config.json | 135 + .../opendj.template/config/java.properties | 43 +- .../test-data/opendj.template/config/keystore | Bin 1275 -> 0 bytes .../opendj.template/config/keystore.pin | 1 - .../config/schema/00-core.ldif | 38 +- .../config/schema/01-pwpolicy.ldif | 2 +- .../config/schema/02-config.ldif | 1856 ++- .../config/schema/03-changelog.ldif | 20 +- .../config/schema/03-pwpolicyextension.ldif | 33 + .../config/schema/05-rfc4876.ldif | 6 +- .../config/schema/05-samba.ldif | 88 + .../config/schema/05-solaris.ldif | 34 +- .../config/servicetag/opends.uuids.properties | 26 - .../config/snmp/security/opends-snmp.security | 35 - .../opendj.template/config/tasks.ldif | 135 +- .../opendj.template/config/tasks.ldif.save | 115 +- .../opendj.template/config/tools.properties | 37 +- .../opendj.template/config/truststore | Bin 569 -> 0 bytes .../config/upgrade/config.ldif.6998 | 2557 ---- .../{schema.ldif.6998 => schema.ldif.-1} | 1321 +- .../config/upgrade/schema.ldif.current | 1285 +- .../opendj.template/db/userRoot/00000000.jdb | Bin 31624 -> 31704 bytes .../opendj.template/db/userRoot/je.config.csv | 3 + .../opendj.template/db/userRoot/je.info.0 | 48 +- .../opendj.template/db/userRoot/je.stat.csv | 8 + .../test-data/opendj.template/logs/access | 10978 ++++++++++++++++ .../test-data/opendj.template/logs/errors | 100 + .../opendj.template/logs/replication | 25 + .../test-data/opendj.template/logs/server.out | 17 + .../conntest/AbstractLdapConnTest.java | 94 +- .../resources/common/resource-openldap.xml | 4 +- 57 files changed, 15343 insertions(+), 4451 deletions(-) create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180837Z.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180838Z.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-2.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-3.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-4.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-5.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-6.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-7.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-8.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-9.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306181208Z.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306181505Z.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306181507Z.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306181728Z.gz create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/http-config.json delete mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/keystore delete mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/keystore.pin create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/schema/03-pwpolicyextension.ldif create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/schema/05-samba.ldif delete mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/servicetag/opends.uuids.properties delete mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/snmp/security/opends-snmp.security delete mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/truststore delete mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/config.ldif.6998 rename infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/{schema.ldif.6998 => schema.ldif.-1} (63%) create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/db/userRoot/je.config.csv create mode 100644 infra/test-util/src/main/resources/test-data/opendj.template/db/userRoot/je.stat.csv diff --git a/build-system/pom.xml b/build-system/pom.xml index a2b0b59d1ec..ce813e7c03e 100644 --- a/build-system/pom.xml +++ b/build-system/pom.xml @@ -52,7 +52,7 @@ 2.2.10-b140310.1920 2.2.10-b140310.1920 4.8.2 - 2.4.3 + 2.6.2 1.10.8 2.1.3 1.0.1 @@ -188,7 +188,7 @@ com.sleepycat je - 4.1.10 + 5.0.103 jaxb-api diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/admin-backend.ldif b/infra/test-util/src/main/resources/test-data/opendj.template/config/admin-backend.ldif index bb7d16f211f..8af7994bc13 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/admin-backend.ldif +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/admin-backend.ldif @@ -1,34 +1,21 @@ -# -# Copyright (c) 2010-2013 Evolveum -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - dn: cn=admin data objectClass: top objectClass: ds-cfg-branch cn: admin data -ds-sync-generation-id: 94239 +ds-sync-generation-id: 113844 +entryUUID: 46e489f6-1f92-3120-990f-54a178e95b21 dn: cn=instance keys,cn=admin data objectClass: top objectClass: ds-cfg-branch cn: instance keys +entryUUID: 66ceef12-f0d6-355e-9e9b-9bdcfe536d8c dn: cn=secret keys,cn=admin data objectClass: top objectClass: ds-cfg-branch cn: secret keys +entryUUID: 26176404-8825-3f77-9efd-c52bd4061f3b dn: cn=Administrators,cn=admin data objectClass: top @@ -36,60 +23,63 @@ objectClass: groupofurls description: Group of identities which have full access. cn: Administrators memberURL: ldap:///cn=Administrators,cn=admin data??one?(objectclass=*) +entryUUID: 80faa47a-77d6-3c78-a3c1-ea6ccbd2f735 dn: cn=Server Groups,cn=admin data objectClass: top objectClass: ds-cfg-branch cn: Server Groups +entryUUID: 9ee2aa25-d738-31fc-9fde-145fe9a53ae0 dn: cn=all-servers,cn=Server Groups,cn=admin data objectClass: groupOfUniqueNames objectClass: top cn: all-servers -uniqueMember: cn=localhost:14444 -modifyTimestamp: 20110722072252Z +uniqueMember: cn=localhost:10444 +modifyTimestamp: 20150306180846Z modifiersName: cn=Directory Manager,cn=Root DNs,cn=config +entryUUID: 00450d2d-26b0-3d92-b9e8-f616539697fa -dn: ds-cfg-key-id=5095AA8CED948D3740A0471F6153A8BF,cn=instance keys,cn=admin data +dn: ds-cfg-key-id=10DE0F7F79ED46264B94A5C08E190F5A,cn=instance keys,cn=admin data objectClass: top objectClass: ds-cfg-instance-key -ds-cfg-key-id: 5095AA8CED948D3740A0471F6153A8BF -ds-cfg-public-key-certificate;binary:: MIIB2TCCAUKgAwIBAgIETiklSTANBgkqhkiG9w0BAQUFADAxMRswGQYDVQQKExJPcGVuRFMgQ2VydGlmaWNhdGUxEjAQBgNVBAMTCWxvY2FsaG9zdDAeFw0xMTA3MjIwNzIyNDlaFw0zMTA3MTcwNzIyNDlaMDExGzAZBgNVBAoTEk9wZW5EUyBDZXJ0aWZpY2F0ZTESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCnBD3BbuFC/gPTYJoydtT0uCAT9A8qGDtZUU5JjFmzASIX4msCoEWSxeAmQfBR8bv8aHOGN+ha15rU4k7nhbS7PwJcG0vwOzicDCXn/5EYK48Ejfpmzocso0S8wh8hn7yTL6nwchEmFSy2V0iZs59WbGqAUswJiwvLYQ35AMQsbwIDAQABMA0GCSqGSIb3DQEBBQUAA4GBAGMhB//6Nddda+Bp7eQLjO/eLXE6WiMSe4LK6UigGFWcUDE0d/tCbJLlzLgsKo6MXaMzU+re+B77OMn86onLFSaILpqNRnx+ZDx39+eXxtbBaRkCBTTDBfm8mVeOFSWt1BANp48iJffD4DTsrMshAbmHBf8M+F5lULuAppP+ZpRG +ds-cfg-public-key-certificate;binary:: MIIB2TCCAUKgAwIBAgIEEgIl0TANBgkqhkiG9w0BAQUFADAxMRswGQYDVQQKExJPcGVuREogQ2VydGlmaWNhdGUxEjAQBgNVBAMTCWxvY2FsaG9zdDAeFw0xNTAzMDYxODA4NDVaFw0zNTAzMDExODA4NDVaMDExGzAZBgNVBAoTEk9wZW5ESiBDZXJ0aWZpY2F0ZTESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCAXFEKwfwXQfN39ZiNDqDXUNKiYpGpreSvpXx5otnn9ighwrwYvw0Mw2Q2wXVyamed2mvAsAB+/h6ajk0ANu/PQo1iOhrbshr5ffP58/TJW+fvTfu1e5fgdl/XGqknP1S2AGWDn/JLe+MoTbPw4JFyyZqOZkTtnngmEYPpT55xqQIDAQABMA0GCSqGSIb3DQEBBQUAA4GBACGRCQ3mXkD6ULnuLb/9M0lUubFD78daC8upmV8igjHWW/IYaj1ewZdsuKIdW7PaojlCqpc8PNpW7VbssCVeGBD8jahrwu/5xYcJU6okp7p8o1Zp1fIwpaUvX97DfrfjGGUIGgRTM1RdCv2DOtCYB0dZIgmE/0tAs2x+V+gU+UTi +ds-cfg-key-id: 10DE0F7F79ED46264B94A5C08E190F5A creatorsName: cn=Internal Client,cn=Root DNs,cn=config -createTimestamp: 20110722072250Z -entryUUID: f27e4dbc-5631-4a11-8c38-6bca35ede241 +createTimestamp: 20150306180845Z +entryUUID: 23934850-1671-47b4-8451-ac1c64b597d5 dn: cn=Servers,cn=admin data objectClass: top objectClass: ds-cfg-branch cn: Servers creatorsName: cn=Directory Manager,cn=Root DNs,cn=config -createTimestamp: 20110722072251Z -entryUUID: 81112aea-a073-49a9-95f9-1ff9bdb2ace7 +createTimestamp: 20150306180846Z +entryUUID: 21f7e441-4017-4b59-9137-26683e46a055 -dn: cn=localhost:14444,cn=Servers,cn=admin data +dn: cn=localhost:10444,cn=Servers,cn=admin data objectClass: extensibleobject objectClass: top objectClass: ds-cfg-branch memberofgroups: all-servers jmxsEnabled: false -adminport: 14444 +adminport: 10444 jmxEnabled: false -ldapsEnabled: true +ldapsEnabled: false jmxport: 1689 ldapport: 10389 -id: localhost:14444 -ds-cfg-key-id: 5095AA8CED948D3740A0471F6153A8BF +id: localhost:10444 +ds-cfg-key-id: 10DE0F7F79ED46264B94A5C08E190F5A ldapEnabled: true -startTLSEnabled: true -cn: localhost:14444 +startTLSEnabled: false +cn: localhost:10444 jmxsport: -1 hostname: localhost adminEnabled: true -ldapsport: 10636 -entryUUID: 43db4e38-f236-48bc-ae34-f88124255b6d -createTimestamp: 20110722072251Z +ldapsport: 636 +entryUUID: ac944fab-2f03-4157-8b9b-c1141dc1f451 +createTimestamp: 20150306180846Z creatorsName: cn=Directory Manager,cn=Root DNs,cn=config -modifyTimestamp: 20110722072252Z +modifyTimestamp: 20150306180846Z modifiersName: cn=Directory Manager,cn=Root DNs,cn=config diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/admin-backend.ldif.old b/infra/test-util/src/main/resources/test-data/opendj.template/config/admin-backend.ldif.old index 167e1a37a04..91407caa831 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/admin-backend.ldif.old +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/admin-backend.ldif.old @@ -2,16 +2,19 @@ dn: cn=admin data objectClass: top objectClass: ds-cfg-branch cn: admin data +entryUUID: 46e489f6-1f92-3120-990f-54a178e95b21 dn: cn=instance keys,cn=admin data objectClass: top objectClass: ds-cfg-branch cn: instance keys +entryUUID: 66ceef12-f0d6-355e-9e9b-9bdcfe536d8c dn: cn=secret keys,cn=admin data objectClass: top objectClass: ds-cfg-branch cn: secret keys +entryUUID: 26176404-8825-3f77-9efd-c52bd4061f3b dn: cn=Administrators,cn=admin data objectClass: top @@ -19,60 +22,63 @@ objectClass: groupofurls description: Group of identities which have full access. cn: Administrators memberURL: ldap:///cn=Administrators,cn=admin data??one?(objectclass=*) +entryUUID: 80faa47a-77d6-3c78-a3c1-ea6ccbd2f735 dn: cn=Server Groups,cn=admin data objectClass: top objectClass: ds-cfg-branch cn: Server Groups +entryUUID: 9ee2aa25-d738-31fc-9fde-145fe9a53ae0 dn: cn=all-servers,cn=Server Groups,cn=admin data objectClass: groupOfUniqueNames objectClass: top cn: all-servers -uniqueMember: cn=localhost:14444 -modifyTimestamp: 20110722072252Z +uniqueMember: cn=localhost:10444 +modifyTimestamp: 20150306180846Z modifiersName: cn=Directory Manager,cn=Root DNs,cn=config +entryUUID: 00450d2d-26b0-3d92-b9e8-f616539697fa -dn: ds-cfg-key-id=5095AA8CED948D3740A0471F6153A8BF,cn=instance keys,cn=admin data +dn: ds-cfg-key-id=10DE0F7F79ED46264B94A5C08E190F5A,cn=instance keys,cn=admin data objectClass: top objectClass: ds-cfg-instance-key -ds-cfg-key-id: 5095AA8CED948D3740A0471F6153A8BF -ds-cfg-public-key-certificate;binary:: MIIB2TCCAUKgAwIBAgIETiklSTANBgkqhkiG9w0BAQUFADAxMRswGQYDVQQKExJPcGVuRFMgQ2VydGlmaWNhdGUxEjAQBgNVBAMTCWxvY2FsaG9zdDAeFw0xMTA3MjIwNzIyNDlaFw0zMTA3MTcwNzIyNDlaMDExGzAZBgNVBAoTEk9wZW5EUyBDZXJ0aWZpY2F0ZTESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCnBD3BbuFC/gPTYJoydtT0uCAT9A8qGDtZUU5JjFmzASIX4msCoEWSxeAmQfBR8bv8aHOGN+ha15rU4k7nhbS7PwJcG0vwOzicDCXn/5EYK48Ejfpmzocso0S8wh8hn7yTL6nwchEmFSy2V0iZs59WbGqAUswJiwvLYQ35AMQsbwIDAQABMA0GCSqGSIb3DQEBBQUAA4GBAGMhB//6Nddda+Bp7eQLjO/eLXE6WiMSe4LK6UigGFWcUDE0d/tCbJLlzLgsKo6MXaMzU+re+B77OMn86onLFSaILpqNRnx+ZDx39+eXxtbBaRkCBTTDBfm8mVeOFSWt1BANp48iJffD4DTsrMshAbmHBf8M+F5lULuAppP+ZpRG +ds-cfg-public-key-certificate;binary:: MIIB2TCCAUKgAwIBAgIEEgIl0TANBgkqhkiG9w0BAQUFADAxMRswGQYDVQQKExJPcGVuREogQ2VydGlmaWNhdGUxEjAQBgNVBAMTCWxvY2FsaG9zdDAeFw0xNTAzMDYxODA4NDVaFw0zNTAzMDExODA4NDVaMDExGzAZBgNVBAoTEk9wZW5ESiBDZXJ0aWZpY2F0ZTESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCAXFEKwfwXQfN39ZiNDqDXUNKiYpGpreSvpXx5otnn9ighwrwYvw0Mw2Q2wXVyamed2mvAsAB+/h6ajk0ANu/PQo1iOhrbshr5ffP58/TJW+fvTfu1e5fgdl/XGqknP1S2AGWDn/JLe+MoTbPw4JFyyZqOZkTtnngmEYPpT55xqQIDAQABMA0GCSqGSIb3DQEBBQUAA4GBACGRCQ3mXkD6ULnuLb/9M0lUubFD78daC8upmV8igjHWW/IYaj1ewZdsuKIdW7PaojlCqpc8PNpW7VbssCVeGBD8jahrwu/5xYcJU6okp7p8o1Zp1fIwpaUvX97DfrfjGGUIGgRTM1RdCv2DOtCYB0dZIgmE/0tAs2x+V+gU+UTi +ds-cfg-key-id: 10DE0F7F79ED46264B94A5C08E190F5A creatorsName: cn=Internal Client,cn=Root DNs,cn=config -createTimestamp: 20110722072250Z -entryUUID: f27e4dbc-5631-4a11-8c38-6bca35ede241 +createTimestamp: 20150306180845Z +entryUUID: 23934850-1671-47b4-8451-ac1c64b597d5 dn: cn=Servers,cn=admin data objectClass: top objectClass: ds-cfg-branch cn: Servers creatorsName: cn=Directory Manager,cn=Root DNs,cn=config -createTimestamp: 20110722072251Z -entryUUID: 81112aea-a073-49a9-95f9-1ff9bdb2ace7 +createTimestamp: 20150306180846Z +entryUUID: 21f7e441-4017-4b59-9137-26683e46a055 -dn: cn=localhost:14444,cn=Servers,cn=admin data +dn: cn=localhost:10444,cn=Servers,cn=admin data objectClass: extensibleobject objectClass: top objectClass: ds-cfg-branch memberofgroups: all-servers jmxsEnabled: false -adminport: 14444 +adminport: 10444 jmxEnabled: false -ldapsEnabled: true +ldapsEnabled: false jmxport: 1689 ldapport: 10389 -id: localhost:14444 -ds-cfg-key-id: 5095AA8CED948D3740A0471F6153A8BF +id: localhost:10444 +ds-cfg-key-id: 10DE0F7F79ED46264B94A5C08E190F5A ldapEnabled: true -startTLSEnabled: true -cn: localhost:14444 +startTLSEnabled: false +cn: localhost:10444 jmxsport: -1 hostname: localhost adminEnabled: true -ldapsport: 10636 -entryUUID: 43db4e38-f236-48bc-ae34-f88124255b6d -createTimestamp: 20110722072251Z +ldapsport: 636 +entryUUID: ac944fab-2f03-4157-8b9b-c1141dc1f451 +createTimestamp: 20150306180846Z creatorsName: cn=Directory Manager,cn=Root DNs,cn=config -modifyTimestamp: 20110722072252Z +modifyTimestamp: 20150306180846Z modifiersName: cn=Directory Manager,cn=Root DNs,cn=config diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/admin-keystore b/infra/test-util/src/main/resources/test-data/opendj.template/config/admin-keystore index 7e73fd259f6394555219b3d411cc3220566a59c5..b07a962656b26482b7321a5c13be4a3427a9a499 100644 GIT binary patch delta 1112 zcmV-e1gHC-3Y`j&AAd{mMstAx00Ox%f&#TL4h9M<1_1;CDgqG!0R;dAf&!t`k_W61 z_U*N!bK zTv(U-+F*r9c^j`m*&DaVX`~t^)x<;R|RxE9Q*vnW21b>M>C*Y7YH5^z*}4MgdL!cc_ML| z!_@#9Zf?1`_ZFC0b+k!&J`HK? zbR^a`2D=+1q&)F-ol)YCu*&BqdDg4$$Is%ShWa1@77x2;)CUD%e&xA1)|sl& z_!fv6H}RQ+-ZRSfSl@{}U zx4PKnOOrPcf6D>`0RRCo4F(A+hDe6@4FLfK1potqfdB=a^N)rXIN?v;5O6&TsF<%o z!^K|A{N8IQOfs$6%p@osSAt&A6EHMJr8;Id8j@!;yI3PB?M+0G?1zh)ojCkSs|RDr z-|6O`<;u)KY8}=q(d(Kg9sPlUXzQybPsE~OA7?umE}Ek@3n0=jkcVvCy9K>eKUz(h eQC`}VImzS>O25f>`C|< zry{w(#gVO3nf+r^##Evatdyd_ag}3+1&ZMYbcKhN2EYwVi+>%Y(e?~AH`m8hR3nyM zg^d9qCTyC_d&H+Bp?SvzKZZn5@P>Vu3=bWS8Fb%Nf?e+l{m^)?Hb^K$^^5=(tMR9L z_j%wz+Xd5uoY7!e*Cg=O?lO-bjNZnTD#1ZA;M51`I?613v^i*PkfrxmJ2Z`Xig{Vy-_9S zaVg%Knf{mJB7qdhph0VFQXxy-n)SO8OB(xe=L^6}1NrftB9tc(Fu_PbftkmvpJrhe zr|sZl+lI0@e&GIjdr%VS_(dgyJsX`QmXIp&LJ1hQbAQ8tM4)vay|=mdVB%yxBQtq) zk5Qw8KfrV}^3-E7=F9tk+UVdA;>?J-Ws6@I^)2$CPw_@+^m4}Fb9(9IpztUmK<(RXf@%$wky6X`B0`D{V_OrHHNY+)W zc07v43It3O0~x<^|7*pb)>FD_%}Dp>iHtM0;Ym6!Q#qLS_VsoZH9?SbuU#q}dZ_Hs z%dbjcDSA0Zx`2kjC|UH>=05jr%=i^{7qGg6m3dy}FKyJW7I?ax5`m>mLJ3AaOK&@q z;Q}56PAMfvlLG@~8Zj_8GBPkXGBPwbS{Ds5GcY$YF)%kWGBh`nf&*`Vmx_0}wpQ29 zLS1m?>CVemuY_#QKJ!I=P1K6U$rnHtGzd$+2Ze@>Y zPK&(+*SR^CeMrt!H@gS{xs!1O7=K%S=ctE3iqn2ev#a{N{%WE@=?p`Cc_*bJX!Xv| zH03mCqAeM?NVAFXvnf{2%kM#Q!dD?%u{>6twcraX#s0ZM3ccnj)3&V?1VB=U_r<&C z9JT7;VV+%8);+(S(PH~)FArFrmEOl-LY-f)z4X_N`pI SW5d$W1l$CWA0tcfMstP$1z0XMFgXAK0vRxZ0u?ZV0e+wZ0s#U71Vk4vnvp_f z8Z|I8Fg7tbFgP?bS{Ds7H83+UF)=tWI5abn!Eb-IMmM` zI%YN+l4mr#SR*OzO+=9Fhl`n=IQ&Vg2V=?K>E@s1%FID(9o8$+>zXGW{egjK>#HSC z#G+vzXFD01qc#g5(l3yQY}~sAy;MJ1O_@<%+LSrT733qpM!t@sqym8GY|?lrRc~TT FKfH|EoMZq1 delta 359 zcmV-t0hs>W1l$CWA0shPxu7)w1z0XMFgXAK0vRxZ0u?ZV0e+wZ0s#U71WqX>N0CBh z8Zj_8GBPkXGBPwbS{Ds5GcY$YF)%kWGBh`l!Eb+;ig&rTR@cr#U2x{<&dXM>gSSX_aY>U-#_Pq6*BCzQuG+cZE7oZQuV&Wvo9$K F6y8@*o@)RA diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/ads-truststore b/infra/test-util/src/main/resources/test-data/opendj.template/config/ads-truststore index 62b3754ac24ba5a50b1d759cf6a53c2df5341374..809b8ef8e64d9294af94e4b9fd1fe3567df614fc 100644 GIT binary patch literal 1789 zcmezO_TO6u1_mZ5W@O+`Oexk)PAw|QOv_A8EJ{l@HpB^f)pz8ePhk@y_%eLA2{V}?nGxLbt?S)#5 z_b0w_yRE8`V>yRC{O}X;`lJs#4lF%kcs~Bnu0xGMOTVT!?U-cU_cb6^#_G+_*+oCY z*f+GAZMfg!zl8Drtwa0z+!RB8q?pK0_#YT}@vW$!cKxOYf^K)8E?wv>Y|N3^AG*O` zqoq#ES@NRFts9yFp%xtf?^m+w?5UcT>+SjL-r_(G&Xcn10_X0rUufEVVQQds+Vok; z9usctk?e+Gb)hWt&mP7ev&XU163%wqRe!tb?4uhTM+;w? zFNf1b2uK1#J^g^OmNaeCjjHTznLn|s`gxffctSpSXxFxfv# zLFmsTw&h=?K13TXIcIb{ZU2hDjQ<0-mTlNQjl=1g@s9}M#xqyXS{)Bx{FHCU)rH4Y zc=zv~^iP`i!y#oh{zuB|&#S&UU-~C2JkR#q={r?_LXvZ5A9GMW^7X8c$nEFr46UDP zxC>=}f5EiSsW`W!-r(AzWe19i=Y6<){cZHTbqbn`lA|*#{SGwd?JJo6nL@s zto{7+^Ouv+&)@t0-da8VL0SBDsg>&XA=?;Io9BP>u70fHyZOU|iA5)8^`*JIomZhI z*!E-A6P27oRRoFpc>5AW^hO;o&om++y}#vHz7i z=h{OZrhP2svJx(mSXQBaJlm07(-ap$`2Z}N|IKH)9(s>@NI7WMn9N2T7n32W?h zuOGMj5HB{vO7ZLgd#!^SS00{Tw{Xn^4OVl>B*rW(KP?3>py*e(|KDSbXY z|Q`p(=)RWZ~(QS>FOZb}3_XE>6 zBLi!Mo~eN)kagFfiSZ^7J1t;lVq{`s@zYfGG~i|9)N1o+`_2nY)~pN$hKAAxl5EVO zEL_4u{spOdF2M@Uh-_gfWFP>NWESSk$xlwq$;dA*F_07IH8eCZH!=cY6U!)ZUSlBF z&>YGo$H>O{$nFB>H|EA(27|^n@97p=MJWqaH=TOvu|OhpPJp3F z`ERG3Nl(x0(9!DaiCt_Q{OaBhx!)Ei|GervEvnX`H>=mJrY^;%{QL9i$F3dBlw@Kx zIn4TV&&=>XQPs6q1bCPCE2(}z{J`YRn$wDmJKI_R^ZbZQ4cOhVZ1TUfDQ@7hOaU0v zriqCb$*C!pCKf5i<|YP-1}5f)X=a9|#)%e5X^?_#b=YXC7#XQzOZtcKpx?P2m1W9V NiVLrBXDzNh3;@sA(G>sy diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/ads-truststore.pin b/infra/test-util/src/main/resources/test-data/opendj.template/config/ads-truststore.pin index a2a76ad904c..1efccc44826 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/ads-truststore.pin +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/ads-truststore.pin @@ -1 +1 @@ -Ycy5nCgyS5L5MiO89WrDC6Q1CUMgVEhb2VyL3AGfyMzQ09DkHK +gJZpEpd4QSUF2tcct1qZMHD9m46R9CERBOJEPWRA1g38YX1oOw diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180837Z.gz b/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180837Z.gz new file mode 100644 index 0000000000000000000000000000000000000000..c98c0d115558ff29c8e90907144cbb323a426c3e GIT binary patch literal 12953 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 Po;~{?Rxa6^Y=r>;&8t%- literal 0 HcmV?d00001 diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180838Z.gz b/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180838Z.gz new file mode 100644 index 0000000000000000000000000000000000000000..2b5cfa207c3eb18d72844f58b31b05078eb216e6 GIT binary patch literal 12118 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 M0j62_^RRUR0Gt%VGynhq literal 0 HcmV?d00001 diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-2.gz b/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-2.gz new file mode 100644 index 0000000000000000000000000000000000000000..1bb80ed4d5a68cc2d510c1f162433cf094056455 GIT binary patch literal 12290 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 literal 0 HcmV?d00001 diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-3.gz b/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-3.gz new file mode 100644 index 0000000000000000000000000000000000000000..f65b63fdf1150cc4fb6aff6e6066c6e359b8dec6 GIT binary patch literal 12368 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 z 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 z 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 s@rIgB_8zW8R{}f$f3nU3GKR=E&l%iL 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 W!-TAfQWhZ{r2aoibt6CVeE|SBa+l}; literal 0 HcmV?d00001 diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-8.gz b/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-8.gz new file mode 100644 index 0000000000000000000000000000000000000000..4d7c086093d6773c40be41c3371d74d3acf7fe16 GIT binary patch literal 12547 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

iJk!d_@G*FGHM0p9 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 ZEwaWiBWtFVWk?69{}11%`&)s30RTNGsTTkM literal 0 HcmV?d00001 diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-9.gz b/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z-9.gz new file mode 100644 index 0000000000000000000000000000000000000000..1ffd64ecae09efc492e0681f6a952933fe8db7a8 GIT binary patch literal 12554 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

iJk!d_@G*FGHM0p9 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 literal 0 HcmV?d00001 diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z.gz b/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306180847Z.gz new file mode 100644 index 0000000000000000000000000000000000000000..08cd6587ec263910f4867dcbec27d9971d30737a GIT binary patch literal 12256 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 literal 0 HcmV?d00001 diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306181208Z.gz b/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306181208Z.gz new file mode 100644 index 0000000000000000000000000000000000000000..583109f5bf2be39bc02e99297bdd08d11df408e9 GIT binary patch literal 12549 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 bLgZUyjbTRCOexEd4pRRge$ZWiW`F?zDKwjW literal 0 HcmV?d00001 diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306181505Z.gz b/infra/test-util/src/main/resources/test-data/opendj.template/config/archived-configs/config-20150306181505Z.gz new file mode 100644 index 0000000000000000000000000000000000000000..ff4d83642d95573edd447ed3f7eb612354ca26c8 GIT binary patch literal 12592 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

~Zr!BtVk>CjDWsJQVnu6W#m2JM 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 CDx9kT literal 0 HcmV?d00001 diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/buildinfo b/infra/test-util/src/main/resources/test-data/opendj.template/config/buildinfo index bee07d40f32..7638674e5ad 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/buildinfo +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/buildinfo @@ -1 +1 @@ -2.4.3.6998 +2.6.2.-1 \ No newline at end of file diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/config.ldif b/infra/test-util/src/main/resources/test-data/opendj.template/config/config.ldif index 5427f0c62d0..7800e1438b6 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/config.ldif +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/config.ldif @@ -1,19 +1,3 @@ -# -# Copyright (c) 2010-2013 Evolveum -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - # This file contains the primary Directory Server configuration. It must not # be directly edited while the server is online. The server configuration # should only be managed using the administration utilities provided with the @@ -26,6 +10,7 @@ ds-cfg-default-password-policy: cn=Default Password Policy,cn=Password Policies, ds-cfg-lookthrough-limit: 5000 ds-cfg-idle-time-limit: 0 seconds ds-cfg-save-config-on-successful-startup: true +ds-cfg-reject-unauthenticated-requests: false ds-cfg-allowed-task: org.opends.server.tasks.AddSchemaFileTask ds-cfg-allowed-task: org.opends.server.tasks.BackupTask ds-cfg-allowed-task: org.opends.server.tasks.DisconnectClientTask @@ -40,12 +25,11 @@ ds-cfg-allowed-task: org.opends.server.tasks.RebuildTask ds-cfg-allowed-task: org.opends.server.tasks.RestoreTask ds-cfg-allowed-task: org.opends.server.tasks.ShutdownTask ds-cfg-allowed-task: org.opends.server.tasks.PurgeConflictsHistoricalTask -ds-cfg-reject-unauthenticated-requests: false ds-cfg-size-limit: 1000 ds-cfg-bind-with-dn-requires-password: true ds-cfg-entry-cache-preload: false -cn: config ds-cfg-single-structural-objectclass-behavior: reject +cn: config ds-cfg-allow-attribute-name-exceptions: false ds-cfg-max-psearches: -1 ds-cfg-etime-resolution: milliseconds @@ -65,16 +49,19 @@ objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.authorization.dseecompat.AciHandler ds-cfg-global-aci: (extop="1.3.6.1.4.1.26027.1.6.1 || 1.3.6.1.4.1.26027.1.6.3 || 1.3.6.1.4.1.4203.1.11.1 || 1.3.6.1.4.1.1466.20037 || 1.3.6.1.4.1.4203.1.11.3") (version 3.0; acl "Anonymous extended operation access"; allow(read) userdn="ldap:///anyone";) -ds-cfg-global-aci: (targetcontrol="2.16.840.1.113730.3.4.2 || 2.16.840.1.113730.3.4.17 || 2.16.840.1.113730.3.4.19 || 1.3.6.1.4.1.4203.1.10.2 || 1.3.6.1.4.1.42.2.27.8.5.1 || 2.16.840.1.113730.3.4.16") (version 3.0; acl "Anonymous control access"; allow(read) userdn="ldap:///anyone";) -ds-cfg-global-aci: (targetcontrol="1.3.6.1.1.12 || 1.3.6.1.1.13.1 || 1.3.6.1.1.13.2 || 1.2.840.113556.1.4.319 || 1.2.826.0.1.3344810.2.3 || 2.16.840.1.113730.3.4.18 || 2.16.840.1.113730.3.4.9 || 1.2.840.113556.1.4.473 || 1.3.6.1.4.1.42.2.27.9.5.9") (version 3.0; acl "Authenticated users control access"; allow(read) userdn="ldap:///all";) -ds-cfg-global-aci: (targetattr!="userPassword||authPassword||changes||changeNumber||changeType||changeTime||targetDN||newRDN||newSuperior||deleteOldRDN||targetEntryUUID||targetUniqueID||changeInitiatorsName||changeLogCookie")(version 3.0; acl "Anonymous read access"; allow (read,search,compare) userdn="ldap:///anyone";) -ds-cfg-global-aci: (targetattr="audio||authPassword||description||displayName||givenName||homePhone||homePostalAddress||initials||jpegPhoto||labeledURI||mobile||pager||postalAddress||postalCode||preferredLanguage||telephoneNumber||userPassword")(version 3.0; acl "Self entry modification"; allow (write) userdn="ldap:///self";) -ds-cfg-global-aci: (targetattr="userPassword||authPassword")(version 3.0; acl "Self entry read"; allow (read,search,compare) userdn="ldap:///self";) +ds-cfg-global-aci: (target="ldap:///")(targetattr="changeLog || firstChangeNumber || lastChangeNumber")(version 3.0; acl "IDM Access to ChangeLog"; allow (read,search,compare) userdn="ldap:///uid=idm,ou=Administrators,dc=example,dc=com";) +ds-cfg-global-aci: (target="ldap:///")(targetscope="base")(targetattr="objectClass||namingContexts||supportedAuthPasswordSchemes||supportedControl||supportedExtension||supportedFeatures||supportedLDAPVersion||supportedSASLMechanisms||supportedTLSCiphers||supportedTLSProtocols||vendorName||vendorVersion")(version 3.0; acl "User-Visible Root DSE Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";) ds-cfg-global-aci: (target="ldap:///cn=schema")(targetscope="base")(targetattr="objectClass||attributeTypes||dITContentRules||dITStructureRules||ldapSyntaxes||matchingRules||matchingRuleUse||nameForms||objectClasses")(version 3.0; acl "User-Visible Schema Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";) -ds-cfg-global-aci: (target="ldap:///")(targetscope="base")(targetattr="objectClass||namingContexts||supportedAuthPasswordSchemes||supportedControl||supportedExtension||supportedFeatures||supportedLDAPVersion||supportedSASLMechanisms||vendorName||vendorVersion")(version 3.0; acl "User-Visible Root DSE Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";) -ds-cfg-global-aci: (targetattr="createTimestamp||creatorsName||modifiersName||modifyTimestamp||entryDN||entryUUID||subschemaSubentry")(version 3.0; acl "User-Visible Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";) ds-cfg-global-aci: (target="ldap:///dc=replicationchanges")(targetattr="*")(version 3.0; acl "Replication backend access"; deny (all) userdn="ldap:///anyone";) +ds-cfg-global-aci: (targetattr!="userPassword||authPassword||changes||changeNumber||changeType||changeTime||targetDN||newRDN||newSuperior||deleteOldRDN")(version 3.0; acl "Anonymous read access"; allow (read,search,compare) userdn="ldap:///anyone";) +ds-cfg-global-aci: (targetattr="audio||authPassword||description||displayName||givenName||homePhone||homePostalAddress||initials||jpegPhoto||labeledURI||mobile||pager||postalAddress||postalCode||preferredLanguage||telephoneNumber||userPassword")(version 3.0; acl "Self entry modification"; allow (write) userdn="ldap:///self";) +ds-cfg-global-aci: (targetattr="createTimestamp||creatorsName||modifiersName||modifyTimestamp||entryDN||entryUUID||subschemaSubentry||etag||governingStructureRule||structuralObjectClass||hasSubordinates||numSubordinates")(version 3.0; acl "User-Visible Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";) +ds-cfg-global-aci: (targetattr="userPassword||authPassword")(version 3.0; acl "Self entry read"; allow (read,search,compare) userdn="ldap:///self";) +ds-cfg-global-aci: (targetcontrol="1.3.6.1.1.12 || 1.3.6.1.1.13.1 || 1.3.6.1.1.13.2 || 1.2.840.113556.1.4.319 || 1.2.826.0.1.3344810.2.3 || 2.16.840.1.113730.3.4.18 || 2.16.840.1.113730.3.4.9 || 1.2.840.113556.1.4.473 || 1.3.6.1.4.1.42.2.27.9.5.9") (version 3.0; acl "Authenticated users control access"; allow(read) userdn="ldap:///all";) +ds-cfg-global-aci: (targetcontrol="2.16.840.1.113730.3.4.2 || 2.16.840.1.113730.3.4.17 || 2.16.840.1.113730.3.4.19 || 1.3.6.1.4.1.4203.1.10.2 || 1.3.6.1.4.1.42.2.27.8.5.1 || 2.16.840.1.113730.3.4.16 || 1.2.840.113556.1.4.1413") (version 3.0; acl "Anonymous control access"; allow(read) userdn="ldap:///anyone";) cn: Access Control Handler +modifyTimestamp: 20150306181728Z +modifiersName: cn=Directory Manager,cn=Root DNs,cn=config dn: cn=Account Status Notification Handlers,cn=config objectClass: top @@ -106,7 +93,6 @@ objectClass: ds-cfg-smtp-account-status-notification-handler objectClass: ds-cfg-account-status-notification-handler objectClass: top ds-cfg-sender-address: opends-notifications@example.com -cn: SMTP Handler ds-cfg-message-subject: account-temporarily-locked:Your directory account has been locked ds-cfg-message-subject: account-permanently-locked:Your directory account has been locked ds-cfg-message-subject: account-unlocked:Your directory account has been unlocked @@ -119,6 +105,7 @@ ds-cfg-message-subject: password-expired:Your directory password has expired ds-cfg-message-subject: password-expiring:Your directory password is going to expire ds-cfg-message-subject: password-reset:Your directory password has been reset ds-cfg-message-subject: password-changed:Your directory password has been changed +cn: SMTP Handler ds-cfg-enabled: false ds-cfg-java-class: org.opends.server.extensions.SMTPAccountStatusNotificationHandler ds-cfg-email-address-attribute-type: mail @@ -137,10 +124,10 @@ ds-cfg-message-template-file: password-reset:config/messages/password-reset.temp ds-cfg-message-template-file: password-changed:config/messages/password-changed.template dn: cn=Administration Connector,cn=config -objectClass: top objectClass: ds-cfg-administration-connector +objectClass: top ds-cfg-listen-address: 0.0.0.0 -ds-cfg-listen-port: 14444 +ds-cfg-listen-port: 10444 cn: Administration Connector ds-cfg-key-manager-provider: cn=Administration,cn=Key Manager Providers,cn=config ds-cfg-ssl-cert-nickname: admin-cert @@ -152,8 +139,8 @@ objectClass: ds-cfg-branch cn: Alert Handlers dn: cn=JMX Alert Handler,cn=Alert Handlers,cn=config -objectClass: top objectClass: ds-cfg-alert-handler +objectClass: top objectClass: ds-cfg-jmx-alert-handler ds-cfg-enabled: false ds-cfg-java-class: org.opends.server.extensions.JMXAlertHandler @@ -168,11 +155,11 @@ dn: ds-cfg-backend-id=adminRoot,cn=Backends,cn=config objectClass: ds-cfg-backend objectClass: top objectClass: ds-cfg-ldif-backend -ds-cfg-base-dn: cn=admin data -ds-cfg-ldif-file: config/admin-backend.ldif ds-cfg-backend-id: adminRoot ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.backends.LDIFBackend +ds-cfg-base-dn: cn=admin data +ds-cfg-ldif-file: config/admin-backend.ldif ds-cfg-is-private-backend: true ds-cfg-writability-mode: enabled @@ -180,11 +167,11 @@ dn: ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config objectClass: ds-cfg-backend objectClass: top objectClass: ds-cfg-trust-store-backend -ds-cfg-base-dn: cn=ads-truststore -ds-cfg-trust-store-type: JKS ds-cfg-backend-id: ads-truststore ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.backends.TrustStoreBackend +ds-cfg-base-dn: cn=ads-truststore +ds-cfg-trust-store-type: JKS ds-cfg-trust-store-file: config/ads-truststore ds-cfg-writability-mode: enabled ds-cfg-trust-store-pin-file: config/ads-truststore.pin @@ -201,8 +188,8 @@ ds-cfg-backup-directory: bak ds-cfg-writability-mode: disabled dn: ds-cfg-backend-id=config,cn=Backends,cn=config -objectClass: ds-cfg-backend objectClass: ds-cfg-config-file-handler-backend +objectClass: ds-cfg-backend objectClass: top ds-cfg-enabled: true ds-cfg-backend-id: config @@ -211,8 +198,8 @@ ds-cfg-base-dn: cn=config ds-cfg-writability-mode: enabled dn: ds-cfg-backend-id=monitor,cn=Backends,cn=config -objectClass: ds-cfg-backend objectClass: ds-cfg-monitor-backend +objectClass: ds-cfg-backend objectClass: top ds-cfg-enabled: true ds-cfg-backend-id: monitor @@ -244,11 +231,11 @@ dn: ds-cfg-backend-id=tasks,cn=Backends,cn=config objectClass: ds-cfg-backend objectClass: top objectClass: ds-cfg-task-backend -ds-cfg-base-dn: cn=tasks -ds-cfg-task-retention-time: 24 hours ds-cfg-enabled: true ds-cfg-backend-id: tasks ds-cfg-java-class: org.opends.server.backends.task.TaskBackend +ds-cfg-base-dn: cn=tasks +ds-cfg-task-retention-time: 24 hours ds-cfg-task-backing-file: config/tasks.ldif ds-cfg-writability-mode: enabled @@ -258,34 +245,35 @@ objectClass: top objectClass: ds-cfg-local-db-backend ds-cfg-preload-time-limit: 0 seconds ds-cfg-compact-encoding: true -ds-cfg-db-checkpointer-bytes-interval: 20 megabytes +ds-cfg-db-checkpointer-bytes-interval: 500 megabytes ds-cfg-db-logging-level: CONFIG ds-cfg-db-checkpointer-wakeup-interval: 30 seconds +ds-cfg-disk-full-threshold: 100 megabytes ds-cfg-db-evictor-keep-alive: 600 seconds -ds-cfg-disk-full-threshold: 20 megabytes +ds-cfg-disk-low-threshold: 200 megabytes ds-cfg-db-directory: db -ds-cfg-disk-low-threshold: 100 megabytes ds-cfg-base-dn: dc=example,dc=com -ds-cfg-enabled: TRUE ds-cfg-backend-id: userRoot +ds-cfg-enabled: TRUE ds-cfg-index-entry-limit: 4000 ds-cfg-java-class: org.opends.server.backends.jeb.BackendImpl ds-cfg-writability-mode: enabled -ds-cfg-db-cache-percent: 1 -ds-cfg-db-evictor-lru-only: true -ds-cfg-db-cache-size: 5 megabytes +ds-cfg-db-cache-percent: 50 +ds-cfg-db-evictor-lru-only: false ds-cfg-entries-compressed: false +ds-cfg-db-cache-size: 0 megabytes ds-cfg-db-directory-permissions: 700 ds-cfg-db-cleaner-min-utilization: 50 ds-cfg-db-logging-file-handler-on: true -ds-cfg-db-log-file-max: 10 megabytes +ds-cfg-db-log-file-max: 100 megabytes ds-cfg-db-evictor-nodes-per-scan: 10 -ds-cfg-db-evictor-max-threads: 2 +ds-cfg-db-evictor-max-threads: 10 +ds-cfg-db-log-filecache-size: 100 ds-cfg-db-evictor-core-threads: 1 -ds-cfg-db-run-cleaner: false +ds-cfg-db-run-cleaner: true ds-cfg-db-txn-no-sync: false ds-cfg-db-txn-write-no-sync: true -modifyTimestamp: 20110722074115Z +modifyTimestamp: 20150306181507Z modifiersName: cn=Internal Client,cn=Root DNs,cn=config dn: cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config @@ -296,85 +284,85 @@ cn: Index dn: ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: presence ds-cfg-attribute: aci +ds-cfg-index-type: presence dn: ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index +ds-cfg-attribute: cn ds-cfg-index-type: equality ds-cfg-index-type: substring -ds-cfg-attribute: cn dn: ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: equality ds-cfg-attribute: ds-sync-conflict +ds-cfg-index-type: equality dn: ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: ordering ds-cfg-attribute: ds-sync-hist +ds-cfg-index-type: ordering dn: ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: equality ds-cfg-attribute: entryUUID +ds-cfg-index-type: equality dn: ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index +ds-cfg-attribute: givenName ds-cfg-index-type: equality ds-cfg-index-type: substring -ds-cfg-attribute: givenName dn: ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index +ds-cfg-attribute: mail ds-cfg-index-type: equality ds-cfg-index-type: substring -ds-cfg-attribute: mail dn: ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: equality ds-cfg-attribute: member +ds-cfg-index-type: equality dn: ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: equality ds-cfg-attribute: objectClass +ds-cfg-index-type: equality dn: ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index +ds-cfg-attribute: sn ds-cfg-index-type: equality ds-cfg-index-type: substring -ds-cfg-attribute: sn dn: ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index +ds-cfg-attribute: telephoneNumber ds-cfg-index-type: equality ds-cfg-index-type: substring -ds-cfg-attribute: telephoneNumber dn: ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: equality ds-cfg-attribute: uid +ds-cfg-index-type: equality dn: ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: equality ds-cfg-attribute: uniqueMember +ds-cfg-index-type: equality dn: cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top @@ -403,7 +391,7 @@ objectClass: ds-cfg-certificate-mapper ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.SubjectAttributeToUserAttributeCertificateMapper ds-cfg-subject-attribute-mapping: cn:cn -ds-cfg-subject-attribute-mapping: e:mail +ds-cfg-subject-attribute-mapping: emailAddress:mail cn: Subject Attribute to User Attribute dn: cn=Subject DN to User Attribute,cn=Certificate Mappers,cn=config @@ -411,8 +399,8 @@ objectClass: ds-cfg-subject-dn-to-user-attribute-certificate-mapper objectClass: top objectClass: ds-cfg-certificate-mapper ds-cfg-enabled: true -ds-cfg-java-class: org.opends.server.extensions.SubjectDNToUserAttributeCertificateMapper ds-cfg-subject-attribute: ds-certificate-subject-dn +ds-cfg-java-class: org.opends.server.extensions.SubjectDNToUserAttributeCertificateMapper cn: Subject DN to User Attribute dn: cn=Subject Equals DN,cn=Certificate Mappers,cn=config @@ -428,6 +416,29 @@ objectClass: top objectClass: ds-cfg-branch cn: Connection Handlers +dn: cn=HTTP Connection Handler,cn=Connection Handlers,cn=config +objectClass: ds-cfg-http-connection-handler +objectClass: top +objectClass: ds-cfg-connection-handler +ds-cfg-ssl-client-auth-policy: optional +ds-cfg-ssl-cert-nickname: server-cert +ds-cfg-max-blocked-write-time-limit: 2 minutes +ds-cfg-allow-tcp-reuse-address: true +cn: HTTP Connection Handler +ds-cfg-use-tcp-no-delay: true +ds-cfg-enabled: false +ds-cfg-java-class: org.opends.server.protocols.http.HTTPConnectionHandler +ds-cfg-keep-stats: true +ds-cfg-authentication-required: true +ds-cfg-buffer-size: 4096 bytes +ds-cfg-max-request-size: 5 megabytes +ds-cfg-accept-backlog: 128 +ds-cfg-config-file: config/http-config.json +ds-cfg-listen-address: 0.0.0.0 +ds-cfg-listen-port: 8080 +ds-cfg-use-ssl: false +ds-cfg-use-tcp-keep-alive: true + dn: cn=JMX Connection Handler,cn=Connection Handlers,cn=config objectClass: ds-cfg-jmx-connection-handler objectClass: top @@ -443,23 +454,20 @@ objectClass: ds-cfg-ldap-connection-handler objectClass: top objectClass: ds-cfg-connection-handler ds-cfg-ssl-client-auth-policy: optional -ds-cfg-key-manager-provider: cn=JKS,cn=Key Manager Providers,cn=config -ds-cfg-trust-manager-provider: cn=JKS,cn=Trust Manager Providers,cn=config ds-cfg-max-blocked-write-time-limit: 2 minutes ds-cfg-allow-tcp-reuse-address: true -ds-cfg-allow-start-tls: true -ds-cfg-allow-ldap-v2: true +ds-cfg-allow-start-tls: false ds-cfg-send-rejection-notice: true +ds-cfg-allow-ldap-v2: true cn: LDAP Connection Handler -ds-cfg-enabled: true ds-cfg-use-tcp-no-delay: true +ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.protocols.ldap.LDAPConnectionHandler ds-cfg-keep-stats: true -ds-cfg-max-request-size: 5 megabytes ds-cfg-accept-backlog: 128 +ds-cfg-max-request-size: 5 megabytes ds-cfg-buffer-size: 4096 bytes ds-cfg-listen-address: 0.0.0.0 -ds-cfg-num-request-handlers: 2 ds-cfg-listen-port: 10389 ds-cfg-use-ssl: false ds-cfg-use-tcp-keep-alive: true @@ -468,31 +476,30 @@ dn: cn=LDAPS Connection Handler,cn=Connection Handlers,cn=config objectClass: ds-cfg-ldap-connection-handler objectClass: top objectClass: ds-cfg-connection-handler -ds-cfg-key-manager-provider: cn=JKS,cn=Key Manager Providers,cn=config ds-cfg-ssl-client-auth-policy: optional +ds-cfg-key-manager-provider: cn=JKS,cn=Key Manager Providers,cn=config ds-cfg-trust-manager-provider: cn=JKS,cn=Trust Manager Providers,cn=config ds-cfg-max-blocked-write-time-limit: 2 minutes ds-cfg-allow-tcp-reuse-address: true ds-cfg-allow-start-tls: false -ds-cfg-allow-ldap-v2: true ds-cfg-send-rejection-notice: true +ds-cfg-allow-ldap-v2: true cn: LDAPS Connection Handler -ds-cfg-enabled: true ds-cfg-use-tcp-no-delay: true +ds-cfg-enabled: false ds-cfg-java-class: org.opends.server.protocols.ldap.LDAPConnectionHandler ds-cfg-keep-stats: true -ds-cfg-max-request-size: 5 megabytes ds-cfg-accept-backlog: 128 +ds-cfg-max-request-size: 5 megabytes ds-cfg-buffer-size: 4096 bytes ds-cfg-listen-address: 0.0.0.0 -ds-cfg-num-request-handlers: 2 -ds-cfg-listen-port: 10636 +ds-cfg-listen-port: 636 ds-cfg-use-ssl: true ds-cfg-use-tcp-keep-alive: true dn: cn=LDIF Connection Handler,cn=Connection Handlers,cn=config -objectClass: top objectClass: ds-cfg-ldif-connection-handler +objectClass: top objectClass: ds-cfg-connection-handler ds-cfg-enabled: false ds-cfg-java-class: org.opends.server.protocols.LDIFConnectionHandler @@ -514,16 +521,16 @@ cn: Entry Caches dn: cn=FIFO,cn=Entry Caches,cn=config objectClass: ds-cfg-fifo-entry-cache -objectClass: top objectClass: ds-cfg-entry-cache +objectClass: top ds-cfg-enabled: false ds-cfg-java-class: org.opends.server.extensions.FIFOEntryCache ds-cfg-cache-level: 1 cn: FIFO dn: cn=File System,cn=Entry Caches,cn=config -objectClass: top objectClass: ds-cfg-entry-cache +objectClass: top objectClass: ds-cfg-file-system-entry-cache ds-cfg-enabled: false ds-cfg-java-class: org.opends.server.extensions.FileSystemEntryCache @@ -532,8 +539,8 @@ cn: File System dn: cn=Soft Reference,cn=Entry Caches,cn=config objectClass: ds-cfg-soft-reference-entry-cache -objectClass: top objectClass: ds-cfg-entry-cache +objectClass: top ds-cfg-enabled: false ds-cfg-java-class: org.opends.server.extensions.SoftReferenceEntryCache ds-cfg-cache-level: 2 @@ -574,8 +581,8 @@ objectClass: ds-cfg-extended-operation-handler objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.PasswordModifyExtendedOperation -cn: Password Modify ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config +cn: Password Modify dn: cn=Password Policy State,cn=Extended Operations,cn=config objectClass: ds-cfg-password-policy-state-extended-operation-handler @@ -644,8 +651,8 @@ dn: cn=Exact Match,cn=Identity Mappers,cn=config objectClass: ds-cfg-exact-match-identity-mapper objectClass: ds-cfg-identity-mapper objectClass: top -ds-cfg-match-attribute: uid ds-cfg-enabled: true +ds-cfg-match-attribute: uid ds-cfg-java-class: org.opends.server.extensions.ExactMatchIdentityMapper cn: Exact Match @@ -680,7 +687,7 @@ dn: cn=JKS,cn=Key Manager Providers,cn=config objectClass: ds-cfg-key-manager-provider objectClass: ds-cfg-file-based-key-manager-provider objectClass: top -ds-cfg-enabled: true +ds-cfg-enabled: false ds-cfg-java-class: org.opends.server.extensions.FileBasedKeyManagerProvider ds-cfg-key-store-file: config/keystore ds-cfg-key-store-type: JKS @@ -798,8 +805,8 @@ ds-cfg-log-file-permissions: 640 dn: cn=File-Based Audit Logger,cn=Loggers,cn=config objectClass: ds-cfg-log-publisher objectClass: ds-cfg-access-log-publisher -objectClass: ds-cfg-file-based-access-log-publisher objectClass: top +objectClass: ds-cfg-file-based-audit-log-publisher ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config ds-cfg-rotation-policy: cn=24 Hours Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config @@ -844,6 +851,21 @@ ds-cfg-default-severity: notice ds-cfg-log-file: logs/errors ds-cfg-log-file-permissions: 640 +dn: cn=File-Based HTTP Access Logger,cn=Loggers,cn=config +objectClass: ds-cfg-log-publisher +objectClass: ds-cfg-http-access-log-publisher +objectClass: ds-cfg-file-based-http-access-log-publisher +objectClass: top +ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config +ds-cfg-rotation-policy: cn=24 Hours Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config +ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config +ds-cfg-asynchronous: true +cn: File-Based HTTP Access Logger +ds-cfg-enabled: false +ds-cfg-java-class: org.opends.server.loggers.TextHTTPAccessLogPublisher +ds-cfg-log-file: logs/http-access +ds-cfg-log-file-permissions: 640 + dn: cn=Replication Repair Logger,cn=Loggers,cn=config objectClass: ds-cfg-log-publisher objectClass: ds-cfg-error-log-publisher @@ -1030,8 +1052,8 @@ ds-cfg-collation: bg:1.3.6.1.4.1.42.2.27.9.4.23.1 ds-cfg-collation: ca:1.3.6.1.4.1.42.2.27.9.4.25.1 ds-cfg-collation: cs:1.3.6.1.4.1.42.2.27.9.4.26.1 ds-cfg-collation: da:1.3.6.1.4.1.42.2.27.9.4.27.1 -ds-cfg-collation: de:1.3.6.1.4.1.142.2.27.9.4.28.1 -ds-cfg-collation: de-DE:1.3.6.1.4.1.142.2.27.9.4.28.1 +ds-cfg-collation: de:1.3.6.1.4.1.42.2.27.9.4.28.1 +ds-cfg-collation: de-DE:1.3.6.1.4.1.42.2.27.9.4.28.1 ds-cfg-collation: de-AT:1.3.6.1.4.1.42.2.27.9.4.29.1 ds-cfg-collation: de-CH:1.3.6.1.4.1.42.2.27.9.4.31.1 ds-cfg-collation: de-LU:1.3.6.1.4.1.42.2.27.9.4.32.1 @@ -1130,8 +1152,8 @@ cn: Distinguished Name Equality Matching Rule dn: cn=Double Metaphone Approximate Matching Rule,cn=Matching Rules,cn=config objectClass: ds-cfg-matching-rule -objectClass: top objectClass: ds-cfg-approximate-matching-rule +objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.schema.DoubleMetaphoneApproximateMatchingRuleFactory cn: Double Metaphone Approximate Matching Rule @@ -1391,8 +1413,8 @@ cn: System Info dn: cn=Version,cn=Monitor Providers,cn=config objectClass: ds-cfg-monitor-provider -objectClass: top objectClass: ds-cfg-version-monitor-provider +objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.monitors.VersionMonitorProvider cn: Version @@ -1426,16 +1448,18 @@ cn: Password Policies dn: cn=Default Password Policy,cn=Password Policies,cn=config objectClass: ds-cfg-password-policy objectClass: top +objectClass: ds-cfg-authentication-policy ds-cfg-skip-validation-for-administrators: false ds-cfg-force-change-on-add: false ds-cfg-state-update-failure-policy: reactive ds-cfg-password-history-count: 0 -ds-cfg-allow-multiple-password-values: false ds-cfg-password-history-duration: 0 seconds +ds-cfg-allow-multiple-password-values: false ds-cfg-lockout-failure-expiration-interval: 0 seconds ds-cfg-lockout-failure-count: 0 ds-cfg-max-password-reset-age: 0 seconds ds-cfg-max-password-age: 0 seconds +ds-cfg-java-class: org.opends.server.core.PasswordPolicyFactory ds-cfg-idle-lockout-interval: 0 seconds ds-cfg-lockout-duration: 0 seconds ds-cfg-grace-login-count: 0 @@ -1449,24 +1473,26 @@ ds-cfg-require-secure-authentication: false ds-cfg-expire-passwords-without-warning: false ds-cfg-password-change-requires-current-password: false ds-cfg-password-generator: cn=Random Password Generator,cn=Password Generators,cn=config -ds-cfg-allow-expired-password-changes: false ds-cfg-password-expiration-warning-interval: 5 days +ds-cfg-allow-expired-password-changes: false ds-cfg-password-attribute: userPassword ds-cfg-min-password-age: 0 seconds dn: cn=Root Password Policy,cn=Password Policies,cn=config objectClass: ds-cfg-password-policy objectClass: top +objectClass: ds-cfg-authentication-policy ds-cfg-skip-validation-for-administrators: false ds-cfg-force-change-on-add: false ds-cfg-state-update-failure-policy: ignore ds-cfg-password-history-count: 0 -ds-cfg-allow-multiple-password-values: false ds-cfg-password-history-duration: 0 seconds +ds-cfg-allow-multiple-password-values: false ds-cfg-lockout-failure-expiration-interval: 0 seconds ds-cfg-lockout-failure-count: 0 ds-cfg-max-password-reset-age: 0 seconds ds-cfg-max-password-age: 0 seconds +ds-cfg-java-class: org.opends.server.core.PasswordPolicyFactory ds-cfg-idle-lockout-interval: 0 seconds ds-cfg-lockout-duration: 0 seconds ds-cfg-grace-login-count: 0 @@ -1479,8 +1505,8 @@ cn: Root Password Policy ds-cfg-require-secure-authentication: false ds-cfg-expire-passwords-without-warning: false ds-cfg-password-change-requires-current-password: true -ds-cfg-allow-expired-password-changes: false ds-cfg-password-expiration-warning-interval: 5 days +ds-cfg-allow-expired-password-changes: false ds-cfg-password-attribute: userPassword ds-cfg-min-password-age: 0 seconds @@ -1546,6 +1572,14 @@ ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.MD5PasswordStorageScheme cn: MD5 +dn: cn=PBKDF2,cn=Password Storage Schemes,cn=config +objectClass: ds-cfg-password-storage-scheme +objectClass: ds-cfg-pbkdf2-password-storage-scheme +objectClass: top +ds-cfg-enabled: true +ds-cfg-java-class: org.opends.server.extensions.PBKDF2PasswordStorageScheme +cn: PBKDF2 + dn: cn=RC4,cn=Password Storage Schemes,cn=config objectClass: ds-cfg-password-storage-scheme objectClass: ds-cfg-rc4-password-storage-scheme @@ -1580,8 +1614,8 @@ cn: Salted SHA-256 dn: cn=Salted SHA-384,cn=Password Storage Schemes,cn=config objectClass: ds-cfg-password-storage-scheme -objectClass: top objectClass: ds-cfg-salted-sha384-password-storage-scheme +objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.SaltedSHA384PasswordStorageScheme cn: Salted SHA-384 @@ -1614,11 +1648,12 @@ objectClass: top ds-cfg-enabled: true ds-cfg-test-reversed-password: true ds-cfg-java-class: org.opends.server.extensions.AttributeValuePasswordValidator +ds-cfg-check-substrings: true cn: Attribute Value dn: cn=Character Set,cn=Password Validators,cn=config -objectClass: ds-cfg-password-validator objectClass: ds-cfg-character-set-password-validator +objectClass: ds-cfg-password-validator objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.CharacterSetPasswordValidator @@ -1637,6 +1672,7 @@ ds-cfg-enabled: false ds-cfg-test-reversed-password: true ds-cfg-java-class: org.opends.server.extensions.DictionaryPasswordValidator ds-cfg-dictionary-file: config/wordlist.txt +ds-cfg-check-substrings: true cn: Dictionary ds-cfg-case-sensitive-validation: false @@ -1662,12 +1698,12 @@ ds-cfg-case-sensitive-validation: false dn: cn=Similarity-Based Password Validator,cn=Password Validators,cn=config objectClass: ds-cfg-password-validator -objectClass: top objectClass: ds-cfg-similarity-based-password-validator +objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.SimilarityBasedPasswordValidator -ds-cfg-min-password-difference: 3 cn: Similarity-Based Password Validator +ds-cfg-min-password-difference: 3 dn: cn=Unique Characters,cn=Password Validators,cn=config objectClass: ds-cfg-password-validator @@ -1706,11 +1742,11 @@ objectClass: ds-cfg-plugin objectClass: top objectClass: ds-cfg-change-number-control-plugin ds-cfg-enabled: true +ds-cfg-java-class: org.opends.server.plugins.ChangeNumberControlPlugin ds-cfg-plugin-type: postOperationAdd ds-cfg-plugin-type: postOperationDelete ds-cfg-plugin-type: postOperationModify ds-cfg-plugin-type: postOperationModifyDn -ds-cfg-java-class: org.opends.server.plugins.ChangeNumberControlPlugin cn: Change Number Control dn: cn=Entry UUID,cn=Plugins,cn=config @@ -1784,8 +1820,8 @@ objectClass: ds-cfg-plugin objectClass: top ds-cfg-plugin-type: ldifImport ds-cfg-invoke-for-internal-operations: false -cn: Password Policy Import ds-cfg-default-auth-password-storage-scheme: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config +cn: Password Policy Import ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.plugins.PasswordPolicyImportPlugin ds-cfg-default-user-password-storage-scheme: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config @@ -1822,7 +1858,7 @@ dn: cn=UID Unique Attribute,cn=Plugins,cn=config objectClass: ds-cfg-unique-attribute-plugin objectClass: ds-cfg-plugin objectClass: top -ds-cfg-enabled: true +ds-cfg-enabled: false ds-cfg-java-class: org.opends.server.plugins.UniqueAttributePlugin ds-cfg-plugin-type: preOperationAdd ds-cfg-plugin-type: preOperationModify @@ -1863,11 +1899,11 @@ cn: Root DNs dn: cn=Directory Manager,cn=Root DNs,cn=config objectClass: person -objectClass: organizationalPerson objectClass: inetOrgPerson -objectClass: top +objectClass: organizationalPerson objectClass: ds-cfg-root-dn-user -userpassword: {SSHA512}oDa/5AoXCKPCTSLXPOw87/juoKlWtZ6OHHQgunFd1ddFKgzb4bkWnMFyYP+IGAXv8KjUEhg7omARjctyVCSpASvA9xcSHjvk +objectClass: top +userpassword: {SSHA512}EtpxpgKa21dBsqxibE/8FgvYmZPZhL1VseogFgCjGc4+XX9B8Jpgf7VN7ea6qmIyLahK+zy4w15yBTOTYKI8/u3nbRZU6r46 givenName: Directory cn: Directory Manager ds-cfg-alternate-bind-dn: cn=Directory Manager @@ -1881,8 +1917,8 @@ ds-rlim-size-limit: 0 dn: cn=Root DSE,cn=config objectClass: ds-cfg-root-dse-backend objectClass: top -cn: Root DSE ds-cfg-show-all-attributes: false +cn: Root DSE dn: cn=SASL Mechanisms,cn=config objectClass: top @@ -1903,8 +1939,8 @@ objectClass: ds-cfg-cram-md5-sasl-mechanism-handler objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.CRAMMD5SASLMechanismHandler -cn: CRAM-MD5 ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config +cn: CRAM-MD5 dn: cn=DIGEST-MD5,cn=SASL Mechanisms,cn=config objectClass: ds-cfg-digest-md5-sasl-mechanism-handler @@ -1912,8 +1948,9 @@ objectClass: ds-cfg-sasl-mechanism-handler objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.DigestMD5SASLMechanismHandler -cn: DIGEST-MD5 +ds-cfg-server-fqdn: localhost ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config +cn: DIGEST-MD5 dn: cn=EXTERNAL,cn=SASL Mechanisms,cn=config objectClass: ds-cfg-external-sasl-mechanism-handler @@ -1942,8 +1979,8 @@ objectClass: ds-cfg-plain-sasl-mechanism-handler objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.PlainSASLMechanismHandler -cn: PLAIN ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config +cn: PLAIN dn: cn=Synchronization Providers,cn=config objectClass: top @@ -1951,8 +1988,8 @@ objectClass: ds-cfg-branch cn: Synchronization Providers dn: cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config -objectClass: ds-cfg-synchronization-provider objectClass: ds-cfg-replication-synchronization-provider +objectClass: ds-cfg-synchronization-provider objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.replication.plugin.MultimasterReplication @@ -1967,12 +2004,12 @@ dn: cn=cn=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronizatio objectClass: ds-cfg-replication-domain objectClass: top ds-cfg-base-dn: cn=admin data -ds-cfg-server-id: 30860 +ds-cfg-server-id: 23955 cn: cn=admin data -ds-cfg-replication-server: localhost:19989 +ds-cfg-replication-server: localhost:10989 creatorsName: cn=Directory Manager,cn=Root DNs,cn=config -createTimestamp: 20110722072252Z -entryUUID: 9db8aa1b-aad9-47f1-950a-0adf9687923c +createTimestamp: 20150306180847Z +entryUUID: 9f8ad88a-2ed8-4770-9f19-2ab846239a2a dn: cn=external changelog,cn=cn=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config objectClass: top @@ -1984,12 +2021,12 @@ dn: cn=cn=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Pr objectClass: ds-cfg-replication-domain objectClass: top ds-cfg-base-dn: cn=schema -ds-cfg-server-id: 16890 +ds-cfg-server-id: 17438 cn: cn=schema -ds-cfg-replication-server: localhost:19989 +ds-cfg-replication-server: localhost:10989 creatorsName: cn=Directory Manager,cn=Root DNs,cn=config -createTimestamp: 20110722072253Z -entryUUID: effe8f2e-2db3-47a5-9a4a-b2a6058c859f +createTimestamp: 20150306180847Z +entryUUID: 10e203cb-9e1f-4134-b948-9f76eff963ca dn: cn=external changelog,cn=cn=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config objectClass: top @@ -2001,13 +2038,13 @@ dn: cn=dc=example\,dc=com,cn=domains,cn=Multimaster Synchronization,cn=Synchroni objectClass: ds-cfg-replication-domain objectClass: top ds-cfg-base-dn: dc=example,dc=com -ds-cfg-server-id: 8631 +ds-cfg-server-id: 161 cn: dc=example,dc=com -ds-cfg-replication-server: localhost:19989 -entryUUID: 9ccc96eb-8688-4e7f-a688-a1a3d18d9bd2 +ds-cfg-replication-server: localhost:10989 +createTimestamp: 20150306180847Z creatorsName: cn=Directory Manager,cn=Root DNs,cn=config -createTimestamp: 20110722072253Z ds-sync-generation-id: 48 +entryUUID: 1abc608f-c81b-40c1-9af8-d07805a9197c dn: cn=external changelog,cn=dc=example\,dc=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config objectClass: top @@ -2018,14 +2055,14 @@ cn: external changelog dn: cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config objectClass: top objectClass: ds-cfg-replication-server -ds-cfg-replication-server-id: 32548 -ds-cfg-replication-port: 19989 +ds-cfg-replication-server-id: 9664 +ds-cfg-replication-port: 10989 cn: replication server ds-cfg-replication-db-directory: changelogDb -ds-cfg-replication-server: localhost:19989 +ds-cfg-replication-server: localhost:10989 creatorsName: cn=Directory Manager,cn=Root DNs,cn=config -createTimestamp: 20110722072252Z -entryUUID: 253400e9-3b19-4b48-b656-72cece3e3ea6 +createTimestamp: 20150306180847Z +entryUUID: 7d549c3b-8294-467b-84e8-816d6cedf044 dn: cn=Syntaxes,cn=config objectClass: top @@ -2072,7 +2109,9 @@ cn: Boolean dn: cn=Certificate,cn=Syntaxes,cn=config objectClass: ds-cfg-attribute-syntax objectClass: top +objectClass: ds-cfg-certificate-attribute-syntax ds-cfg-enabled: true +ds-cfg-strict-format: true ds-cfg-java-class: org.opends.server.schema.CertificateSyntax cn: Certificate @@ -2091,9 +2130,11 @@ ds-cfg-java-class: org.opends.server.schema.CertificatePairSyntax cn: Certificate Pair dn: cn=Country String,cn=Syntaxes,cn=config +objectClass: ds-cfg-country-string-attribute-syntax objectClass: ds-cfg-attribute-syntax objectClass: top ds-cfg-enabled: true +ds-cfg-strict-format: true ds-cfg-java-class: org.opends.server.schema.CountryStringSyntax cn: Country String @@ -2186,7 +2227,9 @@ cn: Integer dn: cn=JPEG,cn=Syntaxes,cn=config objectClass: ds-cfg-attribute-syntax objectClass: top +objectClass: ds-cfg-jpeg-attribute-syntax ds-cfg-enabled: true +ds-cfg-strict-format: false ds-cfg-java-class: org.opends.server.schema.JPEGSyntax cn: JPEG @@ -2320,8 +2363,8 @@ dn: cn=Telephone Number,cn=Syntaxes,cn=config objectClass: ds-cfg-telephone-number-attribute-syntax objectClass: ds-cfg-attribute-syntax objectClass: top -ds-cfg-strict-format: false ds-cfg-enabled: true +ds-cfg-strict-format: false ds-cfg-java-class: org.opends.server.schema.TelephoneNumberSyntax cn: Telephone Number @@ -2387,7 +2430,7 @@ dn: cn=JKS,cn=Trust Manager Providers,cn=config objectClass: ds-cfg-file-based-trust-manager-provider objectClass: ds-cfg-trust-manager-provider objectClass: top -ds-cfg-enabled: true +ds-cfg-enabled: false ds-cfg-java-class: org.opends.server.extensions.FileBasedTrustManagerProvider ds-cfg-trust-store-type: JKS ds-cfg-trust-store-file: config/truststore @@ -2438,6 +2481,18 @@ ds-cfg-conflict-behavior: real-overrides-virtual cn: entryUUID ds-cfg-attribute-type: entryUUID +dn: cn=etag,cn=Virtual Attributes,cn=config +objectClass: ds-cfg-virtual-attribute +objectClass: ds-cfg-entity-tag-virtual-attribute +objectClass: top +ds-cfg-conflict-behavior: real-overrides-virtual +cn: etag +ds-cfg-attribute-type: etag +ds-cfg-enabled: true +ds-cfg-java-class: org.opends.server.extensions.EntityTagVirtualAttributeProvider +ds-cfg-excluded-attribute: ds-sync-hist +ds-cfg-checksum-algorithm: adler-32 + dn: cn=governingStructureRule,cn=Virtual Attributes,cn=config objectClass: ds-cfg-virtual-attribute objectClass: ds-cfg-governing-structure-rule-virtual-attribute @@ -2464,7 +2519,7 @@ objectClass: ds-cfg-is-member-of-virtual-attribute objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.IsMemberOfVirtualAttributeProvider -ds-cfg-filter: (objectClass=person) +ds-cfg-filter: (|(objectClass=person)(objectClass=groupOfNames)(objectClass=groupOfUniqueNames)(objectClass=groupOfEntries)) ds-cfg-conflict-behavior: virtual-overrides-real cn: isMemberOf ds-cfg-attribute-type: isMemberOf @@ -2479,6 +2534,16 @@ ds-cfg-conflict-behavior: virtual-overrides-real cn: numSubordinates ds-cfg-attribute-type: numSubordinates +dn: cn=Password Expiration Time,cn=Virtual Attributes,cn=config +objectClass: ds-cfg-virtual-attribute +objectClass: ds-cfg-password-expiration-time-virtual-attribute +objectClass: top +ds-cfg-enabled: true +ds-cfg-java-class: org.opends.server.extensions.PasswordExpirationTimeVirtualAttributeProvider +ds-cfg-conflict-behavior: virtual-overrides-real +cn: Password Expiration Time +ds-cfg-attribute-type: ds-pwp-password-expiration-time + dn: cn=Password Policy Subentry,cn=Virtual Attributes,cn=config objectClass: ds-cfg-virtual-attribute objectClass: top @@ -2501,8 +2566,8 @@ ds-cfg-attribute-type: structuralObjectClass dn: cn=subschemaSubentry,cn=Virtual Attributes,cn=config objectClass: ds-cfg-virtual-attribute -objectClass: top objectClass: ds-cfg-subschema-subentry-virtual-attribute +objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.SubschemaSubentryVirtualAttributeProvider ds-cfg-conflict-behavior: virtual-overrides-real @@ -2511,8 +2576,8 @@ ds-cfg-attribute-type: subschemaSubentry dn: cn=Virtual Static member,cn=Virtual Attributes,cn=config objectClass: ds-cfg-virtual-attribute -objectClass: top objectClass: ds-cfg-member-virtual-attribute +objectClass: top ds-cfg-allow-retrieving-membership: false ds-cfg-conflict-behavior: virtual-overrides-real cn: Virtual Static member @@ -2523,8 +2588,8 @@ ds-cfg-filter: (&(objectClass=groupOfNames)(objectClass=ds-virtual-static-group) dn: cn=Virtual Static uniqueMember,cn=Virtual Attributes,cn=config objectClass: ds-cfg-virtual-attribute -objectClass: top objectClass: ds-cfg-member-virtual-attribute +objectClass: top ds-cfg-allow-retrieving-membership: false ds-cfg-conflict-behavior: virtual-overrides-real cn: Virtual Static uniqueMember @@ -2539,7 +2604,6 @@ objectClass: ds-cfg-traditional-work-queue objectClass: top ds-cfg-java-class: org.opends.server.extensions.TraditionalWorkQueue ds-cfg-max-work-queue-capacity: 1000 -ds-cfg-num-worker-threads: 5 cn: Work Queue dn: cn=Workflow Elements,cn=config diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/config.ldif.startok b/infra/test-util/src/main/resources/test-data/opendj.template/config/config.ldif.startok index 8a4bf702e86..00a745c66b4 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/config.ldif.startok +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/config.ldif.startok @@ -25,8 +25,8 @@ ds-cfg-allowed-task: org.opends.server.tasks.RebuildTask ds-cfg-allowed-task: org.opends.server.tasks.RestoreTask ds-cfg-allowed-task: org.opends.server.tasks.ShutdownTask ds-cfg-allowed-task: org.opends.server.tasks.PurgeConflictsHistoricalTask -ds-cfg-bind-with-dn-requires-password: true ds-cfg-size-limit: 1000 +ds-cfg-bind-with-dn-requires-password: true ds-cfg-entry-cache-preload: false ds-cfg-single-structural-objectclass-behavior: reject cn: config @@ -48,17 +48,17 @@ objectClass: ds-cfg-dsee-compat-access-control-handler objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.authorization.dseecompat.AciHandler +cn: Access Control Handler ds-cfg-global-aci: (extop="1.3.6.1.4.1.26027.1.6.1 || 1.3.6.1.4.1.26027.1.6.3 || 1.3.6.1.4.1.4203.1.11.1 || 1.3.6.1.4.1.1466.20037 || 1.3.6.1.4.1.4203.1.11.3") (version 3.0; acl "Anonymous extended operation access"; allow(read) userdn="ldap:///anyone";) -ds-cfg-global-aci: (targetcontrol="2.16.840.1.113730.3.4.2 || 2.16.840.1.113730.3.4.17 || 2.16.840.1.113730.3.4.19 || 1.3.6.1.4.1.4203.1.10.2 || 1.3.6.1.4.1.42.2.27.8.5.1 || 2.16.840.1.113730.3.4.16") (version 3.0; acl "Anonymous control access"; allow(read) userdn="ldap:///anyone";) +ds-cfg-global-aci: (targetcontrol="2.16.840.1.113730.3.4.2 || 2.16.840.1.113730.3.4.17 || 2.16.840.1.113730.3.4.19 || 1.3.6.1.4.1.4203.1.10.2 || 1.3.6.1.4.1.42.2.27.8.5.1 || 2.16.840.1.113730.3.4.16 || 1.2.840.113556.1.4.1413") (version 3.0; acl "Anonymous control access"; allow(read) userdn="ldap:///anyone";) ds-cfg-global-aci: (targetcontrol="1.3.6.1.1.12 || 1.3.6.1.1.13.1 || 1.3.6.1.1.13.2 || 1.2.840.113556.1.4.319 || 1.2.826.0.1.3344810.2.3 || 2.16.840.1.113730.3.4.18 || 2.16.840.1.113730.3.4.9 || 1.2.840.113556.1.4.473 || 1.3.6.1.4.1.42.2.27.9.5.9") (version 3.0; acl "Authenticated users control access"; allow(read) userdn="ldap:///all";) -ds-cfg-global-aci: (targetattr!="userPassword||authPassword||changes||changeNumber||changeType||changeTime||targetDN||newRDN||newSuperior||deleteOldRDN||targetEntryUUID||targetUniqueID||changeInitiatorsName||changeLogCookie")(version 3.0; acl "Anonymous read access"; allow (read,search,compare) userdn="ldap:///anyone";) +ds-cfg-global-aci: (targetattr!="userPassword||authPassword||changes||changeNumber||changeType||changeTime||targetDN||newRDN||newSuperior||deleteOldRDN")(version 3.0; acl "Anonymous read access"; allow (read,search,compare) userdn="ldap:///anyone";) ds-cfg-global-aci: (targetattr="audio||authPassword||description||displayName||givenName||homePhone||homePostalAddress||initials||jpegPhoto||labeledURI||mobile||pager||postalAddress||postalCode||preferredLanguage||telephoneNumber||userPassword")(version 3.0; acl "Self entry modification"; allow (write) userdn="ldap:///self";) ds-cfg-global-aci: (targetattr="userPassword||authPassword")(version 3.0; acl "Self entry read"; allow (read,search,compare) userdn="ldap:///self";) ds-cfg-global-aci: (target="ldap:///cn=schema")(targetscope="base")(targetattr="objectClass||attributeTypes||dITContentRules||dITStructureRules||ldapSyntaxes||matchingRules||matchingRuleUse||nameForms||objectClasses")(version 3.0; acl "User-Visible Schema Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";) -ds-cfg-global-aci: (target="ldap:///")(targetscope="base")(targetattr="objectClass||namingContexts||supportedAuthPasswordSchemes||supportedControl||supportedExtension||supportedFeatures||supportedLDAPVersion||supportedSASLMechanisms||vendorName||vendorVersion")(version 3.0; acl "User-Visible Root DSE Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";) -ds-cfg-global-aci: (targetattr="createTimestamp||creatorsName||modifiersName||modifyTimestamp||entryDN||entryUUID||subschemaSubentry")(version 3.0; acl "User-Visible Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";) +ds-cfg-global-aci: (target="ldap:///")(targetscope="base")(targetattr="objectClass||namingContexts||supportedAuthPasswordSchemes||supportedControl||supportedExtension||supportedFeatures||supportedLDAPVersion||supportedSASLMechanisms||supportedTLSCiphers||supportedTLSProtocols||vendorName||vendorVersion")(version 3.0; acl "User-Visible Root DSE Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";) +ds-cfg-global-aci: (targetattr="createTimestamp||creatorsName||modifiersName||modifyTimestamp||entryDN||entryUUID||subschemaSubentry||etag||governingStructureRule||structuralObjectClass||hasSubordinates||numSubordinates")(version 3.0; acl "User-Visible Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";) ds-cfg-global-aci: (target="ldap:///dc=replicationchanges")(targetattr="*")(version 3.0; acl "Replication backend access"; deny (all) userdn="ldap:///anyone";) -cn: Access Control Handler dn: cn=Account Status Notification Handlers,cn=config objectClass: top @@ -124,7 +124,7 @@ dn: cn=Administration Connector,cn=config objectClass: ds-cfg-administration-connector objectClass: top ds-cfg-listen-address: 0.0.0.0 -ds-cfg-listen-port: 14444 +ds-cfg-listen-port: 10444 cn: Administration Connector ds-cfg-key-manager-provider: cn=Administration,cn=Key Manager Providers,cn=config ds-cfg-ssl-cert-nickname: admin-cert @@ -152,11 +152,11 @@ dn: ds-cfg-backend-id=adminRoot,cn=Backends,cn=config objectClass: ds-cfg-backend objectClass: top objectClass: ds-cfg-ldif-backend -ds-cfg-base-dn: cn=admin data -ds-cfg-ldif-file: config/admin-backend.ldif -ds-cfg-enabled: true ds-cfg-backend-id: adminRoot +ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.backends.LDIFBackend +ds-cfg-base-dn: cn=admin data +ds-cfg-ldif-file: config/admin-backend.ldif ds-cfg-is-private-backend: true ds-cfg-writability-mode: enabled @@ -164,11 +164,11 @@ dn: ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config objectClass: ds-cfg-backend objectClass: top objectClass: ds-cfg-trust-store-backend -ds-cfg-base-dn: cn=ads-truststore -ds-cfg-trust-store-type: JKS -ds-cfg-enabled: true ds-cfg-backend-id: ads-truststore +ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.backends.TrustStoreBackend +ds-cfg-base-dn: cn=ads-truststore +ds-cfg-trust-store-type: JKS ds-cfg-trust-store-file: config/ads-truststore ds-cfg-writability-mode: enabled ds-cfg-trust-store-pin-file: config/ads-truststore.pin @@ -204,6 +204,15 @@ ds-cfg-java-class: org.opends.server.backends.MonitorBackend ds-cfg-base-dn: cn=monitor ds-cfg-writability-mode: disabled +dn: ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config +objectClass: ds-cfg-backend +objectClass: top +ds-cfg-backend-id: replicationChanges +ds-cfg-enabled: true +ds-cfg-java-class: org.opends.server.replication.server.ReplicationBackend +ds-cfg-base-dn: dc=replicationChanges +ds-cfg-writability-mode: enabled + dn: ds-cfg-backend-id=schema,cn=Backends,cn=config objectClass: ds-cfg-backend objectClass: top @@ -219,11 +228,11 @@ dn: ds-cfg-backend-id=tasks,cn=Backends,cn=config objectClass: ds-cfg-backend objectClass: top objectClass: ds-cfg-task-backend -ds-cfg-task-retention-time: 24 hours -ds-cfg-base-dn: cn=tasks -ds-cfg-backend-id: tasks ds-cfg-enabled: true +ds-cfg-backend-id: tasks ds-cfg-java-class: org.opends.server.backends.task.TaskBackend +ds-cfg-base-dn: cn=tasks +ds-cfg-task-retention-time: 24 hours ds-cfg-task-backing-file: config/tasks.ldif ds-cfg-writability-mode: enabled @@ -233,12 +242,12 @@ objectClass: top objectClass: ds-cfg-local-db-backend ds-cfg-preload-time-limit: 0 seconds ds-cfg-compact-encoding: true -ds-cfg-db-checkpointer-bytes-interval: 20 megabytes +ds-cfg-db-checkpointer-bytes-interval: 500 megabytes ds-cfg-db-logging-level: CONFIG ds-cfg-db-checkpointer-wakeup-interval: 30 seconds -ds-cfg-disk-full-threshold: 20 megabytes +ds-cfg-disk-full-threshold: 100 megabytes ds-cfg-db-evictor-keep-alive: 600 seconds -ds-cfg-disk-low-threshold: 100 megabytes +ds-cfg-disk-low-threshold: 200 megabytes ds-cfg-db-directory: db ds-cfg-base-dn: dc=example,dc=com ds-cfg-backend-id: userRoot @@ -246,16 +255,17 @@ ds-cfg-enabled: true ds-cfg-index-entry-limit: 4000 ds-cfg-java-class: org.opends.server.backends.jeb.BackendImpl ds-cfg-writability-mode: enabled -ds-cfg-db-cache-percent: 10 -ds-cfg-db-evictor-lru-only: true -ds-cfg-db-cache-size: 0 megabytes +ds-cfg-db-cache-percent: 50 +ds-cfg-db-evictor-lru-only: false ds-cfg-entries-compressed: false +ds-cfg-db-cache-size: 0 megabytes ds-cfg-db-directory-permissions: 700 ds-cfg-db-cleaner-min-utilization: 50 ds-cfg-db-logging-file-handler-on: true -ds-cfg-db-log-file-max: 10 megabytes +ds-cfg-db-log-file-max: 100 megabytes ds-cfg-db-evictor-nodes-per-scan: 10 ds-cfg-db-evictor-max-threads: 10 +ds-cfg-db-log-filecache-size: 100 ds-cfg-db-evictor-core-threads: 1 ds-cfg-db-run-cleaner: true ds-cfg-db-txn-no-sync: false @@ -269,85 +279,85 @@ cn: Index dn: ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: presence ds-cfg-attribute: aci +ds-cfg-index-type: presence dn: ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index +ds-cfg-attribute: cn ds-cfg-index-type: equality ds-cfg-index-type: substring -ds-cfg-attribute: cn dn: ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: equality ds-cfg-attribute: ds-sync-conflict +ds-cfg-index-type: equality dn: ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: ordering ds-cfg-attribute: ds-sync-hist +ds-cfg-index-type: ordering dn: ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: equality ds-cfg-attribute: entryUUID +ds-cfg-index-type: equality dn: ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index +ds-cfg-attribute: givenName ds-cfg-index-type: equality ds-cfg-index-type: substring -ds-cfg-attribute: givenName dn: ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index +ds-cfg-attribute: mail ds-cfg-index-type: equality ds-cfg-index-type: substring -ds-cfg-attribute: mail dn: ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: equality ds-cfg-attribute: member +ds-cfg-index-type: equality dn: ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: equality ds-cfg-attribute: objectClass +ds-cfg-index-type: equality dn: ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index +ds-cfg-attribute: sn ds-cfg-index-type: equality ds-cfg-index-type: substring -ds-cfg-attribute: sn dn: ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index +ds-cfg-attribute: telephoneNumber ds-cfg-index-type: equality ds-cfg-index-type: substring -ds-cfg-attribute: telephoneNumber dn: ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: equality ds-cfg-attribute: uid +ds-cfg-index-type: equality dn: ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top objectClass: ds-cfg-local-db-index -ds-cfg-index-type: equality ds-cfg-attribute: uniqueMember +ds-cfg-index-type: equality dn: cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config objectClass: top @@ -376,7 +386,7 @@ objectClass: ds-cfg-certificate-mapper ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.SubjectAttributeToUserAttributeCertificateMapper ds-cfg-subject-attribute-mapping: cn:cn -ds-cfg-subject-attribute-mapping: e:mail +ds-cfg-subject-attribute-mapping: emailAddress:mail cn: Subject Attribute to User Attribute dn: cn=Subject DN to User Attribute,cn=Certificate Mappers,cn=config @@ -384,8 +394,8 @@ objectClass: ds-cfg-subject-dn-to-user-attribute-certificate-mapper objectClass: top objectClass: ds-cfg-certificate-mapper ds-cfg-enabled: true -ds-cfg-java-class: org.opends.server.extensions.SubjectDNToUserAttributeCertificateMapper ds-cfg-subject-attribute: ds-certificate-subject-dn +ds-cfg-java-class: org.opends.server.extensions.SubjectDNToUserAttributeCertificateMapper cn: Subject DN to User Attribute dn: cn=Subject Equals DN,cn=Certificate Mappers,cn=config @@ -401,6 +411,29 @@ objectClass: top objectClass: ds-cfg-branch cn: Connection Handlers +dn: cn=HTTP Connection Handler,cn=Connection Handlers,cn=config +objectClass: ds-cfg-http-connection-handler +objectClass: top +objectClass: ds-cfg-connection-handler +ds-cfg-ssl-client-auth-policy: optional +ds-cfg-ssl-cert-nickname: server-cert +ds-cfg-max-blocked-write-time-limit: 2 minutes +ds-cfg-allow-tcp-reuse-address: true +cn: HTTP Connection Handler +ds-cfg-use-tcp-no-delay: true +ds-cfg-enabled: false +ds-cfg-java-class: org.opends.server.protocols.http.HTTPConnectionHandler +ds-cfg-keep-stats: true +ds-cfg-authentication-required: true +ds-cfg-buffer-size: 4096 bytes +ds-cfg-max-request-size: 5 megabytes +ds-cfg-accept-backlog: 128 +ds-cfg-config-file: config/http-config.json +ds-cfg-listen-address: 0.0.0.0 +ds-cfg-listen-port: 8080 +ds-cfg-use-ssl: false +ds-cfg-use-tcp-keep-alive: true + dn: cn=JMX Connection Handler,cn=Connection Handlers,cn=config objectClass: ds-cfg-jmx-connection-handler objectClass: top @@ -415,12 +448,10 @@ dn: cn=LDAP Connection Handler,cn=Connection Handlers,cn=config objectClass: ds-cfg-ldap-connection-handler objectClass: top objectClass: ds-cfg-connection-handler -ds-cfg-key-manager-provider: cn=JKS,cn=Key Manager Providers,cn=config ds-cfg-ssl-client-auth-policy: optional -ds-cfg-trust-manager-provider: cn=JKS,cn=Trust Manager Providers,cn=config ds-cfg-max-blocked-write-time-limit: 2 minutes ds-cfg-allow-tcp-reuse-address: true -ds-cfg-allow-start-tls: true +ds-cfg-allow-start-tls: false ds-cfg-send-rejection-notice: true ds-cfg-allow-ldap-v2: true cn: LDAP Connection Handler @@ -428,11 +459,10 @@ ds-cfg-use-tcp-no-delay: true ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.protocols.ldap.LDAPConnectionHandler ds-cfg-keep-stats: true -ds-cfg-max-request-size: 5 megabytes ds-cfg-accept-backlog: 128 +ds-cfg-max-request-size: 5 megabytes ds-cfg-buffer-size: 4096 bytes ds-cfg-listen-address: 0.0.0.0 -ds-cfg-num-request-handlers: 2 ds-cfg-listen-port: 10389 ds-cfg-use-ssl: false ds-cfg-use-tcp-keep-alive: true @@ -451,15 +481,14 @@ ds-cfg-send-rejection-notice: true ds-cfg-allow-ldap-v2: true cn: LDAPS Connection Handler ds-cfg-use-tcp-no-delay: true -ds-cfg-enabled: true +ds-cfg-enabled: false ds-cfg-java-class: org.opends.server.protocols.ldap.LDAPConnectionHandler ds-cfg-keep-stats: true -ds-cfg-max-request-size: 5 megabytes ds-cfg-accept-backlog: 128 +ds-cfg-max-request-size: 5 megabytes ds-cfg-buffer-size: 4096 bytes ds-cfg-listen-address: 0.0.0.0 -ds-cfg-num-request-handlers: 2 -ds-cfg-listen-port: 10636 +ds-cfg-listen-port: 636 ds-cfg-use-ssl: true ds-cfg-use-tcp-keep-alive: true @@ -473,17 +502,6 @@ ds-cfg-ldif-directory: config/auto-process-ldif ds-cfg-poll-interval: 5 seconds cn: LDIF Connection Handler -dn: cn=SNMP Connection Handler,cn=Connection Handlers,cn=config -objectClass: ds-cfg-snmp-connection-handler -objectClass: top -objectClass: ds-cfg-connection-handler -ds-cfg-enabled: false -ds-cfg-java-class: org.opends.server.snmp.SNMPConnectionHandler -ds-cfg-trap-port: 162 -ds-cfg-listen-address: 0.0.0.0 -ds-cfg-listen-port: 161 -cn: SNMP Connection Handler - dn: cn=Crypto Manager,cn=config objectClass: top objectClass: ds-cfg-crypto-manager @@ -558,8 +576,8 @@ objectClass: ds-cfg-extended-operation-handler objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.PasswordModifyExtendedOperation -cn: Password Modify ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config +cn: Password Modify dn: cn=Password Policy State,cn=Extended Operations,cn=config objectClass: ds-cfg-password-policy-state-extended-operation-handler @@ -628,8 +646,8 @@ dn: cn=Exact Match,cn=Identity Mappers,cn=config objectClass: ds-cfg-exact-match-identity-mapper objectClass: ds-cfg-identity-mapper objectClass: top -ds-cfg-match-attribute: uid ds-cfg-enabled: true +ds-cfg-match-attribute: uid ds-cfg-java-class: org.opends.server.extensions.ExactMatchIdentityMapper cn: Exact Match @@ -664,7 +682,7 @@ dn: cn=JKS,cn=Key Manager Providers,cn=config objectClass: ds-cfg-key-manager-provider objectClass: ds-cfg-file-based-key-manager-provider objectClass: top -ds-cfg-enabled: true +ds-cfg-enabled: false ds-cfg-java-class: org.opends.server.extensions.FileBasedKeyManagerProvider ds-cfg-key-store-file: config/keystore ds-cfg-key-store-type: JKS @@ -782,8 +800,8 @@ ds-cfg-log-file-permissions: 640 dn: cn=File-Based Audit Logger,cn=Loggers,cn=config objectClass: ds-cfg-log-publisher objectClass: ds-cfg-access-log-publisher -objectClass: ds-cfg-file-based-access-log-publisher objectClass: top +objectClass: ds-cfg-file-based-audit-log-publisher ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config ds-cfg-rotation-policy: cn=24 Hours Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config @@ -806,8 +824,8 @@ cn: File-Based Debug Logger ds-cfg-enabled: false ds-cfg-java-class: org.opends.server.loggers.debug.TextDebugLogPublisher ds-cfg-default-debug-level: error -ds-cfg-log-file-permissions: 640 ds-cfg-log-file: logs/debug +ds-cfg-log-file-permissions: 640 dn: cn=File-Based Error Logger,cn=Loggers,cn=config objectClass: ds-cfg-log-publisher @@ -828,6 +846,21 @@ ds-cfg-default-severity: notice ds-cfg-log-file: logs/errors ds-cfg-log-file-permissions: 640 +dn: cn=File-Based HTTP Access Logger,cn=Loggers,cn=config +objectClass: ds-cfg-log-publisher +objectClass: ds-cfg-http-access-log-publisher +objectClass: ds-cfg-file-based-http-access-log-publisher +objectClass: top +ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config +ds-cfg-rotation-policy: cn=24 Hours Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config +ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config +ds-cfg-asynchronous: true +cn: File-Based HTTP Access Logger +ds-cfg-enabled: false +ds-cfg-java-class: org.opends.server.loggers.TextHTTPAccessLogPublisher +ds-cfg-log-file: logs/http-access +ds-cfg-log-file-permissions: 640 + dn: cn=Replication Repair Logger,cn=Loggers,cn=config objectClass: ds-cfg-log-publisher objectClass: ds-cfg-error-log-publisher @@ -1014,8 +1047,8 @@ ds-cfg-collation: bg:1.3.6.1.4.1.42.2.27.9.4.23.1 ds-cfg-collation: ca:1.3.6.1.4.1.42.2.27.9.4.25.1 ds-cfg-collation: cs:1.3.6.1.4.1.42.2.27.9.4.26.1 ds-cfg-collation: da:1.3.6.1.4.1.42.2.27.9.4.27.1 -ds-cfg-collation: de:1.3.6.1.4.1.142.2.27.9.4.28.1 -ds-cfg-collation: de-DE:1.3.6.1.4.1.142.2.27.9.4.28.1 +ds-cfg-collation: de:1.3.6.1.4.1.42.2.27.9.4.28.1 +ds-cfg-collation: de-DE:1.3.6.1.4.1.42.2.27.9.4.28.1 ds-cfg-collation: de-AT:1.3.6.1.4.1.42.2.27.9.4.29.1 ds-cfg-collation: de-CH:1.3.6.1.4.1.42.2.27.9.4.31.1 ds-cfg-collation: de-LU:1.3.6.1.4.1.42.2.27.9.4.32.1 @@ -1410,6 +1443,7 @@ cn: Password Policies dn: cn=Default Password Policy,cn=Password Policies,cn=config objectClass: ds-cfg-password-policy objectClass: top +objectClass: ds-cfg-authentication-policy ds-cfg-skip-validation-for-administrators: false ds-cfg-force-change-on-add: false ds-cfg-state-update-failure-policy: reactive @@ -1420,6 +1454,7 @@ ds-cfg-lockout-failure-expiration-interval: 0 seconds ds-cfg-lockout-failure-count: 0 ds-cfg-max-password-reset-age: 0 seconds ds-cfg-max-password-age: 0 seconds +ds-cfg-java-class: org.opends.server.core.PasswordPolicyFactory ds-cfg-idle-lockout-interval: 0 seconds ds-cfg-lockout-duration: 0 seconds ds-cfg-grace-login-count: 0 @@ -1433,14 +1468,15 @@ ds-cfg-require-secure-authentication: false ds-cfg-expire-passwords-without-warning: false ds-cfg-password-change-requires-current-password: false ds-cfg-password-generator: cn=Random Password Generator,cn=Password Generators,cn=config -ds-cfg-allow-expired-password-changes: false ds-cfg-password-expiration-warning-interval: 5 days +ds-cfg-allow-expired-password-changes: false ds-cfg-password-attribute: userPassword ds-cfg-min-password-age: 0 seconds dn: cn=Root Password Policy,cn=Password Policies,cn=config objectClass: ds-cfg-password-policy objectClass: top +objectClass: ds-cfg-authentication-policy ds-cfg-skip-validation-for-administrators: false ds-cfg-force-change-on-add: false ds-cfg-state-update-failure-policy: ignore @@ -1451,6 +1487,7 @@ ds-cfg-lockout-failure-expiration-interval: 0 seconds ds-cfg-lockout-failure-count: 0 ds-cfg-max-password-reset-age: 0 seconds ds-cfg-max-password-age: 0 seconds +ds-cfg-java-class: org.opends.server.core.PasswordPolicyFactory ds-cfg-idle-lockout-interval: 0 seconds ds-cfg-lockout-duration: 0 seconds ds-cfg-grace-login-count: 0 @@ -1463,8 +1500,8 @@ cn: Root Password Policy ds-cfg-require-secure-authentication: false ds-cfg-expire-passwords-without-warning: false ds-cfg-password-change-requires-current-password: true -ds-cfg-allow-expired-password-changes: false ds-cfg-password-expiration-warning-interval: 5 days +ds-cfg-allow-expired-password-changes: false ds-cfg-password-attribute: userPassword ds-cfg-min-password-age: 0 seconds @@ -1530,6 +1567,14 @@ ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.MD5PasswordStorageScheme cn: MD5 +dn: cn=PBKDF2,cn=Password Storage Schemes,cn=config +objectClass: ds-cfg-password-storage-scheme +objectClass: ds-cfg-pbkdf2-password-storage-scheme +objectClass: top +ds-cfg-enabled: true +ds-cfg-java-class: org.opends.server.extensions.PBKDF2PasswordStorageScheme +cn: PBKDF2 + dn: cn=RC4,cn=Password Storage Schemes,cn=config objectClass: ds-cfg-password-storage-scheme objectClass: ds-cfg-rc4-password-storage-scheme @@ -1595,9 +1640,10 @@ dn: cn=Attribute Value,cn=Password Validators,cn=config objectClass: ds-cfg-attribute-value-password-validator objectClass: ds-cfg-password-validator objectClass: top -ds-cfg-test-reversed-password: true ds-cfg-enabled: true +ds-cfg-test-reversed-password: true ds-cfg-java-class: org.opends.server.extensions.AttributeValuePasswordValidator +ds-cfg-check-substrings: true cn: Attribute Value dn: cn=Character Set,cn=Password Validators,cn=config @@ -1621,6 +1667,7 @@ ds-cfg-enabled: false ds-cfg-test-reversed-password: true ds-cfg-java-class: org.opends.server.extensions.DictionaryPasswordValidator ds-cfg-dictionary-file: config/wordlist.txt +ds-cfg-check-substrings: true cn: Dictionary ds-cfg-case-sensitive-validation: false @@ -1650,8 +1697,8 @@ objectClass: ds-cfg-similarity-based-password-validator objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.SimilarityBasedPasswordValidator -ds-cfg-min-password-difference: 3 cn: Similarity-Based Password Validator +ds-cfg-min-password-difference: 3 dn: cn=Unique Characters,cn=Password Validators,cn=config objectClass: ds-cfg-password-validator @@ -1690,11 +1737,11 @@ objectClass: ds-cfg-plugin objectClass: top objectClass: ds-cfg-change-number-control-plugin ds-cfg-enabled: true +ds-cfg-java-class: org.opends.server.plugins.ChangeNumberControlPlugin ds-cfg-plugin-type: postOperationAdd ds-cfg-plugin-type: postOperationDelete ds-cfg-plugin-type: postOperationModify ds-cfg-plugin-type: postOperationModifyDn -ds-cfg-java-class: org.opends.server.plugins.ChangeNumberControlPlugin cn: Change Number Control dn: cn=Entry UUID,cn=Plugins,cn=config @@ -1771,8 +1818,8 @@ ds-cfg-invoke-for-internal-operations: false ds-cfg-default-auth-password-storage-scheme: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config cn: Password Policy Import ds-cfg-enabled: true -ds-cfg-default-user-password-storage-scheme: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config ds-cfg-java-class: org.opends.server.plugins.PasswordPolicyImportPlugin +ds-cfg-default-user-password-storage-scheme: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config dn: cn=Profiler,cn=Plugins,cn=config objectClass: ds-cfg-profiler-plugin @@ -1851,7 +1898,7 @@ objectClass: inetOrgPerson objectClass: organizationalPerson objectClass: ds-cfg-root-dn-user objectClass: top -userpassword: {SSHA512}oDa/5AoXCKPCTSLXPOw87/juoKlWtZ6OHHQgunFd1ddFKgzb4bkWnMFyYP+IGAXv8KjUEhg7omARjctyVCSpASvA9xcSHjvk +userpassword: {SSHA512}EtpxpgKa21dBsqxibE/8FgvYmZPZhL1VseogFgCjGc4+XX9B8Jpgf7VN7ea6qmIyLahK+zy4w15yBTOTYKI8/u3nbRZU6r46 givenName: Directory cn: Directory Manager ds-cfg-alternate-bind-dn: cn=Directory Manager @@ -1865,8 +1912,8 @@ ds-rlim-size-limit: 0 dn: cn=Root DSE,cn=config objectClass: ds-cfg-root-dse-backend objectClass: top -cn: Root DSE ds-cfg-show-all-attributes: false +cn: Root DSE dn: cn=SASL Mechanisms,cn=config objectClass: top @@ -1887,8 +1934,8 @@ objectClass: ds-cfg-cram-md5-sasl-mechanism-handler objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.CRAMMD5SASLMechanismHandler -cn: CRAM-MD5 ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config +cn: CRAM-MD5 dn: cn=DIGEST-MD5,cn=SASL Mechanisms,cn=config objectClass: ds-cfg-digest-md5-sasl-mechanism-handler @@ -1896,8 +1943,9 @@ objectClass: ds-cfg-sasl-mechanism-handler objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.DigestMD5SASLMechanismHandler -cn: DIGEST-MD5 +ds-cfg-server-fqdn: localhost ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config +cn: DIGEST-MD5 dn: cn=EXTERNAL,cn=SASL Mechanisms,cn=config objectClass: ds-cfg-external-sasl-mechanism-handler @@ -1926,8 +1974,8 @@ objectClass: ds-cfg-plain-sasl-mechanism-handler objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.PlainSASLMechanismHandler -cn: PLAIN ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config +cn: PLAIN dn: cn=Synchronization Providers,cn=config objectClass: top @@ -1947,6 +1995,70 @@ objectClass: top objectClass: ds-cfg-branch cn: domains +dn: cn=cn=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config +objectClass: ds-cfg-replication-domain +objectClass: top +ds-cfg-base-dn: cn=admin data +ds-cfg-server-id: 23955 +cn: cn=admin data +ds-cfg-replication-server: localhost:10989 +creatorsName: cn=Directory Manager,cn=Root DNs,cn=config +createTimestamp: 20150306180847Z +entryUUID: 9f8ad88a-2ed8-4770-9f19-2ab846239a2a + +dn: cn=external changelog,cn=cn=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config +objectClass: top +objectClass: ds-cfg-external-changelog-domain +ds-cfg-enabled: false +cn: external changelog + +dn: cn=cn=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config +objectClass: ds-cfg-replication-domain +objectClass: top +ds-cfg-base-dn: cn=schema +ds-cfg-server-id: 17438 +cn: cn=schema +ds-cfg-replication-server: localhost:10989 +creatorsName: cn=Directory Manager,cn=Root DNs,cn=config +createTimestamp: 20150306180847Z +entryUUID: 10e203cb-9e1f-4134-b948-9f76eff963ca + +dn: cn=external changelog,cn=cn=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config +objectClass: top +objectClass: ds-cfg-external-changelog-domain +ds-cfg-enabled: false +cn: external changelog + +dn: cn=dc=example\,dc=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config +objectClass: ds-cfg-replication-domain +objectClass: top +ds-cfg-base-dn: dc=example,dc=com +ds-cfg-server-id: 161 +cn: dc=example,dc=com +ds-cfg-replication-server: localhost:10989 +createTimestamp: 20150306180847Z +creatorsName: cn=Directory Manager,cn=Root DNs,cn=config +ds-sync-generation-id: 48 +entryUUID: 1abc608f-c81b-40c1-9af8-d07805a9197c + +dn: cn=external changelog,cn=dc=example\,dc=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config +objectClass: top +objectClass: ds-cfg-external-changelog-domain +ds-cfg-enabled: true +cn: external changelog + +dn: cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config +objectClass: top +objectClass: ds-cfg-replication-server +ds-cfg-replication-server-id: 9664 +ds-cfg-replication-port: 10989 +cn: replication server +ds-cfg-replication-db-directory: changelogDb +ds-cfg-replication-server: localhost:10989 +creatorsName: cn=Directory Manager,cn=Root DNs,cn=config +createTimestamp: 20150306180847Z +entryUUID: 7d549c3b-8294-467b-84e8-816d6cedf044 + dn: cn=Syntaxes,cn=config objectClass: top objectClass: ds-cfg-branch @@ -1992,7 +2104,9 @@ cn: Boolean dn: cn=Certificate,cn=Syntaxes,cn=config objectClass: ds-cfg-attribute-syntax objectClass: top +objectClass: ds-cfg-certificate-attribute-syntax ds-cfg-enabled: true +ds-cfg-strict-format: true ds-cfg-java-class: org.opends.server.schema.CertificateSyntax cn: Certificate @@ -2011,9 +2125,11 @@ ds-cfg-java-class: org.opends.server.schema.CertificatePairSyntax cn: Certificate Pair dn: cn=Country String,cn=Syntaxes,cn=config +objectClass: ds-cfg-country-string-attribute-syntax objectClass: ds-cfg-attribute-syntax objectClass: top ds-cfg-enabled: true +ds-cfg-strict-format: true ds-cfg-java-class: org.opends.server.schema.CountryStringSyntax cn: Country String @@ -2029,8 +2145,8 @@ objectClass: ds-cfg-directory-string-attribute-syntax objectClass: ds-cfg-attribute-syntax objectClass: top ds-cfg-enabled: true -ds-cfg-allow-zero-length-values: false ds-cfg-java-class: org.opends.server.schema.DirectoryStringSyntax +ds-cfg-allow-zero-length-values: false cn: Directory String dn: cn=Distinguished Name,cn=Syntaxes,cn=config @@ -2106,7 +2222,9 @@ cn: Integer dn: cn=JPEG,cn=Syntaxes,cn=config objectClass: ds-cfg-attribute-syntax objectClass: top +objectClass: ds-cfg-jpeg-attribute-syntax ds-cfg-enabled: true +ds-cfg-strict-format: false ds-cfg-java-class: org.opends.server.schema.JPEGSyntax cn: JPEG @@ -2240,8 +2358,8 @@ dn: cn=Telephone Number,cn=Syntaxes,cn=config objectClass: ds-cfg-telephone-number-attribute-syntax objectClass: ds-cfg-attribute-syntax objectClass: top -ds-cfg-strict-format: false ds-cfg-enabled: true +ds-cfg-strict-format: false ds-cfg-java-class: org.opends.server.schema.TelephoneNumberSyntax cn: Telephone Number @@ -2307,7 +2425,7 @@ dn: cn=JKS,cn=Trust Manager Providers,cn=config objectClass: ds-cfg-file-based-trust-manager-provider objectClass: ds-cfg-trust-manager-provider objectClass: top -ds-cfg-enabled: true +ds-cfg-enabled: false ds-cfg-java-class: org.opends.server.extensions.FileBasedTrustManagerProvider ds-cfg-trust-store-type: JKS ds-cfg-trust-store-file: config/truststore @@ -2358,6 +2476,18 @@ ds-cfg-conflict-behavior: real-overrides-virtual cn: entryUUID ds-cfg-attribute-type: entryUUID +dn: cn=etag,cn=Virtual Attributes,cn=config +objectClass: ds-cfg-virtual-attribute +objectClass: ds-cfg-entity-tag-virtual-attribute +objectClass: top +ds-cfg-conflict-behavior: real-overrides-virtual +cn: etag +ds-cfg-attribute-type: etag +ds-cfg-enabled: true +ds-cfg-java-class: org.opends.server.extensions.EntityTagVirtualAttributeProvider +ds-cfg-excluded-attribute: ds-sync-hist +ds-cfg-checksum-algorithm: adler-32 + dn: cn=governingStructureRule,cn=Virtual Attributes,cn=config objectClass: ds-cfg-virtual-attribute objectClass: ds-cfg-governing-structure-rule-virtual-attribute @@ -2384,7 +2514,7 @@ objectClass: ds-cfg-is-member-of-virtual-attribute objectClass: top ds-cfg-enabled: true ds-cfg-java-class: org.opends.server.extensions.IsMemberOfVirtualAttributeProvider -ds-cfg-filter: (objectClass=person) +ds-cfg-filter: (|(objectClass=person)(objectClass=groupOfNames)(objectClass=groupOfUniqueNames)(objectClass=groupOfEntries)) ds-cfg-conflict-behavior: virtual-overrides-real cn: isMemberOf ds-cfg-attribute-type: isMemberOf @@ -2399,6 +2529,16 @@ ds-cfg-conflict-behavior: virtual-overrides-real cn: numSubordinates ds-cfg-attribute-type: numSubordinates +dn: cn=Password Expiration Time,cn=Virtual Attributes,cn=config +objectClass: ds-cfg-virtual-attribute +objectClass: ds-cfg-password-expiration-time-virtual-attribute +objectClass: top +ds-cfg-enabled: true +ds-cfg-java-class: org.opends.server.extensions.PasswordExpirationTimeVirtualAttributeProvider +ds-cfg-conflict-behavior: virtual-overrides-real +cn: Password Expiration Time +ds-cfg-attribute-type: ds-pwp-password-expiration-time + dn: cn=Password Policy Subentry,cn=Virtual Attributes,cn=config objectClass: ds-cfg-virtual-attribute objectClass: top @@ -2438,8 +2578,8 @@ ds-cfg-conflict-behavior: virtual-overrides-real cn: Virtual Static member ds-cfg-attribute-type: member ds-cfg-enabled: true -ds-cfg-filter: (&(objectClass=groupOfNames)(objectClass=ds-virtual-static-group)) ds-cfg-java-class: org.opends.server.extensions.MemberVirtualAttributeProvider +ds-cfg-filter: (&(objectClass=groupOfNames)(objectClass=ds-virtual-static-group)) dn: cn=Virtual Static uniqueMember,cn=Virtual Attributes,cn=config objectClass: ds-cfg-virtual-attribute @@ -2450,8 +2590,8 @@ ds-cfg-conflict-behavior: virtual-overrides-real cn: Virtual Static uniqueMember ds-cfg-attribute-type: uniqueMember ds-cfg-enabled: true -ds-cfg-filter: (&(objectClass=groupOfUniqueNames)(objectClass=ds-virtual-static-group)) ds-cfg-java-class: org.opends.server.extensions.MemberVirtualAttributeProvider +ds-cfg-filter: (&(objectClass=groupOfUniqueNames)(objectClass=ds-virtual-static-group)) dn: cn=Work Queue,cn=config objectClass: ds-cfg-work-queue diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/http-config.json b/infra/test-util/src/main/resources/test-data/opendj.template/config/http-config.json new file mode 100644 index 00000000000..08790188d9e --- /dev/null +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/http-config.json @@ -0,0 +1,135 @@ +{ + // The Rest2LDAP authentication filter configuration. The filter will be + // disabled if the configuration is not present. Upon successful + // authentication the filter will create a security context containing the + // following principals: + // + // "dn" - the DN of the user if known (may not be the case for sasl-plain) + // "id" - the username used for authentication. + "authenticationFilter" : { + // Indicates whether the filter should allow HTTP BASIC authentication. + "supportHTTPBasicAuthentication" : true, + + // Indicates whether the filter should allow alternative authentication + // and, if so, which HTTP headers it should obtain the username and + // password from. + "supportAltAuthentication" : true, + "altAuthenticationUsernameHeader" : "X-OpenIDM-Username", + "altAuthenticationPasswordHeader" : "X-OpenIDM-Password", + + // The search parameters to use for "search-simple" authentication. The + // %s filter format parameters will be substituted with the + // client-provided username, using LDAP filter string character escaping. + "searchBaseDN" : "ou=people,dc=example,dc=com", + "searchScope" : "sub", // Or "one". + "searchFilterTemplate" : "(&(objectClass=inetOrgPerson)(uid=%s))" + + // TODO: support for HTTP sessions? + }, + + // The Rest2LDAP Servlet configuration. + "servlet" : { + // The REST APIs and their LDAP attribute mappings. + "mappings" : { + "/users" : { + "baseDN" : "ou=people,dc=example,dc=com", + "readOnUpdatePolicy" : "controls", + "useSubtreeDelete" : false, + "usePermissiveModify" : true, + "etagAttribute" : "etag", + "namingStrategy" : { + "strategy" : "clientDNNaming", + "dnAttribute" : "uid" + }, + "additionalLDAPAttributes" : [ + { + "type" : "objectClass", + "values" : [ + "top", + "person", + "organizationalPerson", + "inetOrgPerson" + ] + } + ], + "attributes" : { + "schemas" : { "constant" : [ "urn:scim:schemas:core:1.0" ] }, + "_id" : { "simple" : { "ldapAttribute" : "uid", "isSingleValued" : true, "isRequired" : true, "writability" : "createOnly" } }, + "_rev" : { "simple" : { "ldapAttribute" : "etag", "isSingleValued" : true, "writability" : "readOnly" } }, + "userName" : { "simple" : { "ldapAttribute" : "mail", "isSingleValued" : true, "writability" : "readOnly" } }, + "displayName" : { "simple" : { "ldapAttribute" : "cn", "isSingleValued" : true, "isRequired" : true } }, + "name" : { "object" : { + "givenName" : { "simple" : { "ldapAttribute" : "givenName", "isSingleValued" : true } }, + "familyName" : { "simple" : { "ldapAttribute" : "sn", "isSingleValued" : true, "isRequired" : true } } + } }, + "manager" : { "reference" : { + "ldapAttribute" : "manager", + "baseDN" : "ou=people,dc=example,dc=com", + "primaryKey" : "uid", + "mapper" : { "object" : { + "_id" : { "simple" : { "ldapAttribute" : "uid", "isSingleValued" : true, "isRequired" : true } }, + "displayName" : { "simple" : { "ldapAttribute" : "cn", "isSingleValued" : true, "writability" : "readOnlyDiscardWrites" } } + } } + } }, + "groups" : { "reference" : { + "ldapAttribute" : "isMemberOf", + "baseDN" : "ou=groups,dc=example,dc=com", + "writability" : "readOnly", + "primaryKey" : "cn", + "mapper" : { "object" : { + "_id" : { "simple" : { "ldapAttribute" : "cn", "isSingleValued" : true } } + } } + } }, + "contactInformation" : { "object" : { + "telephoneNumber" : { "simple" : { "ldapAttribute" : "telephoneNumber", "isSingleValued" : true } }, + "emailAddress" : { "simple" : { "ldapAttribute" : "mail", "isSingleValued" : true } } + } }, + "meta" : { "object" : { + "created" : { "simple" : { "ldapAttribute" : "createTimestamp", "isSingleValued" : true, "writability" : "readOnly" } }, + "lastModified" : { "simple" : { "ldapAttribute" : "modifyTimestamp", "isSingleValued" : true, "writability" : "readOnly" } } + } } + } + }, + "/groups" : { + "baseDN" : "ou=groups,dc=example,dc=com", + "readOnUpdatePolicy" : "controls", + "useSubtreeDelete" : false, + "usePermissiveModify" : true, + "etagAttribute" : "etag", + "namingStrategy" : { + "strategy" : "clientDNNaming", + "dnAttribute" : "cn" + }, + "additionalLDAPAttributes" : [ + { + "type" : "objectClass", + "values" : [ + "top", + "groupOfUniqueNames" + ] + } + ], + "attributes" : { + "schemas" : { "constant" : [ "urn:scim:schemas:core:1.0" ] }, + "_id" : { "simple" : { "ldapAttribute" : "cn", "isSingleValued" : true, "isRequired" : true, "writability" : "createOnly" } }, + "_rev" : { "simple" : { "ldapAttribute" : "etag", "isSingleValued" : true, "writability" : "readOnly" } }, + "displayName" : { "simple" : { "ldapAttribute" : "cn", "isSingleValued" : true, "isRequired" : true, "writability" : "readOnly" } }, + "members" : { "reference" : { + "ldapAttribute" : "uniqueMember", + "baseDN" : "dc=example,dc=com", + "primaryKey" : "uid", + "mapper" : { "object" : { + "_id" : { "simple" : { "ldapAttribute" : "uid", "isSingleValued" : true, "isRequired" : true } }, + "displayName" : { "simple" : { "ldapAttribute" : "cn", "isSingleValued" : true, "writability" : "readOnlyDiscardWrites" } } + } } + } }, + "meta" : { "object" : { + "created" : { "simple" : { "ldapAttribute" : "createTimestamp", "isSingleValued" : true, "writability" : "readOnly" } }, + "lastModified" : { "simple" : { "ldapAttribute" : "modifyTimestamp", "isSingleValued" : true, "writability" : "readOnly" } } + } } + } + } + } + } +} + diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/java.properties b/infra/test-util/src/main/resources/test-data/opendj.template/config/java.properties index f0fb7c03e85..3413c3689e3 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/java.properties +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/java.properties @@ -1,17 +1,28 @@ +# CDDL HEADER START # -# Copyright (c) 2010-2013 Evolveum +# The contents of this file are subject to the terms of the +# Common Development and Distribution License, Version 1.0 only +# (the "License"). You may not use this file except in compliance +# with the License. # -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at +# You can obtain a copy of the license at +# trunk/opends/resource/legal-notices/OpenDS.LICENSE +# or https://OpenDS.dev.java.net/OpenDS.LICENSE. +# See the License for the specific language governing permissions +# and limitations under the License. # -# http://www.apache.org/licenses/LICENSE-2.0 +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at +# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, +# add the following below this CDDL HEADER, with the fields enclosed +# by brackets "[]" replaced with your own identifying information: +# Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# +# Copyright 2008-2010 Sun Microsystems, Inc. +# Portions Copyright 2011 ForgeRock AS # -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. # # @@ -46,14 +57,14 @@ # specified settings. # # Examples: -# Specify to overwrite the content of the environment variable OPENDS_JAVA_HOME +# Specify to overwrite the content of the environment variable OPENDJ_JAVA_HOME # (i.e. the contents of this properties file for the java home will be analyzed -# before checking whether OPENDS_JAVA_HOME is specified in the environment): +# before checking whether OPENDJ_JAVA_HOME is specified in the environment): # overwrite-env-java-home=true # -# Specify to overwrite the content of the environment variable OPENDS_JAVA_ARGS +# Specify to overwrite the content of the environment variable OPENDJ_JAVA_ARGS # (i.e. the contents of this properties file for the java args will be analyzed -# before checking whether OPENDS_JAVA_ARGS is specified in the environment): +# before checking whether OPENDJ_JAVA_ARGS is specified in the environment): # overwrite-env-java-args=true # # Specify to use a particular Java Virtual Machine for the offline import: @@ -73,7 +84,7 @@ # an associated property defined: # default.java-args=-client -default.java-home=/usr/lib/jvm/java-6-sun-1.6.0.26/jre +default.java-home=/usr/lib/jvm/java-7-openjdk-amd64/jre overwrite-env-java-home=false overwrite-env-java-args=false @@ -88,8 +99,8 @@ ldapcompare.java-args=-Xms8m -client restore.offline.java-args=-server manage-account.java-args=-Xms8m -client import-ldif.offline.java-args=-server -ldappasswordmodify.java-args=-Xms8m -client verify-index.java-args=-server +ldappasswordmodify.java-args=-Xms8m -client uninstall.java-args=-Xms8m -client dbtest.java-args=-server start-ds.java-args=-server diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/keystore b/infra/test-util/src/main/resources/test-data/opendj.template/config/keystore deleted file mode 100644 index 4b19bab61b1a021c1a641c64946f8093e0a8cc2e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1275 zcmezO_TO6u1_mY|W&~sI;?$zD)FR#F)S?ogm|?)q(hWfQT?S1|+YI>FxU|_ASs1mL z1Q{7w8CaT_7Rl|p91!+T>-`7W=PupZp>|&)%;xB?Kas`pVUymYiCL9Q6%FfWr7!hz z+ETRs>Xgq_YaemU2od*rEW7b%kl=~j7MqP1HiftBKR2UlMJf?K3N`d@|MeoW5AD^3ggZn^bjeel)&4j#w zXU%3i-E@BZVGuaJ|8PXxyVv#n~3*Ol;i%7*+abs{ddx3kO|e(rc{J9+9&rZb#(Se>OdOq+Zt>N!L8#D{FSFn4UU_G-jz_!C zD(X_nrI{*wj34-~y!g17vw7*9qChpFT^JsYf%lXBX`M!Q9w@BUv|;AG7jp=WAf z2~5ym4VoA~0&&y=W+p}^CKf+URT~3dHcqWJkGAi;z*No3U|?&gZlKD>9LmBaEazX4 zn&%R%5S*HmrW>4@o|l@U;0(+fnQ58Hi6yCqLIwgLh0Ma7Ir+(nIT`uIB?fZhyoQDb z=0-*!Y-|<<VK7*WTSQi}%Da!)Io;kz#t=lqW9fKh-_){CeptDgmic_Ci6) hzY}!K*pJ?`+o+o~(|!HlkCSCK%u0OvuFo^n0swuSCkFrk diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/keystore.pin b/infra/test-util/src/main/resources/test-data/opendj.template/config/keystore.pin deleted file mode 100644 index 0b270f1bc02..00000000000 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/keystore.pin +++ /dev/null @@ -1 +0,0 @@ -IS889DXgOBNE2NoOOICSGCXXBxfgB2CTWWHs6eM8blvp08NGYE diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/00-core.ldif b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/00-core.ldif index 342bb0c3ee2..44cfde6b651 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/00-core.ldif +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/00-core.ldif @@ -22,6 +22,8 @@ # # # Copyright 2006-2010 Sun Microsystems, Inc. +# Portions Copyright 2011-2012 ForgeRock AS +# Portions Copyright 2013 Manuel Gaupp # # # This file contains a core set of attribute type and objectlass definitions @@ -32,6 +34,9 @@ dn: cn=schema objectClass: top objectClass: ldapSubentry objectClass: subschema +ldapSyntaxes: ( 1.3.6.1.4.1.26027.1.3.6 DESC 'Collective Conflict Behavior' + X-ENUM ( 'real-overrides-virtual' 'virtual-overrides-real' + 'merge-real-and-virtual' ) ) attributeTypes: ( 2.5.4.41 NAME 'name' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768} X-ORIGIN 'RFC 4519' ) @@ -52,8 +57,8 @@ attributeTypes: ( 2.5.4.4 NAME ( 'sn' 'surname' ) SUP name attributeTypes: ( 2.5.4.5 NAME 'serialNumber' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.44{64} X-ORIGIN 'RFC 4519' ) -attributeTypes: ( 2.5.4.6 NAME ( 'c' 'countryName' ) SUP name SINGLE-VALUE - X-ORIGIN 'RFC 4519' ) +attributeTypes: ( 2.5.4.6 NAME ( 'c' 'countryName' ) SUP name + SYNTAX 1.3.6.1.4.1.1466.115.121.1.11 SINGLE-VALUE X-ORIGIN 'RFC 4519' ) attributeTypes: ( 2.5.4.7 NAME ( 'l' 'localityName' ) SUP name X-ORIGIN 'RFC 4519' ) attributeTypes: ( 2.5.4.8 NAME ( 'st' 'stateOrProvinceName' ) SUP name @@ -155,13 +160,13 @@ attributeTypes: ( 2.5.4.48 NAME 'protocolInformation' attributeTypes: ( 2.5.4.50 NAME 'uniqueMember' EQUALITY uniqueMemberMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.34 X-ORIGIN 'RFC 4519' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.585 NAME 'lastExternalChangelogCookie' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.593 NAME 'firstChangeNumber' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.594 NAME 'lastChangeNumber' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 2.5.4.51 NAME 'houseIdentifier' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768} @@ -393,9 +398,6 @@ attributeTypes: ( 2.5.18.12 NAME 'collectiveAttributeSubentries' attributeTypes: ( 2.5.18.7 NAME 'collectiveExclusions' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 USAGE directoryOperation X-ORIGIN 'RFC 3671' ) -ldapSyntaxes: ( 1.3.6.1.4.1.26027.1.3.6 DESC 'Collective Conflict Behavior' - X-ENUM ( 'real-overrides-virtual' 'virtual-overrides-real' - 'merge-real-and-virtual' ) ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.606 NAME 'collectiveConflictBehavior' SYNTAX 1.3.6.1.4.1.26027.1.3.6 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) @@ -511,13 +513,24 @@ attributeTypes: ( 1.3.6.1.4.1.453.16.2.103 NAME 'numSubordinates' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-ietf-boreham-numsubordinates' ) -attributeTypes: ( 2.16.840.1.113730.3.1.35 NAME 'changelog' +attributeTypes: ( 2.16.840.1.113730.3.1.35 NAME 'changelog' DESC 'the distinguished name of the entry which contains the set of entries comprising this servers changelog' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-good-ldap-changelog' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.59 + NAME 'etag' + EQUALITY caseExactMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.44 + SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.2.840.113549.1.9.1 NAME 'emailAddress' + DESC 'represents the email address part of an X.509 certificate' + EQUALITY caseIgnoreIA5Match + SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 + X-ORIGIN 'RFC 2985' ) objectClasses: ( 2.5.6.0 NAME 'top' ABSTRACT MUST objectClass X-ORIGIN 'RFC 4512' ) objectClasses: ( 2.5.6.1 NAME 'alias' SUP top STRUCTURAL MUST aliasedObjectName @@ -599,6 +612,13 @@ objectClasses: ( 2.5.6.20 NAME 'dmd' SUP top STRUCTURAL MUST dmdName internationaliSDNNumber $ facsimileTelephoneNumber $ street $ postOfficeBox $ postalCode $ postalAddress $ physicalDeliveryOfficeName $ st $ l $ description ) X-ORIGIN 'RFC 2256' ) +objectClasses: ( 2.5.6.21 NAME 'pkiUser' DESC 'X.509 PKI User' SUP top + AUXILIARY MAY userCertificate X-ORIGIN 'RFC 4523' ) +objectClasses: ( 2.5.6.22 NAME 'pkiCA' DESC 'X.509 PKI Certificate Authority' + SUP top AUXILIARY MAY ( cACertificate $ certificateRevocationList $ + authorityRevocationList $ crossCertificatePair ) X-ORIGIN 'RFC 4523' ) +objectClasses: ( 2.5.6.23 NAME 'deltaCRL' DESC 'X.509 delta CRL' SUP top + AUXILIARY MAY deltaRevocationList X-ORIGIN 'RFC 4523' ) objectClasses: ( 1.3.6.1.4.1.1466.101.120.111 NAME 'extensibleObject' SUP top AUXILIARY X-ORIGIN 'RFC 4512' ) objectClasses: ( 2.5.20.1 NAME 'subschema' AUXILIARY MAY ( dITStructureRules $ diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/01-pwpolicy.ldif b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/01-pwpolicy.ldif index 4ab93d788d8..4deec1f4648 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/01-pwpolicy.ldif +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/01-pwpolicy.ldif @@ -104,7 +104,7 @@ attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.22 NAME 'pwdReset' DESC 'The indication that the password has been reset' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' ) -attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.23 NAME 'pwdPolicySubentry' +attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.23 NAME 'pwdPolicySubentry' DESC 'The pwdPolicy subentry in effect for this object' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/02-config.ldif b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/02-config.ldif index 51680d40d8a..40b5f31af66 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/02-config.ldif +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/02-config.ldif @@ -22,7 +22,9 @@ # # # Copyright 2006-2010 Sun Microsystems, Inc. -# Portions Copyright 2010 ForgeRock AS. +# Portions Copyright 2010-2014 ForgeRock AS. +# Portions Copyright 2011 profiq, s.r.o. +# Portions Copyright 2012 Manuel Gaupp # # # This file contains the attribute type and objectclass definitions for use @@ -33,270 +35,326 @@ objectClass: ldapSubentry objectClass: subschema attributeTypes: ( 1.3.6.1.4.1.26027.1.1.1 NAME 'ds-cfg-java-class' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.2 NAME 'ds-cfg-enabled' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.3 NAME 'ds-cfg-allow-attribute-name-exceptions' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.4 NAME 'ds-cfg-allowed-client' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.5 NAME 'ds-cfg-allow-ldap-v2' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.6 NAME 'ds-cfg-allow-start-tls' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.7 NAME 'ds-cfg-allow-tcp-reuse-address' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.8 NAME 'ds-cfg-base-dn' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.9 NAME 'ds-cfg-db-directory' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.10 NAME 'ds-cfg-backend-id' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.11 NAME 'ds-cfg-index-entry-limit' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.13 NAME 'ds-cfg-alternate-bind-dn' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.14 NAME 'ds-cfg-certificate-attribute' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.15 NAME 'ds-cfg-check-schema' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.16 NAME 'ds-cfg-certificate-validation-policy' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.17 NAME 'ds-cfg-db-cache-percent' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.18 NAME 'ds-cfg-db-cleaner-min-utilization' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.19 NAME 'ds-cfg-db-cache-size' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.20 NAME 'ds-cfg-db-run-cleaner' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.21 NAME 'ds-cfg-db-txn-no-sync' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.22 NAME 'ds-cfg-db-txn-write-no-sync' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.23 NAME 'ds-cfg-default-severity' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.24 NAME 'ds-cfg-denied-client' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.25 NAME 'ds-cfg-enable-profiling-on-startup' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.26 NAME 'ds-cfg-exclude-filter' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.27 NAME 'ds-cfg-rotation-interval' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.28 NAME 'ds-cfg-attribute' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.29 NAME 'ds-cfg-index-type' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.30 NAME 'ds-cfg-include-filter' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.31 NAME 'ds-cfg-invalid-attribute-syntax-behavior' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.32 NAME 'ds-cfg-kdc-address' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.33 NAME 'ds-cfg-keytab' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.34 NAME 'ds-cfg-keep-stats' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.35 NAME 'ds-cfg-key-store-file' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.36 NAME 'ds-cfg-key-store-pin' + EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.37 NAME 'ds-cfg-key-store-pin-environment-variable' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.38 NAME 'ds-cfg-key-store-pin-file' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.39 NAME 'ds-cfg-key-store-pin-property' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.40 NAME 'ds-cfg-key-store-type' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.41 NAME 'ds-cfg-listen-address' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.42 NAME 'ds-cfg-listen-port' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.43 NAME 'ds-cfg-lock-timeout' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.44 NAME 'ds-cfg-log-file' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.45 NAME 'ds-cfg-max-allowed-client-connections' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.46 NAME 'ds-cfg-max-entries' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.47 NAME 'ds-cfg-max-memory-percent' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.48 NAME 'ds-cfg-max-request-size' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.49 NAME 'ds-cfg-max-work-queue-capacity' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.50 NAME 'ds-cfg-notify-abandoned-operations' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.51 NAME 'ds-cfg-num-request-handlers' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.52 NAME 'ds-cfg-num-worker-threads' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.53 NAME 'ds-cfg-override-severity' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.54 NAME 'ds-cfg-plugin-type' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.55 NAME 'ds-cfg-profile-action' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.56 NAME 'ds-cfg-profile-directory' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.57 NAME 'ds-cfg-profiler-state' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE NO-USER-MODIFICATION @@ -304,636 +362,771 @@ attributeTypes: ( 1.3.6.1.4.1.26027.1.1.57 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.58 NAME 'ds-cfg-profile-sample-interval' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.59 NAME 'ds-cfg-realm' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.515 NAME 'ds-recurring-task-schedule' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.61 NAME 'ds-recurring-task-id' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.62 NAME 'ds-cfg-rotation-action' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.63 NAME 'ds-cfg-rotation-policy' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.64 NAME 'ds-cfg-retention-policy' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.65 NAME 'ds-cfg-number-of-files' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.66 NAME 'ds-cfg-disk-space-used' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.67 NAME 'ds-cfg-free-disk-space' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.68 NAME 'ds-task-shutdown-message' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.69 NAME 'ds-task-actual-start-time' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.70 NAME 'ds-cfg-task-backing-file' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.71 NAME 'ds-task-class-name' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.72 NAME 'ds-task-completion-time' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.73 NAME 'ds-task-dependency-id' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.74 NAME 'ds-task-failed-dependency-action' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.75 NAME 'ds-task-id' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.76 NAME 'ds-task-log-message' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.77 NAME 'ds-task-notify-on-completion' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.78 NAME 'ds-task-notify-on-error' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.79 NAME 'ds-cfg-task-retention-time' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.80 NAME 'ds-task-scheduled-start-time' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.81 NAME 'ds-task-state' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.82 NAME 'ds-cfg-time-interval' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.83 NAME 'ds-cfg-buffer-size' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.84 NAME 'ds-cfg-schema-entry-dn' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.85 NAME 'ds-cfg-send-rejection-notice' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.86 NAME 'ds-cfg-server-fqdn' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.87 NAME 'ds-task-shutdown-password' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.88 NAME 'ds-cfg-single-structural-objectclass-behavior' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.89 NAME 'ds-cfg-size-limit' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.90 NAME 'ds-cfg-ssl-client-auth-policy' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.91 NAME 'ds-cfg-ssl-cert-nickname' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.92 NAME 'ds-cfg-strict-format' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.93 NAME 'ds-cfg-subordinate-base-dn' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.94 NAME 'ds-cfg-suppress-internal-operations' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.95 NAME 'ds-cfg-time-of-day' + EQUALITY numericStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.36 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.96 NAME 'ds-cfg-trust-store-file' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.97 NAME 'ds-cfg-trust-store-pin' + EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.98 NAME 'ds-cfg-trust-store-pin-environment-variable' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.99 NAME 'ds-cfg-trust-store-pin-file' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.100 NAME 'ds-cfg-trust-store-pin-property' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.101 NAME 'ds-cfg-trust-store-type' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.102 NAME 'ds-cfg-user-base-dn' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.103 NAME 'ds-cfg-user-name-attribute' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.104 NAME 'ds-cfg-use-ssl' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.105 NAME 'ds-cfg-use-tcp-keep-alive' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.106 NAME 'ds-cfg-use-tcp-no-delay' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.107 NAME 'ds-cfg-allow-zero-length-values' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.108 NAME 'ds-cfg-show-all-attributes' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.109 NAME 'ds-cfg-add-missing-rdn-attributes' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.110 NAME 'ds-cfg-server-error-result-code' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.111 NAME 'ds-cfg-match-attribute' + EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.112 NAME 'ds-cfg-match-base-dn' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.113 NAME 'ds-cfg-identity-mapper' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.114 NAME 'ds-cfg-proxied-authorization-identity-mapper' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.115 NAME 'ds-cfg-time-limit' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.116 NAME 'ds-rlim-size-limit' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.117 NAME 'ds-rlim-time-limit' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.118 NAME 'ds-cfg-accept-backlog' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.119 NAME 'ds-sync-hist' ORDERING historicalCsnOrderingMatch + EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.120 NAME 'ds-cfg-receive-status' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 + SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.121 NAME 'ds-cfg-replication-port' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.122 NAME 'ds-cfg-replication-server' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.123 NAME 'ds-cfg-writability-mode' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.124 NAME 'ds-cfg-bind-with-dn-requires-password' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.125 NAME 'ds-cfg-max-receive-queue' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.126 NAME 'ds-cfg-max-receive-delay' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.127 NAME 'ds-cfg-max-send-queue' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.128 NAME 'ds-cfg-max-send-delay' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.129 NAME 'ds-cfg-max-password-length' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.130 NAME 'ds-cfg-min-password-length' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.131 NAME 'ds-cfg-password-character-set' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.132 NAME 'ds-cfg-password-format' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.133 NAME 'ds-cfg-account-status-notification-handler' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.134 NAME 'ds-cfg-allow-expired-password-changes' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.135 NAME 'ds-cfg-allow-pre-encoded-passwords' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.136 NAME 'ds-cfg-allow-user-password-changes' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.137 NAME 'ds-cfg-default-password-storage-scheme' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.138 NAME 'ds-cfg-deprecated-password-storage-scheme' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.139 NAME 'ds-cfg-expire-passwords-without-warning' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.140 NAME 'ds-cfg-force-change-on-reset' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.141 NAME 'ds-cfg-grace-login-count' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.142 NAME 'ds-cfg-idle-lockout-interval' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.143 NAME 'ds-cfg-last-login-time-attribute' + EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.144 NAME 'ds-cfg-last-login-time-format' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.145 NAME 'ds-cfg-lockout-duration' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.146 NAME 'ds-cfg-lockout-failure-count' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.147 NAME 'ds-cfg-lockout-failure-expiration-interval' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.148 NAME 'ds-cfg-max-password-age' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.149 NAME 'ds-cfg-max-password-reset-age' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.150 NAME 'ds-cfg-min-password-age' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.151 NAME 'ds-cfg-password-attribute' + EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.152 NAME 'ds-cfg-password-expiration-warning-interval' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.153 NAME 'ds-cfg-password-generator' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.154 NAME 'ds-cfg-password-validator' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.155 NAME 'ds-cfg-previous-last-login-time-format' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.156 NAME 'ds-cfg-require-change-by-time' + EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.157 NAME 'ds-cfg-password-change-requires-current-password' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.158 NAME 'ds-cfg-require-secure-authentication' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.159 NAME 'ds-cfg-require-secure-password-changes' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.160 NAME 'ds-cfg-skip-validation-for-administrators' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.161 NAME 'ds-cfg-default-password-policy' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.162 NAME 'ds-pwp-last-login-time' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.163 NAME 'ds-pwp-password-changed-by-required-time' + EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.164 NAME 'ds-pwp-reset-time' + EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.165 NAME 'ds-pwp-warned-time' + EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.166 NAME 'ds-pwp-account-disabled' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.167 NAME 'ds-cfg-force-change-on-add' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.168 NAME 'ds-cfg-allow-multiple-password-values' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.169 NAME 'ds-task-import-ldif-file' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.170 NAME 'ds-task-import-append' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.171 NAME 'ds-task-import-replace-existing' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.172 NAME 'ds-task-import-backend-id' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.173 NAME 'ds-task-import-include-branch' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.174 NAME 'ds-task-import-exclude-branch' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.175 NAME 'ds-task-import-include-attribute' + EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.176 NAME 'ds-task-import-exclude-attribute' + EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.177 NAME 'ds-task-import-include-filter' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.178 NAME 'ds-task-import-exclude-filter' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.179 NAME 'ds-task-import-reject-file' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.598 NAME 'ds-task-import-tmp-directory' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.180 NAME 'ds-task-import-overwrite-rejects' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.181 NAME 'ds-task-import-skip-schema-validation' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.597 NAME 'ds-task-import-skip-dn-validation' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.519 NAME 'ds-task-import-skip-file' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.182 NAME 'ds-task-import-is-compressed' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.183 NAME 'ds-task-import-is-encrypted' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.222 NAME 'ds-cfg-import-queue-size' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.184 NAME 'ds-task-restart-server' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.185 NAME 'ds-sync-state' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) @@ -945,16 +1138,19 @@ attributeTypes: ( 1.3.6.1.4.1.26027.1.1.186 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.187 NAME 'ds-backup-compressed' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.188 NAME 'ds-backup-date' + EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.189 NAME 'ds-backup-dependency' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.190 @@ -966,370 +1162,448 @@ attributeTypes: ( 1.3.6.1.4.1.26027.1.1.190 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.191 NAME 'ds-backup-encrypted' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.192 NAME 'ds-backup-id' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.193 NAME 'ds-backup-incremental' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.194 NAME 'ds-backup-signed-hash' + EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.195 NAME 'ds-backup-unsigned-hash' + EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.196 NAME 'ds-backup-backend-dn' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.197 NAME 'ds-task-export-ldif-file' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.198 NAME 'ds-task-export-append-to-ldif' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.199 NAME 'ds-task-export-backend-id' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.200 NAME 'ds-task-export-include-branch' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.201 NAME 'ds-task-export-exclude-branch' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.202 NAME 'ds-task-export-include-attribute' + EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.203 NAME 'ds-task-export-exclude-attribute' + EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.204 NAME 'ds-task-export-include-filter' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.205 NAME 'ds-task-export-exclude-filter' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.206 NAME 'ds-task-export-wrap-column' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.207 NAME 'ds-task-export-compress-ldif' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.208 NAME 'ds-task-export-encrypt-ldif' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.209 NAME 'ds-task-export-sign-hash' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.210 NAME 'ds-task-restore-verify-only' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.211 NAME 'ds-task-backup-backend-id' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.212 NAME 'ds-task-backup-all' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.213 NAME 'ds-task-backup-incremental' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.214 NAME 'ds-task-backup-incremental-base-id' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.215 NAME 'ds-task-backup-compress' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.216 NAME 'ds-task-backup-encrypt' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.217 NAME 'ds-task-backup-hash' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.218 NAME 'ds-task-backup-sign-hash' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.219 NAME 'ds-cfg-preload-time-limit' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.223 NAME 'ds-cfg-import-thread-count' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.224 NAME 'ds-cfg-entries-compressed' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.225 NAME 'ds-cfg-deadlock-retry-limit' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.226 NAME 'ds-cfg-db-evictor-lru-only' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.227 NAME 'ds-cfg-db-evictor-nodes-per-scan' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.228 NAME 'ds-cfg-db-log-file-max' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.229 NAME 'ds-cfg-db-logging-file-handler-on' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.230 NAME 'ds-cfg-db-logging-level' + EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.231 NAME 'ds-cfg-db-checkpointer-bytes-interval' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.232 NAME 'ds-cfg-db-checkpointer-wakeup-interval' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.233 NAME 'ds-cfg-db-num-lock-tables' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.235 NAME 'ds-cfg-replication-server-id' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.236 NAME 'ds-cfg-server-id' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.237 NAME 'ds-pwp-account-expiration-time' + EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.238 NAME 'ds-cfg-account-status-notification-type' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.239 NAME 'ds-cfg-db-num-cleaner-threads' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.240 NAME 'ds-cfg-lookthrough-limit' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.241 NAME 'ds-rlim-lookthrough-limit' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.242 NAME 'ds-cfg-db-directory-permissions' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.243 NAME 'ds-cfg-window-size' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.244 NAME 'ds-pwp-password-policy-dn' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.245 NAME 'ds-cfg-queue-size' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.246 NAME 'ds-private-naming-contexts' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.247 NAME 'ds-backend-id' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.248 NAME 'ds-backend-base-dn' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.249 NAME 'ds-backend-entry-count' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.250 NAME 'ds-backend-writability-mode' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.251 NAME 'ds-connectionhandler-connection' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.252 NAME 'ds-connectionhandler-listener' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.253 NAME 'ds-connectionhandler-num-connections' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.254 NAME 'ds-connectionhandler-protocol' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.255 NAME 'ds-backend-is-private' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.256 NAME 'ds-cfg-reject-unauthenticated-requests' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.257 NAME 'ds-task-schema-file-name' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.258 NAME 'ds-cfg-heartbeat-interval' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.259 NAME 'ds-cfg-replication-db-directory' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.260 NAME 'ds-privilege-name' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.261 NAME 'ds-cfg-default-root-privilege-name' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.262 NAME 'ds-cfg-certificate-mapper' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.263 NAME 'ds-cfg-key-manager-provider' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.264 NAME 'ds-cfg-trust-manager-provider' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.265 NAME 'ds-cfg-subject-attribute' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.266 NAME 'ds-certificate-subject-dn' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.267 NAME 'ds-cfg-subject-attribute-mapping' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.268 NAME 'ds-certificate-fingerprint' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.269 NAME 'ds-cfg-fingerprint-attribute' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.270 NAME 'ds-cfg-fingerprint-algorithm' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.271 NAME 'ds-cfg-replication-purge-delay' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) @@ -1340,68 +1614,82 @@ attributeTypes: ( 1.3.6.1.4.1.26027.1.1.272 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.273 NAME 'ds-cfg-min-password-difference' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.274 NAME 'ds-cfg-min-unique-characters' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.275 NAME 'ds-cfg-max-consecutive-length' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.276 NAME 'ds-cfg-case-sensitive-validation' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.277 NAME 'ds-cfg-attribute-type' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.278 NAME 'ds-cfg-group-dn' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.279 NAME 'ds-cfg-filter' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.280 NAME 'ds-cfg-conflict-behavior' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.281 NAME 'ds-task-initialize-domain-dn' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.282 NAME 'ds-task-initialize-replica-server-id' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.283 NAME 'ds-task-unprocessed-entry-count' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.284 NAME 'ds-task-processed-entry-count' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.285 NAME 'ds-cfg-dictionary-file' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.286 NAME 'ds-cfg-test-reversed-password' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) @@ -1412,142 +1700,171 @@ attributeTypes: ( 1.3.6.1.4.1.26027.1.1.287 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.288 NAME 'ds-cfg-allow-unclassified-characters' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.289 NAME 'ds-task-rebuild-base-dn' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.290 NAME 'ds-task-rebuild-index' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.291 NAME 'ds-task-rebuild-tmp-directory' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.292 NAME 'ds-target-group-dn' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.293 NAME 'ds-cfg-value' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.294 NAME 'ds-cfg-default-debug-level' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.295 NAME 'ds-cfg-default-debug-category' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.296 NAME 'ds-cfg-default-omit-method-entry-arguments' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.297 NAME 'ds-cfg-default-omit-method-return-value' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.298 NAME 'ds-cfg-default-include-throwable-cause' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.299 NAME 'ds-cfg-default-throwable-stack-frames' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.300 NAME 'ds-cfg-debug-scope' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.301 NAME 'ds-cfg-debug-level' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.302 NAME 'ds-cfg-debug-category' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.303 NAME 'ds-cfg-omit-method-entry-arguments' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.304 NAME 'ds-cfg-omit-method-return-value' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.305 NAME 'ds-cfg-include-throwable-cause' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.306 NAME 'ds-cfg-throwable-stack-frames' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.307 NAME 'ds-cfg-asynchronous' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.308 NAME 'ds-cfg-log-file-permissions' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.309 NAME 'ds-cfg-auto-flush' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.310 NAME 'ds-cfg-append' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.311 NAME 'ds-cfg-max-memory-size' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.312 NAME 'ds-cfg-cache-type' + EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.313 NAME 'ds-cfg-cache-directory' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 + EQUALITY caseExactMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.314 NAME 'ds-cfg-persistent-cache' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.315 NAME 'ds-cfg-allow-retrieving-membership' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.316 NAME 'ds-cfg-file-size-limit' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) @@ -1559,428 +1876,518 @@ attributeTypes: ( 1.3.6.1.4.1.26027.1.1.317 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.319 NAME 'ds-cfg-substring-length' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.320 NAME 'ds-cfg-plugin-order-startup' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.321 NAME 'ds-cfg-plugin-order-shutdown' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.322 NAME 'ds-cfg-plugin-order-post-connect' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.323 NAME 'ds-cfg-plugin-order-post-disconnect' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.324 NAME 'ds-cfg-plugin-order-ldif-import' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.325 NAME 'ds-cfg-plugin-order-ldif-export' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.326 NAME 'ds-cfg-plugin-order-pre-parse-abandon' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.327 NAME 'ds-cfg-plugin-order-pre-parse-add' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.328 NAME 'ds-cfg-plugin-order-pre-parse-bind' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.329 NAME 'ds-cfg-plugin-order-pre-parse-compare' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.330 NAME 'ds-cfg-plugin-order-pre-parse-delete' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.331 NAME 'ds-cfg-plugin-order-pre-parse-extended' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.332 NAME 'ds-cfg-plugin-order-pre-parse-modify' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.333 NAME 'ds-cfg-plugin-order-pre-parse-modify-dn' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.334 NAME 'ds-cfg-plugin-order-pre-parse-search' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.335 NAME 'ds-cfg-plugin-order-pre-parse-unbind' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.336 NAME 'ds-cfg-plugin-order-pre-operation-add' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.337 NAME 'ds-cfg-plugin-order-pre-operation-bind' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.338 NAME 'ds-cfg-plugin-order-pre-operation-compare' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.339 NAME 'ds-cfg-plugin-order-pre-operation-delete' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.340 NAME 'ds-cfg-plugin-order-pre-operation-extended' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.341 NAME 'ds-cfg-plugin-order-pre-operation-modify' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.342 NAME 'ds-cfg-plugin-order-pre-operation-modify-dn' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.343 NAME 'ds-cfg-plugin-order-pre-operation-search' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.344 NAME 'ds-cfg-plugin-order-post-operation-abandon' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.345 NAME 'ds-cfg-plugin-order-post-operation-add' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.346 NAME 'ds-cfg-plugin-order-post-operation-bind' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.347 NAME 'ds-cfg-plugin-order-post-operation-compare' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.348 NAME 'ds-cfg-plugin-order-post-operation-delete' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.349 NAME 'ds-cfg-plugin-order-post-operation-extended' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.350 NAME 'ds-cfg-plugin-order-post-operation-modify' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.351 NAME 'ds-cfg-plugin-order-post-operation-modify-dn' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.352 NAME 'ds-cfg-plugin-order-post-operation-search' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.353 NAME 'ds-cfg-plugin-order-post-operation-unbind' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.354 NAME 'ds-cfg-plugin-order-post-response-add' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.355 NAME 'ds-cfg-plugin-order-post-response-bind' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.356 NAME 'ds-cfg-plugin-order-post-response-compare' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.357 NAME 'ds-cfg-plugin-order-post-response-delete' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.358 NAME 'ds-cfg-plugin-order-post-response-extended' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.359 NAME 'ds-cfg-plugin-order-post-response-modify' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.360 NAME 'ds-cfg-plugin-order-post-response-modify-dn' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.361 NAME 'ds-cfg-plugin-order-post-response-search' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.362 NAME 'ds-cfg-plugin-order-search-result-entry' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.363 NAME 'ds-cfg-plugin-order-search-result-reference' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.364 NAME 'ds-cfg-plugin-order-intermediate-response' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.365 NAME 'ds-cfg-default-user-password-storage-scheme' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.366 NAME 'ds-cfg-default-auth-password-storage-scheme' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.367 NAME 'ds-cfg-strip-syntax-min-upper-bound' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.368 NAME 'ds-cfg-suppress-synchronization-operations' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.369 NAME 'ds-cfg-scope' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.370 NAME 'ds-cfg-sort-order' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.371 NAME 'ds-cfg-name' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.372 NAME 'ds-cfg-max-block-size' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.373 NAME 'ds-cfg-state-update-failure-policy' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.374 NAME 'ds-cfg-password-history-count' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.375 NAME 'ds-cfg-password-history-duration' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.376 NAME 'ds-cfg-smtp-server' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.377 NAME 'ds-cfg-sender-address' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.378 NAME 'ds-cfg-recipient-address' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.379 NAME 'ds-cfg-message-subject' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.380 NAME 'ds-cfg-message-body' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.381 NAME 'ds-task-import-clear-backend' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.382 NAME 'ds-cfg-je-property' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.383 NAME 'ds-task-disconnect-connection-id' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.384 NAME 'ds-task-disconnect-message' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.385 NAME 'ds-task-disconnect-notify-client' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.386 NAME 'ds-cfg-allowed-task' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.387 NAME 'ds-cfg-disabled-privilege' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.388 NAME 'ds-cfg-return-bind-error-messages' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.389 NAME 'ds-cfg-enabled-alert-type' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.390 NAME 'ds-cfg-disabled-alert-type' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.391 NAME 'ds-cfg-ssl-protocol' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.392 NAME 'ds-cfg-ssl-cipher-suite' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.393 NAME 'ds-cfg-idle-time-limit' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.394 NAME 'ds-rlim-idle-time-limit' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.395 NAME 'ds-cfg-notification-sender-address' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.396 NAME 'ds-cfg-plugin-order-subordinate-modify-dn' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.397 NAME 'ds-cfg-type' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.398 NAME 'ds-cfg-match-pattern' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.399 NAME 'ds-cfg-replace-pattern' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.400 NAME 'ds-cfg-compact-encoding' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.401 NAME 'ds-cfg-update-interval' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.402 NAME 'ds-cfg-email-address-attribute-type' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.403 NAME 'ds-cfg-send-message-without-end-user-address' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.404 NAME 'ds-cfg-message-template-file' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.405 NAME 'ds-sync-generation-id' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.406 NAME 'ds-task-reset-generation-id-domain-base-dn' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.407 NAME 'ds-cfg-ssl-encryption' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) @@ -1993,72 +2400,86 @@ attributeTypes: ( 1.3.6.1.4.1.26027.1.1.408 attributeTypes: ( 1.3.6.1.4.1.26027.1.1.409 NAME 'ds-cfg-key-id' DESC 'cryptographic cipher-key unique identifier' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.410 NAME 'ds-cfg-key-compromised-time' DESC 'The time a cryptographic cipher key was suspected to be compromised' + EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.411 NAME 'ds-cfg-save-config-on-successful-startup' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.412 NAME 'ds-cfg-max-blocked-write-time-limit' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.413 NAME 'ds-cfg-ldif-directory' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.414 NAME 'ds-cfg-poll-interval' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.415 NAME 'ds-cfg-plugin-order-post-synchronization-add' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.416 NAME 'ds-cfg-plugin-order-post-synchronization-delete' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.417 NAME 'ds-cfg-plugin-order-post-synchronization-modify' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.418 NAME 'ds-cfg-plugin-order-post-synchronization-modify-dn' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.419 NAME 'ds-cfg-invoke-for-internal-operations' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.420 NAME 'ds-cfg-ldif-file' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.421 NAME 'ds-cfg-is-private-backend' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.422 NAME 'ds-cfg-isolation-policy' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) @@ -2066,619 +2487,1400 @@ attributeTypes: ( 1.3.6.1.4.1.26027.1.1.423 NAME 'ds-cfg-cipher-transformation-name' DESC 'The name of a cryptographic cipher transformation consisting of an algorithm, a mode, and a padding specification, separated by slashes' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.424 NAME 'ds-cfg-mac-algorithm-name' DESC 'The name of a cryptographic message authentication code (MAC) algorithm' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.425 NAME 'ds-cfg-key-length-bits' DESC 'The length of a cryptographic secret key' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.426 NAME 'ds-cfg-initialization-vector-length-bits' DESC 'The length of a cryptographic cipher initialization vector' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.427 NAME 'ds-cfg-symmetric-key' DESC 'A cryptographic secret-key wrapped by a public-key' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.428 NAME 'ds-cfg-digest-algorithm' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.429 NAME 'ds-cfg-mac-algorithm' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.430 NAME 'ds-cfg-mac-key-length' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.431 NAME 'ds-cfg-cipher-transformation' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.432 NAME 'ds-cfg-cipher-key-length' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.433 NAME 'ds-cfg-key-wrapping-transformation' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.434 NAME 'ds-base-dn-entry-count' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.437 NAME 'ds-cfg-workflow' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.439 NAME 'ds-cfg-workflow-element' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.440 NAME 'ds-cfg-workflow-configuration-mode' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.441 NAME 'ds-cfg-backend' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.442 NAME 'ds-cfg-etime-resolution' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.444 NAME 'ds-task-reset-generation-id-new-value' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.445 NAME 'ds-cfg-cache-level' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.446 NAME 'ds-cfg-entry-cache-preload' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.447 NAME 'ds-cfg-num-update-replay-threads' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.448 NAME 'ds-cfg-trap-port' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.449 NAME 'ds-cfg-community' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.450 NAME 'ds-cfg-allowed-manager' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.451 NAME 'ds-cfg-allowed-user' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.452 NAME 'ds-cfg-security-level' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.453 NAME 'ds-cfg-traps-community' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.454 NAME 'ds-cfg-traps-destination' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.455 NAME 'ds-cfg-security-agent-file' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.456 NAME 'ds-cfg-registered-mbean' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.457 NAME 'ds-cfg-opendmk-jarfile' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.458 NAME 'ds-task-export-include-operational-attributes' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.459 NAME 'ds-task-import-template-file' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.460 NAME 'ds-task-import-random-seed' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.596 NAME 'ds-task-import-thread-count' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.461 NAME 'ds-cfg-allowed-auth-method' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.462 NAME 'ds-cfg-allowed-protocol' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.463 NAME 'ds-cfg-allowed-bind-dn' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + EQUALITY distinguishedNameMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.465 NAME 'ds-cfg-is-security-mandatory' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.467 NAME 'ds-cfg-priority' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.468 NAME 'ds-cfg-max-connections' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.469 NAME 'ds-cfg-max-connections-from-same-ip' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.470 NAME 'ds-cfg-max-ops-per-connection' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.471 NAME 'ds-cfg-max-concurrent-ops-per-connection' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.474 NAME 'ds-cfg-min-substring-length' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.478 NAME 'ds-cfg-assured-type' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.479 NAME 'ds-cfg-assured-sd-level' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.480 NAME 'ds-cfg-assured-timeout' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.481 NAME 'ds-cfg-group-id' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.482 NAME 'ds-cfg-referrals-url' + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.483 NAME 'ds-cfg-degraded-status-threshold' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.484 NAME 'ds-cfg-allowed-operations' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.485 NAME 'ds-cfg-allowed-attributes' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.486 NAME 'ds-cfg-prohibited-attributes' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.487 NAME 'ds-cfg-allowed-search-scopes' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.488 NAME 'ds-cfg-allowed-subtrees' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.489 NAME 'ds-cfg-prohibited-subtrees' + EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.499 NAME 'ds-cfg-matching-rule-type' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.500 NAME 'ds-cfg-collation' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.501 - NAME 'ds-cfg-ndb-connect-string' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 - SINGLE-VALUE - X-ORIGIN 'OpenDS Directory Server' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.502 - NAME 'ds-cfg-ndb-thread-count' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 - SINGLE-VALUE - X-ORIGIN 'OpenDS Directory Server' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.503 - NAME 'ds-cfg-ndb-num-connections' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 - SINGLE-VALUE - X-ORIGIN 'OpenDS Directory Server' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.504 - NAME 'ds-cfg-sql-user' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 - SINGLE-VALUE - X-ORIGIN 'OpenDS Directory Server' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.505 - NAME 'ds-cfg-sql-passwd' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 - SINGLE-VALUE - X-ORIGIN 'OpenDS Directory Server' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.506 - NAME 'ds-cfg-ndb-dbname' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 - SINGLE-VALUE - X-ORIGIN 'OpenDS Directory Server' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.507 - NAME 'ds-cfg-ndb-attr-len' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 - SINGLE-VALUE - X-ORIGIN 'OpenDS Directory Server' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.508 - NAME 'ds-cfg-ndb-attr-blob' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 - X-ORIGIN 'OpenDS Directory Server' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.509 - NAME 'ds-cfg-sql-connect-string' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 - SINGLE-VALUE - X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.511 NAME 'ds-cfg-quality-of-protection' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.512 NAME 'ds-cfg-cipher-strength' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.513 NAME 'ds-cfg-principal-name' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.518 NAME 'ds-cfg-index-extensible-matching-rule' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.586 NAME 'ds-cfg-fractional-include' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.587 NAME 'ds-cfg-fractional-exclude' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.588 NAME 'ds-sync-fractional-include' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.589 NAME 'ds-sync-fractional-exclude' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.595 NAME 'ds-cfg-changetime-heartbeat-interval' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.592 NAME 'ds-cfg-solve-conflicts' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + EQUALITY booleanMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 + SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.599 NAME 'ds-cfg-plugin-order-ldif-import-end' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.600 NAME 'ds-cfg-plugin-order-ldif-import-begin' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.601 NAME 'ds-cfg-ecl-include' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.7 + NAME 'ds-cfg-ecl-include-for-deletes' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.603 NAME 'ds-cfg-weight' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.605 NAME 'ds-cfg-monitoring-period' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.607 NAME 'ds-cfg-initialization-window-size' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.608 NAME 'ds-cfg-log-changenumber' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + EQUALITY booleanMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.609 NAME 'ds-cfg-plugin-order-subordinate-delete' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.610 NAME 'ds-cfg-disk-full-threshold' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.611 NAME 'ds-cfg-disk-low-threshold' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.612 NAME 'ds-cfg-index-filter-analyzer-enabled' + EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.613 NAME 'ds-cfg-max-psearches' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.614 NAME 'ds-cfg-conflicts-historical-purge-delay' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.615 NAME 'ds-task-purge-conflicts-historical-domain-dn' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.616 NAME 'ds-task-purge-conflicts-historical-maximum-duration' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.617 NAME 'ds-task-purge-conflicts-historical-last-purged-changenumber' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.618 NAME 'ds-task-purge-conflicts-historical-purge-completed-in-time' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + EQUALITY booleanMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.619 NAME 'ds-task-purge-conflicts-historical-purged-values-count' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.620 NAME 'ds-task-purge-conflicts-historical-first-purged-changenumber' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.627 NAME 'ds-cfg-max-ops-per-interval' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.628 NAME 'ds-cfg-max-ops-interval' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.1 NAME 'ds-cfg-crypt-password-storage-encryption-algorithm' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.2 NAME 'ds-cfg-db-evictor-core-threads' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.3 NAME 'ds-cfg-db-evictor-max-threads' + EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.4 NAME 'ds-cfg-db-evictor-keep-alive' + EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.1 - NAME 'ds-cfg-access-control-handler' - SUP top - STRUCTURAL - MUST ( cn $ - ds-cfg-java-class $ - ds-cfg-enabled ) - X-ORIGIN 'OpenDS Directory Server' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.2 - NAME 'ds-cfg-alert-handler' - SUP top - STRUCTURAL - MUST ( cn $ - ds-cfg-java-class $ - ds-cfg-enabled ) - MAY ( ds-cfg-enabled-alert-type $ - ds-cfg-disabled-alert-type ) - X-ORIGIN 'OpenDS Directory Server' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.3 - NAME 'ds-cfg-attribute-syntax' - SUP top - STRUCTURAL - MUST ( cn $ - ds-cfg-java-class $ - ds-cfg-enabled ) - X-ORIGIN 'OpenDS Directory Server' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.4 - NAME 'ds-cfg-telephone-number-attribute-syntax' - SUP ds-cfg-attribute-syntax - STRUCTURAL - MAY ds-cfg-strict-format - X-ORIGIN 'OpenDS Directory Server' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.5 - NAME 'ds-cfg-backend' - SUP top - STRUCTURAL - MUST ( ds-cfg-backend-id $ - ds-cfg-base-dn $ - ds-cfg-java-class $ - ds-cfg-enabled $ - ds-cfg-writability-mode ) - X-ORIGIN 'OpenDS Directory Server' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.6 - NAME 'ds-cfg-local-db-backend' - SUP ds-cfg-backend - STRUCTURAL - MUST ds-cfg-db-directory - MAY ( ds-cfg-index-entry-limit $ - ds-cfg-preload-time-limit $ - ds-cfg-import-thread-count $ - ds-cfg-import-queue-size $ - ds-cfg-entries-compressed $ - ds-cfg-db-directory-permissions $ - ds-cfg-db-cache-percent $ - ds-cfg-db-cache-size $ - ds-cfg-db-txn-no-sync $ - ds-cfg-db-txn-write-no-sync $ - ds-cfg-db-run-cleaner $ - ds-cfg-db-cleaner-min-utilization $ - ds-cfg-db-evictor-lru-only $ - ds-cfg-db-evictor-core-threads $ - ds-cfg-db-evictor-max-threads $ - ds-cfg-db-evictor-keep-alive $ - ds-cfg-db-evictor-nodes-per-scan $ - ds-cfg-db-log-file-max $ - ds-cfg-db-logging-file-handler-on $ - ds-cfg-db-logging-level $ - ds-cfg-db-checkpointer-bytes-interval $ - ds-cfg-db-checkpointer-wakeup-interval $ - ds-cfg-db-num-lock-tables $ - ds-cfg-db-num-cleaner-threads $ - ds-cfg-compact-encoding $ - ds-cfg-je-property $ - ds-cfg-disk-full-threshold $ - ds-cfg-disk-low-threshold $ - ds-cfg-index-filter-analyzer-enabled $ - ds-cfg-max-entries ) - X-ORIGIN 'OpenDS Directory Server' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.7 - NAME 'ds-cfg-local-db-index' - SUP top - STRUCTURAL - MUST ( ds-cfg-attribute $ - ds-cfg-index-type ) - MAY ( ds-cfg-index-entry-limit $ - ds-cfg-substring-length $ - ds-cfg-index-extensible-matching-rule ) - X-ORIGIN 'OpenDS Directory Server' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.8 - NAME 'ds-cfg-schema-backend' - SUP ds-cfg-backend - STRUCTURAL - MAY ( ds-cfg-schema-entry-dn $ - ds-cfg-show-all-attributes ) - X-ORIGIN 'OpenDS Directory Server' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.9 - NAME 'ds-cfg-task-backend' - SUP ds-cfg-backend - STRUCTURAL - MAY ( ds-cfg-task-backing-file $ - ds-cfg-task-retention-time $ - ds-cfg-notification-sender-address ) - X-ORIGIN 'OpenDS Directory Server' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.10 - NAME 'ds-cfg-branch' - SUP top - STRUCTURAL - MUST cn - X-ORIGIN 'OpenDS Directory Server' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.11 - NAME 'ds-cfg-certificate-mapper' - SUP top - STRUCTURAL - MUST ( cn $ - ds-cfg-java-class $ - ds-cfg-enabled ) - X-ORIGIN 'OpenDS Directory Server' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.12 - NAME 'ds-cfg-connection-handler' - SUP top - STRUCTURAL - MUST ( cn $ - ds-cfg-java-class $ - ds-cfg-enabled ) - MAY ( ds-cfg-allowed-client $ +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.5 + NAME 'ds-cfg-min-character-sets' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.8 + NAME 'ds-cfg-pwd-sync-policy' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.9 + NAME 'ds-cfg-samba-administrator-dn' + EQUALITY distinguishedNameMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.10 + NAME 'ds-cfg-index-filter-analyzer-max-filters' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.11 + NAME 'ds-cfg-subordinate-indexes-enabled' + EQUALITY booleanMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.12 + NAME 'ds-cfg-primary-remote-ldap-server' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.13 + NAME 'ds-cfg-secondary-remote-ldap-server' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.14 + NAME 'ds-cfg-mapping-policy' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.15 + NAME 'ds-cfg-mapped-attribute' + EQUALITY objectIdentifierMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.16 + NAME 'ds-cfg-mapped-search-bind-dn' + EQUALITY distinguishedNameMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.17 + NAME 'ds-cfg-mapped-search-bind-password' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.18 + NAME 'ds-cfg-mapped-search-base-dn' + EQUALITY distinguishedNameMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.19 + NAME 'ds-cfg-connection-timeout' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.20 + NAME 'ds-cfg-mapped-search-bind-password-property' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.21 + NAME 'ds-cfg-mapped-search-bind-password-environment-variable' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.22 + NAME 'ds-cfg-mapped-search-bind-password-file' + EQUALITY caseExactMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.23 + NAME 'ds-cfg-use-password-caching' + EQUALITY booleanMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.24 + NAME 'ds-cfg-cached-password-storage-scheme' + EQUALITY distinguishedNameMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.25 + NAME 'ds-cfg-cached-password-ttl' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.26 + NAME 'ds-pta-cached-password' + SYNTAX 1.3.6.1.4.1.26027.1.3.1 + SINGLE-VALUE + NO-USER-MODIFICATION + USAGE directoryOperation + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.27 + NAME 'ds-pta-cached-password-time' + EQUALITY generalizedTimeMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 + SINGLE-VALUE + NO-USER-MODIFICATION + USAGE directoryOperation + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.28 + NAME 'ds-cfg-remove-inbound-attributes' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.29 + NAME 'ds-cfg-rename-inbound-attributes' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.30 + NAME 'ds-cfg-filtering-policy' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.31 + NAME 'ds-cfg-log-record-type' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.32 + NAME 'ds-cfg-connection-client-address-equal-to' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.33 + NAME 'ds-cfg-connection-client-address-not-equal-to' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.34 + NAME 'ds-cfg-connection-protocol-equal-to' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.35 + NAME 'ds-cfg-connection-port-equal-to' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.36 + NAME 'ds-cfg-user-dn-equal-to' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.37 + NAME 'ds-cfg-user-dn-not-equal-to' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.38 + NAME 'ds-cfg-user-is-member-of' + EQUALITY distinguishedNameMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.39 + NAME 'ds-cfg-user-is-not-member-of' + EQUALITY distinguishedNameMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.40 + NAME 'ds-cfg-request-target-dn-equal-to' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.41 + NAME 'ds-cfg-request-target-dn-not-equal-to' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.42 + NAME 'ds-cfg-response-result-code-equal-to' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.43 + NAME 'ds-cfg-response-result-code-not-equal-to' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.44 + NAME 'ds-cfg-response-etime-greater-than' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.45 + NAME 'ds-cfg-response-etime-less-than' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.46 + NAME 'ds-cfg-search-response-nentries-greater-than' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.47 + NAME 'ds-cfg-search-response-nentries-less-than' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.48 + NAME 'ds-cfg-search-response-is-indexed' + EQUALITY booleanMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.49 + NAME 'ds-cfg-log-format' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.50 + NAME 'ds-cfg-log-record-time-format' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.51 + NAME 'ds-cfg-log-control-oids' + EQUALITY booleanMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.52 + NAME 'ds-cfg-check-substrings' + EQUALITY booleanMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.53 + NAME 'ds-cfg-check-references' + EQUALITY booleanMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.54 + NAME 'ds-cfg-check-references-filter-criteria' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.55 + NAME 'ds-cfg-check-references-scope-criteria' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.56 + NAME 'ds-cfg-db-log-filecache-size' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.57 + NAME 'ds-cfg-excluded-attribute' + EQUALITY objectIdentifierMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.58 + NAME 'ds-cfg-checksum-algorithm' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.60 + NAME ( 'ds-pwp-password-expiration-time' + 'pwdExpirationTime' ) + EQUALITY generalizedTimeMatch + ORDERING generalizedTimeOrderingMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 + SINGLE-VALUE + NO-USER-MODIFICATION + USAGE directoryOperation + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.61 + NAME 'ds-cfg-max-internal-buffer-size' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.62 + NAME 'ds-cfg-character-set-ranges' + EQUALITY caseExactMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.63 + NAME 'supportedTLSProtocols' + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + USAGE dSAOperation + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.64 + NAME 'supportedTLSCiphers' + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + USAGE dSAOperation + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.65 + NAME 'connectionsEstablished' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.66 + NAME 'connectionsClosed' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.67 + NAME 'bytesRead' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.68 + NAME 'bytesWritten' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.69 + NAME 'ldapMessagesRead' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.70 + NAME 'ldapMessagesWritten' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.71 + NAME 'operationsAbandoned' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.72 + NAME 'operationsInitiated' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.73 + NAME 'operationsCompleted' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.74 + NAME 'abandonRequests' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.75 + NAME 'addRequests' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.76 + NAME 'addResponses' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.77 + NAME 'bindRequests' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.78 + NAME 'bindResponses' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.79 + NAME 'compareRequests' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.80 + NAME 'compareResponses' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.81 + NAME 'deleteRequests' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.82 + NAME 'deleteResponses' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.83 + NAME 'extendedRequests' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.84 + NAME 'extendedResponses' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.85 + NAME 'modifyRequests' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.86 + NAME 'modifyResponses' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.87 + NAME 'modifyDNRequests' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.88 + NAME 'modifyDNResponses' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.89 + NAME 'searchRequests' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.90 + NAME 'searchOneRequests' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.91 + NAME 'searchSubRequests' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.92 + NAME 'searchResultEntries' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.93 + NAME 'searchResultReferences' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.94 + NAME 'searchResultsDone' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.95 + NAME 'unbindRequests' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.96 + NAME 'ds-mon-add-operations-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.97 + NAME 'ds-mon-resident-time-add-operations-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.98 + NAME 'ds-mon-search-operations-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.99 + NAME 'ds-mon-resident-time-search-operations-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.100 + NAME 'ds-mon-bind-operations-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.101 + NAME 'ds-mon-resident-time-bind-operations-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.102 + NAME 'ds-mon-unbind-operations-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.103 + NAME 'ds-mon-resident-time-unbind-operations-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.104 + NAME 'ds-mon-compare-operations-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.105 + NAME 'ds-mon-resident-time-compare-operations-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.106 + NAME 'ds-mon-delete-operations-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.107 + NAME 'ds-mon-resident-time-delete-operations-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.108 + NAME 'ds-mon-mod-operations-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.109 + NAME 'ds-mon-resident-time-mod-operations-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.110 + NAME 'ds-mon-moddn-operations-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.111 + NAME 'ds-mon-resident-time-moddn-operations-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.112 + NAME 'ds-mon-abandon-operations-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.113 + NAME 'ds-mon-resident-time-abandon-operations-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.114 + NAME 'ds-mon-extended-operations-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.115 + NAME 'ds-mon-resident-time-extended-operations-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.116 + NAME 'ds-task-rebuild-index-clear-degraded-state' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + X-ORIGIN 'OpenDS Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.117 + NAME 'ds-cfg-pbkdf2-iterations' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.118 + NAME 'ds-cfg-config-file' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.119 + NAME 'ds-cfg-authentication-required' + EQUALITY booleanMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.120 + NAME 'ds-mon-http-requests-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.121 + NAME 'ds-mon-resident-time-http-requests-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.122 + NAME 'ds-mon-http-delete-requests-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.123 + NAME 'ds-mon-resident-time-http-delete-requests-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.124 + NAME 'ds-mon-http-get-requests-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.125 + NAME 'ds-mon-resident-time-http-get-requests-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.126 + NAME 'ds-mon-http-patch-requests-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.127 + NAME 'ds-mon-resident-time-http-patch-requests-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.128 + NAME 'ds-mon-http-post-requests-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.129 + NAME 'ds-mon-resident-time-http-post-requests-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.130 + NAME 'ds-mon-http-put-requests-total-count' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.131 + NAME 'ds-mon-resident-time-http-put-requests-total-time' + EQUALITY integerMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.143 + NAME 'ds-cfg-source-address' EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 + SINGLE-VALUE + X-ORIGIN 'OpenDJ Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.1 + NAME 'ds-cfg-access-control-handler' + SUP top + STRUCTURAL + MUST ( cn $ + ds-cfg-java-class $ + ds-cfg-enabled ) + X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.2 + NAME 'ds-cfg-alert-handler' + SUP top + STRUCTURAL + MUST ( cn $ + ds-cfg-java-class $ + ds-cfg-enabled ) + MAY ( ds-cfg-enabled-alert-type $ + ds-cfg-disabled-alert-type ) + X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.3 + NAME 'ds-cfg-attribute-syntax' + SUP top + STRUCTURAL + MUST ( cn $ + ds-cfg-java-class $ + ds-cfg-enabled ) + X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.4 + NAME 'ds-cfg-telephone-number-attribute-syntax' + SUP ds-cfg-attribute-syntax + STRUCTURAL + MAY ds-cfg-strict-format + X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.5 + NAME 'ds-cfg-backend' + SUP top + STRUCTURAL + MUST ( ds-cfg-backend-id $ + ds-cfg-base-dn $ + ds-cfg-java-class $ + ds-cfg-enabled $ + ds-cfg-writability-mode ) + X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.6 + NAME 'ds-cfg-local-db-backend' + SUP ds-cfg-backend + STRUCTURAL + MUST ds-cfg-db-directory + MAY ( ds-cfg-index-entry-limit $ + ds-cfg-preload-time-limit $ + ds-cfg-import-thread-count $ + ds-cfg-import-queue-size $ + ds-cfg-entries-compressed $ + ds-cfg-db-directory-permissions $ + ds-cfg-db-cache-percent $ + ds-cfg-db-cache-size $ + ds-cfg-db-txn-no-sync $ + ds-cfg-db-txn-write-no-sync $ + ds-cfg-db-run-cleaner $ + ds-cfg-db-cleaner-min-utilization $ + ds-cfg-db-evictor-lru-only $ + ds-cfg-db-evictor-core-threads $ + ds-cfg-db-evictor-max-threads $ + ds-cfg-db-evictor-keep-alive $ + ds-cfg-db-evictor-nodes-per-scan $ + ds-cfg-db-log-file-max $ + ds-cfg-db-log-filecache-size $ + ds-cfg-db-logging-file-handler-on $ + ds-cfg-db-logging-level $ + ds-cfg-db-checkpointer-bytes-interval $ + ds-cfg-db-checkpointer-wakeup-interval $ + ds-cfg-db-num-lock-tables $ + ds-cfg-db-num-cleaner-threads $ + ds-cfg-compact-encoding $ + ds-cfg-je-property $ + ds-cfg-disk-full-threshold $ + ds-cfg-disk-low-threshold $ + ds-cfg-index-filter-analyzer-enabled $ + ds-cfg-index-filter-analyzer-max-filters $ + ds-cfg-subordinate-indexes-enabled ) + X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.7 + NAME 'ds-cfg-local-db-index' + SUP top + STRUCTURAL + MUST ( ds-cfg-attribute $ + ds-cfg-index-type ) + MAY ( ds-cfg-index-entry-limit $ + ds-cfg-substring-length $ + ds-cfg-index-extensible-matching-rule ) + X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.8 + NAME 'ds-cfg-schema-backend' + SUP ds-cfg-backend + STRUCTURAL + MAY ( ds-cfg-schema-entry-dn $ + ds-cfg-show-all-attributes ) + X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.9 + NAME 'ds-cfg-task-backend' + SUP ds-cfg-backend + STRUCTURAL + MAY ( ds-cfg-task-backing-file $ + ds-cfg-task-retention-time $ + ds-cfg-notification-sender-address ) + X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.10 + NAME 'ds-cfg-branch' + SUP top + STRUCTURAL + MUST cn + X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.11 + NAME 'ds-cfg-certificate-mapper' + SUP top + STRUCTURAL + MUST ( cn $ + ds-cfg-java-class $ + ds-cfg-enabled ) + X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.12 + NAME 'ds-cfg-connection-handler' + SUP top + STRUCTURAL + MUST ( cn $ + ds-cfg-java-class $ + ds-cfg-enabled ) + MAY ( ds-cfg-allowed-client $ ds-cfg-denied-client ) X-ORIGIN 'OpenDS Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.13 @@ -2707,6 +3909,32 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.13 ds-cfg-max-blocked-write-time-limit $ ds-cfg-buffer-size ) X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.15 + NAME 'ds-cfg-http-connection-handler' + SUP ds-cfg-connection-handler + STRUCTURAL + MUST ds-cfg-listen-port + MAY ( ds-cfg-listen-address $ + ds-cfg-keep-stats $ + ds-cfg-use-tcp-keep-alive $ + ds-cfg-use-tcp-no-delay $ + ds-cfg-allow-tcp-reuse-address $ + ds-cfg-max-request-size $ + ds-cfg-num-request-handlers $ + ds-cfg-use-ssl $ + ds-cfg-ssl-client-auth-policy $ + ds-cfg-ssl-cert-nickname $ + ds-cfg-accept-backlog $ + ds-cfg-key-manager-provider $ + ds-cfg-trust-manager-provider $ + ds-cfg-ssl-protocol $ + ds-cfg-ssl-cipher-suite $ + ds-cfg-max-blocked-write-time-limit $ + ds-cfg-buffer-size $ + ds-cfg-config-file $ + ds-cfg-authentication-required $ + ds-cfg-max-concurrent-ops-per-connection ) + X-ORIGIN 'OpenDJ Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.14 NAME 'ds-cfg-entry-cache' SUP top @@ -2782,9 +4010,15 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.22 NAME 'ds-cfg-access-log-publisher' SUP ds-cfg-log-publisher STRUCTURAL - MAY ( ds-cfg-suppress-internal-operations $ + MAY ( ds-cfg-filtering-policy $ + ds-cfg-suppress-internal-operations $ ds-cfg-suppress-synchronization-operations ) X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.16 + NAME 'ds-cfg-http-access-log-publisher' + SUP ds-cfg-log-publisher + STRUCTURAL + X-ORIGIN 'OpenDJ Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.23 NAME 'ds-cfg-error-log-publisher' SUP ds-cfg-log-publisher @@ -2817,8 +4051,29 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.25 ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ - ds-cfg-queue-size ) + ds-cfg-queue-size $ + ds-cfg-log-format $ + ds-cfg-log-record-time-format $ + ds-cfg-log-control-oids ) X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.17 + NAME 'ds-cfg-file-based-http-access-log-publisher' + SUP ds-cfg-http-access-log-publisher + STRUCTURAL + MUST ( ds-cfg-log-file $ + ds-cfg-asynchronous $ + ds-cfg-log-file-permissions ) + MAY ( ds-cfg-rotation-policy $ + ds-cfg-rotation-action $ + ds-cfg-retention-policy $ + ds-cfg-time-interval $ + ds-cfg-buffer-size $ + ds-cfg-auto-flush $ + ds-cfg-append $ + ds-cfg-queue-size $ + ds-cfg-log-format $ + ds-cfg-log-record-time-format ) + X-ORIGIN 'OpenDJ Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.26 NAME 'ds-cfg-file-based-debug-log-publisher' SUP ds-cfg-debug-log-publisher @@ -2959,7 +4214,8 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.39 ds-cfg-etime-resolution $ ds-cfg-entry-cache-preload $ ds-cfg-max-allowed-client-connections $ - ds-cfg-max-psearches ) + ds-cfg-max-psearches $ + ds-cfg-max-internal-buffer-size ) X-ORIGIN 'OpenDS Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.40 NAME 'ds-cfg-root-dn-user' @@ -3128,7 +4384,8 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.57 ds-cfg-conflicts-historical-purge-delay $ ds-cfg-changetime-heartbeat-interval $ ds-cfg-log-changenumber $ - ds-cfg-initialization-window-size ) + ds-cfg-initialization-window-size $ + ds-cfg-source-address ) X-ORIGIN 'OpenDS Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.58 NAME 'ds-cfg-length-based-password-validator' @@ -3152,12 +4409,18 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.60 MUST ( ds-cfg-password-character-set $ ds-cfg-password-format ) X-ORIGIN 'OpenDS Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.3 + NAME 'ds-cfg-authentication-policy' + SUP top + STRUCTURAL + MUST ( cn ) + MAY ( ds-cfg-java-class ) + X-ORIGIN 'OpenDJ Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.61 NAME 'ds-cfg-password-policy' - SUP top + SUP ds-cfg-authentication-policy STRUCTURAL - MUST ( cn $ - ds-cfg-password-attribute $ + MUST ( ds-cfg-password-attribute $ ds-cfg-default-password-storage-scheme ) MAY ( ds-cfg-account-status-notification-handler $ ds-cfg-allow-expired-password-changes $ @@ -3244,7 +4507,8 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.64 ds-cfg-assured-timeout $ ds-cfg-degraded-status-threshold $ ds-cfg-weight $ - ds-cfg-monitoring-period) + ds-cfg-monitoring-period $ + ds-cfg-source-address ) X-ORIGIN 'OpenDS Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.65 NAME 'ds-backup-directory' @@ -3461,6 +4725,7 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.90 ds-cfg-enabled $ ds-cfg-attribute-type ) MAY ( ds-cfg-base-dn $ + ds-cfg-scope $ ds-cfg-group-dn $ ds-cfg-filter $ ds-cfg-conflict-behavior ) @@ -3487,7 +4752,8 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.93 NAME 'ds-cfg-replication-synchronization-provider' SUP ds-cfg-synchronization-provider STRUCTURAL - MAY ( ds-cfg-num-update-replay-threads ) + MAY ( ds-cfg-num-update-replay-threads $ + ds-cfg-connection-timeout ) X-ORIGIN 'OpenDS Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.94 NAME 'ds-cfg-dictionary-password-validator' @@ -3496,20 +4762,26 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.94 MUST ( ds-cfg-dictionary-file $ ds-cfg-case-sensitive-validation $ ds-cfg-test-reversed-password ) + MAY ( ds-cfg-check-substrings $ + ds-cfg-min-substring-length ) X-ORIGIN 'OpenDS Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.95 NAME 'ds-cfg-attribute-value-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ds-cfg-test-reversed-password - MAY ds-cfg-match-attribute + MAY ( ds-cfg-match-attribute $ + ds-cfg-check-substrings $ + ds-cfg-min-substring-length ) X-ORIGIN 'OpenDS Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.96 NAME 'ds-cfg-character-set-password-validator' SUP ds-cfg-password-validator STRUCTURAL - MUST ( ds-cfg-character-set $ - ds-cfg-allow-unclassified-characters ) + MUST ds-cfg-allow-unclassified-characters + MAY ( ds-cfg-min-character-sets $ + ds-cfg-character-set $ + ds-cfg-character-set-ranges ) X-ORIGIN 'OpenDS Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.97 NAME 'ds-task-rebuild' @@ -3517,7 +4789,7 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.97 STRUCTURAL MUST ( ds-task-rebuild-base-dn $ ds-task-rebuild-index ) - MAY ds-task-rebuild-tmp-directory + MAY ( ds-task-rebuild-tmp-directory $ ds-task-rebuild-index-clear-degraded-state ) X-ORIGIN 'OpenDS Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.98 NAME 'ds-virtual-static-group' @@ -3738,7 +5010,10 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.119 MUST ds-cfg-attribute-type MAY ( ds-cfg-base-dn $ ds-cfg-update-interval $ - ds-cfg-log-file ) + ds-cfg-log-file $ + ds-cfg-check-references $ + ds-cfg-check-references-filter-criteria $ + ds-cfg-check-references-scope-criteria ) X-ORIGIN 'OpenDS Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.120 NAME 'ds-cfg-smtp-account-status-notification-handler' @@ -4134,7 +5409,9 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.183 ds-cfg-key-manager-provider $ ds-cfg-trust-manager-provider $ ds-cfg-ssl-cert-nickname ) - MAY ( ds-cfg-listen-address ) + MAY ( ds-cfg-listen-address $ + ds-cfg-ssl-cipher-suite $ + ds-cfg-ssl-protocol ) X-ORIGIN 'OpenDS Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.199 NAME 'ds-cfg-qos-policy' @@ -4185,33 +5462,6 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.195 MUST ( ds-cfg-matching-rule-type $ ds-cfg-collation ) X-ORIGIN 'OpenDS Directory Server' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.196 - NAME 'ds-cfg-ndb-backend' - SUP ds-cfg-backend - STRUCTURAL - MUST ( ds-cfg-ndb-connect-string $ - ds-cfg-sql-connect-string $ - ds-cfg-ndb-dbname ) - MAY ( ds-cfg-sql-user $ - ds-cfg-sql-passwd $ - ds-cfg-ndb-attr-len $ - ds-cfg-ndb-attr-blob $ - ds-cfg-ndb-thread-count $ - ds-cfg-ndb-num-connections $ - ds-cfg-deadlock-retry-limit $ - ds-cfg-import-thread-count $ - ds-cfg-import-queue-size $ - ds-cfg-index-entry-limit ) - X-ORIGIN 'OpenDS Directory Server' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.197 - NAME 'ds-cfg-ndb-index' - SUP top - STRUCTURAL - MUST ( ds-cfg-attribute ) - MAY ( ds-cfg-index-type $ - ds-cfg-index-entry-limit $ - ds-cfg-substring-length ) - X-ORIGIN 'OpenDS Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.950 NAME 'ds-mon-branch' SUP top @@ -4255,7 +5505,7 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.234 STRUCTURAL MUST ( cn $ ds-cfg-enabled ) - MAY ( ds-cfg-ecl-include ) + MAY ( ds-cfg-ecl-include $ ds-cfg-ecl-include-for-deletes ) X-ORIGIN 'OpenDS Directory Server' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.235 NAME 'ds-cfg-collective-attribute-subentries-virtual-attribute' @@ -4278,4 +5528,166 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.237 ds-task-purge-conflicts-historical-purge-completed-in-time $ ds-task-purge-conflicts-historical-purged-values-count ) X-ORIGIN 'OpenDS Directory Server' ) - +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.2 + NAME 'ds-cfg-samba-password-plugin' + SUP ds-cfg-plugin + STRUCTURAL + MUST ( ds-cfg-pwd-sync-policy ) + MAY ( ds-cfg-samba-administrator-dn ) + X-ORIGIN 'OpenDJ Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.4 + NAME 'ds-cfg-ldap-pass-through-authentication-policy' + SUP ds-cfg-authentication-policy + STRUCTURAL + MUST ( ds-cfg-java-class $ + ds-cfg-primary-remote-ldap-server $ + ds-cfg-mapping-policy $ + ds-cfg-use-password-caching ) + MAY ( ds-cfg-secondary-remote-ldap-server $ + ds-cfg-mapped-attribute $ + ds-cfg-mapped-search-bind-dn $ + ds-cfg-mapped-search-bind-password $ + ds-cfg-mapped-search-bind-password-property $ + ds-cfg-mapped-search-bind-password-environment-variable $ + ds-cfg-mapped-search-bind-password-file $ + ds-cfg-mapped-search-base-dn $ + ds-cfg-connection-timeout $ + ds-cfg-trust-manager-provider $ + ds-cfg-use-ssl $ + ds-cfg-use-tcp-keep-alive $ + ds-cfg-use-tcp-no-delay $ + ds-cfg-ssl-protocol $ + ds-cfg-ssl-cipher-suite $ + ds-cfg-cached-password-storage-scheme $ + ds-cfg-cached-password-ttl $ + ds-cfg-source-address ) + X-ORIGIN 'OpenDJ Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.5 + NAME 'ds-cfg-attribute-cleanup-plugin' + SUP ds-cfg-plugin + STRUCTURAL + MAY ( ds-cfg-remove-inbound-attributes $ + ds-cfg-rename-inbound-attributes ) + X-ORIGIN 'OpenDJ Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.6 + NAME 'ds-cfg-file-based-audit-log-publisher' + SUP ds-cfg-access-log-publisher + STRUCTURAL + MUST ( ds-cfg-log-file $ + ds-cfg-asynchronous $ + ds-cfg-log-file-permissions ) + MAY ( ds-cfg-rotation-policy $ + ds-cfg-rotation-action $ + ds-cfg-retention-policy $ + ds-cfg-time-interval $ + ds-cfg-buffer-size $ + ds-cfg-auto-flush $ + ds-cfg-append $ + ds-cfg-queue-size ) + X-ORIGIN 'OpenDJ Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.7 + NAME 'ds-cfg-access-log-filtering-criteria' + SUP top + STRUCTURAL + MUST ( cn ) + MAY ( ds-cfg-log-record-type $ + ds-cfg-connection-client-address-equal-to $ + ds-cfg-connection-client-address-not-equal-to $ + ds-cfg-connection-protocol-equal-to $ + ds-cfg-connection-port-equal-to $ + ds-cfg-user-dn-equal-to $ + ds-cfg-user-dn-not-equal-to $ + ds-cfg-user-is-member-of $ + ds-cfg-user-is-not-member-of $ + ds-cfg-request-target-dn-equal-to $ + ds-cfg-request-target-dn-not-equal-to $ + ds-cfg-response-result-code-equal-to $ + ds-cfg-response-result-code-not-equal-to $ + ds-cfg-response-etime-greater-than $ + ds-cfg-response-etime-less-than $ + ds-cfg-search-response-nentries-greater-than $ + ds-cfg-search-response-nentries-less-than $ + ds-cfg-search-response-is-indexed ) + X-ORIGIN 'OpenDJ Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.8 + NAME 'ds-cfg-entity-tag-virtual-attribute' + SUP ds-cfg-virtual-attribute + STRUCTURAL + MAY ( ds-cfg-checksum-algorithm $ + ds-cfg-excluded-attribute ) + X-ORIGIN 'OpenDJ Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.9 + NAME 'ds-cfg-password-expiration-time-virtual-attribute' + SUP ds-cfg-virtual-attribute + STRUCTURAL + X-ORIGIN 'OpenDJ Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.10 + NAME 'ds-cfg-certificate-attribute-syntax' + SUP ds-cfg-attribute-syntax + STRUCTURAL + MAY ds-cfg-strict-format + X-ORIGIN 'OpenDJ Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.11 + NAME 'ds-cfg-jpeg-attribute-syntax' + SUP ds-cfg-attribute-syntax + STRUCTURAL + MAY ds-cfg-strict-format + X-ORIGIN 'OpenDJ Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.12 + NAME 'ds-cfg-country-string-attribute-syntax' + SUP ds-cfg-attribute-syntax + STRUCTURAL + MAY ds-cfg-strict-format + X-ORIGIN 'OpenDJ Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.13 + NAME 'ds-connectionhandler-statistics-monitor-entry' + SUP ds-monitor-entry + STRUCTURAL + MAY ( connectionsEstablished $ connectionsClosed $ bytesRead $ + bytesWritten $ ldapMessagesRead $ ldapMessagesWritten $ + operationsAbandoned $ operationsInitiated $ operationsCompleted $ + abandonRequests $ addRequests $ addResponses $ bindRequests $ + bindResponses $ compareRequests $ compareResponses $ deleteRequests $ + deleteResponses $ extendedRequests $ extendedResponses $ + modifyRequests $ modifyResponses $ modifyDNRequests $ modifyDNResponses $ + searchRequests $ searchOneRequests $ searchSubRequests $ + searchResultEntries $ searchResultReferences $ searchResultsDone $ + unbindRequests $ ds-mon-add-operations-total-count $ + ds-mon-resident-time-add-operations-total-time $ + ds-mon-search-operations-total-count $ + ds-mon-resident-time-search-operations-total-time $ + ds-mon-bind-operations-total-count $ + ds-mon-resident-time-bind-operations-total-time $ + ds-mon-unbind-operations-total-count $ + ds-mon-resident-time-unbind-operations-total-time $ + ds-mon-compare-operations-total-count $ + ds-mon-resident-time-compare-operations-total-time $ + ds-mon-delete-operations-total-count $ + ds-mon-resident-time-delete-operations-total-time $ + ds-mon-mod-operations-total-count $ + ds-mon-resident-time-mod-operations-total-time $ + ds-mon-moddn-operations-total-count $ + ds-mon-resident-time-moddn-operations-total-time $ + ds-mon-abandon-operations-total-count $ + ds-mon-resident-time-abandon-operations-total-time $ + ds-mon-extended-operations-total-count $ + ds-mon-resident-time-extended-operations-total-time $ + ds-mon-http-requests-total-count $ + ds-mon-resident-time-http-requests-total-time $ + ds-mon-http-delete-requests-total-count $ + ds-mon-resident-time-http-delete-requests-total-time $ + ds-mon-http-get-requests-total-count $ + ds-mon-resident-time-http-get-requests-total-time $ + ds-mon-http-patch-requests-total-count $ + ds-mon-resident-time-http-patch-requests-total-time $ + ds-mon-http-post-requests-total-count $ + ds-mon-resident-time-http-post-requests-total-time $ + ds-mon-http-put-requests-total-count $ + ds-mon-resident-time-http-put-requests-total-time ) + X-ORIGIN 'OpenDJ Directory Server' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.14 + NAME 'ds-cfg-pbkdf2-password-storage-scheme' + SUP ds-cfg-password-storage-scheme + STRUCTURAL + MAY ds-cfg-pbkdf2-iterations + X-ORIGIN 'OpenDJ Directory Server' ) diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/03-changelog.ldif b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/03-changelog.ldif index f1c469ad00d..e5a2978ed32 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/03-changelog.ldif +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/03-changelog.ldif @@ -65,7 +65,7 @@ attributeTypes: ( 2.16.840.1.113730.3.1.77 NAME 'changeTime' DESC 'the time when the change was processed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE - X-ORIGIN 'Sun DSEE6 Directory Server' ) + X-ORIGIN 'Sun Directory Server' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.9.1.724 NAME 'replicaIdentifier' DESC 'the OpenDS replication domain server identifier for the change' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 @@ -78,7 +78,8 @@ attributeTypes: ( 1.3.6.1.4.1.42.2.27.9.1.725 NAME 'replicationCSN' SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.590 NAME 'targetEntryUUID' +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.590 + NAME ( 'targetEntryUUID' 'targetUniqueID' ) DESC 'The OpenDS unique id of the entry targeted by the change' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE @@ -96,11 +97,16 @@ attributeTypes: ( 1.3.6.1.4.1.26027.1.1.604 NAME 'changeInitiatorsName' SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.6 NAME 'includedAttributes' + DESC 'A set of attributes which were part of the entry before the changes were applied' + SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 + SINGLE-VALUE + USAGE directoryOperation + X-ORIGIN 'OpenDJ Directory Server' ) objectClasses: ( 2.16.840.1.113730.3.2.1 NAME 'changeLogEntry' SUP top - STRUCTURAL + STRUCTURAL MUST ( changeNumber $ targetDN $ changeType $ changeTime ) - MAY ( changes $ newRDN $ deleteOldRDN $ newSuperior $ replicaIdentifier - $ replicationCSN $ targetEntryUUID $ changeLogCookie ) + MAY ( changes $ newRDN $ deleteOldRDN $ newSuperior ) X-ORIGIN 'draft-good-ldap-changelog' ) -objectClasses: ( 1.2.840.113556.1.3.23 NAME 'container' SUP top STRUCTURAL - MUST cn X-ORIGIN 'Microsoft Active Directory' ) \ No newline at end of file +objectClasses: ( 1.2.840.113556.1.3.23 NAME 'container' SUP top STRUCTURAL + MUST cn X-ORIGIN 'Microsoft Active Directory' ) diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/03-pwpolicyextension.ldif b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/03-pwpolicyextension.ldif new file mode 100644 index 00000000000..35250d4b8d1 --- /dev/null +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/03-pwpolicyextension.ldif @@ -0,0 +1,33 @@ +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License, Version 1.0 only +# (the "License"). You may not use this file except in compliance +# with the License. +# +# You can obtain a copy of the license at legal-notices/CDDLv1_0.txt +# or http://forgerock.org/license/CDDLv1.0.html. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at legal-notices/CDDLv1_0.txt. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: +# Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# +# +# Copyright 2014 ForgeRock AS. +# +# +# This file contains the attribute type and objectclass definitions for use +# with the Directory Server configuration. +dn: cn=schema +objectClass: top +objectClass: ldapSubentry +objectClass: subschema +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.18 NAME 'pwdValidatorPolicy' SUP top AUXILIARY + MUST (ds-cfg-password-validator) X-ORIGIN 'OpenDJ Directory Server' ) diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/05-rfc4876.ldif b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/05-rfc4876.ldif index 0c3fc0235f5..9ad05fa2aaf 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/05-rfc4876.ldif +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/05-rfc4876.ldif @@ -32,7 +32,7 @@ # objectClass: top # objectClass: organizationalUnit # ou: profile -# +# # dn: cn=Solaris,ou=profile,dc=example,dc=com # objectClass: top # objectClass: DUAConfigProfile @@ -93,7 +93,7 @@ attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.10 NAME 'credentialLevel' 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 4876' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.11 NAME 'objectclassMap' DESC 'Object class mappings used, required, or supported by an agent or - service' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 + service' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 4876' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.12 NAME 'defaultSearchScope' DESC 'Default scope used when performing a search' EQUALITY @@ -124,4 +124,4 @@ objectClasses: ( 1.3.6.1.4.1.11.1.3.1.2.5 NAME 'DUAConfigProfile' credentialLevel $ authenticationMethod $ followReferrals $ dereferenceAliases $ serviceSearchDescriptor $ serviceCredentialLevel $ serviceAuthenticationMethod $ objectclassMap $ attributeMap $ profileTTL ) - X-ORIGIN 'RFC 4876' ) + X-ORIGIN 'RFC 4876' ) diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/05-samba.ldif b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/05-samba.ldif new file mode 100644 index 00000000000..a52643970b1 --- /dev/null +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/05-samba.ldif @@ -0,0 +1,88 @@ +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License, Version 1.0 only +# (the "License"). You may not use this file except in compliance +# with the License. +# +# You can obtain a copy of the license at +# trunk/opends/resource/legal-notices/OpenDS.LICENSE +# or https://OpenDS.dev.java.net/OpenDS.LICENSE. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at +# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, +# add the following below this CDDL HEADER, with the fields enclosed +# by brackets "[]" replaced with your own identifying information: +# Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# +# +# Copyright 2011 profiq s.r.o. +# Portions copyright 2011 ForgeRock AS. +# +# +dn: cn=schema +objectClass: top +objectClass: ldapSubentry +objectClass: subschema +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.24 NAME 'sambaLMPassword' DESC 'LanManager Password' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{32} SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.25 NAME 'sambaNTPassword' DESC 'MD4 hash of the unicode password' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{32} SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.26 NAME 'sambaAcctFlags' DESC 'Account Flags' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{16} SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.27 NAME 'sambaPwdLastSet' DESC 'Timestamp of the last password update' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.28 NAME 'sambaPwdCanChange' DESC 'Timestamp of when the user is allowed to update the password' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.29 NAME 'sambaPwdMustChange' DESC 'Timestamp of when the password will expire' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.30 NAME 'sambaLogonTime' DESC 'Timestamp of last logon' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.31 NAME 'sambaLogoffTime' DESC 'Timestamp of last logoff' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.32 NAME 'sambaKickoffTime' DESC 'Timestamp of when the user will be logged off automatically' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.48 NAME 'sambaBadPasswordCount' DESC 'Bad password attempt count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.49 NAME 'sambaBadPasswordTime' DESC 'Time of the last bad password attempt' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.55 NAME 'sambaLogonHours' DESC 'Logon Hours' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.33 NAME 'sambaHomeDrive' DESC 'Driver letter of home directory mapping' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{4} SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.34 NAME 'sambaLogonScript' DESC 'Logon script path' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.35 NAME 'sambaProfilePath' DESC 'Roaming profile path' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.36 NAME 'sambaUserWorkstations' DESC 'List of user workstations the user is allowed to logon to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.37 NAME 'sambaHomePath' DESC 'Home directory UNC path' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.38 NAME 'sambaDomainName' DESC 'Windows NT domain to which the user belongs' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.47 NAME 'sambaMungedDial' DESC 'Base64 encoded user parameter string' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{1050} ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.54 NAME 'sambaPasswordHistory' DESC 'Concatenated MD4 hashes of the unicode passwords used on this account' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{1024} ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.20 NAME 'sambaSID' DESC 'Security ID' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{64} SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.23 NAME 'sambaPrimaryGroupSID' DESC 'Primary Group Security ID' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{64} SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.51 NAME 'sambaSIDList' DESC 'Security ID List' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{64} ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.19 NAME 'sambaGroupType' DESC 'NT Group Type' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.21 NAME 'sambaNextUserRid' DESC 'Next NT rid to give our for users' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.22 NAME 'sambaNextGroupRid' DESC 'Next NT rid to give out for groups' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.39 NAME 'sambaNextRid' DESC 'Next NT rid to give out for anything' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.40 NAME 'sambaAlgorithmicRidBase' DESC 'Base at which the samba RID generation algorithm should operate' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.41 NAME 'sambaShareName' DESC 'Share Name' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.42 NAME 'sambaOptionName' DESC 'Option Name' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.43 NAME 'sambaBoolOption' DESC 'A boolean option' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.44 NAME 'sambaIntegerOption' DESC 'An integer option' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.45 NAME 'sambaStringOption' DESC 'A string option' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.46 NAME 'sambaStringListOption' DESC 'A string list option' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.52 NAME 'sambaPrivilegeList' DESC 'Privileges List' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{64} ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.53 NAME 'sambaTrustFlags' DESC 'Trust Password Flags' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.58 NAME 'sambaMinPwdLength' DESC 'Minimal password length (default: 5)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.59 NAME 'sambaPwdHistoryLength' DESC 'Length of Password History Entries (default: 0 => off)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.60 NAME 'sambaLogonToChgPwd' DESC 'Force Users to logon for password change (default: 0 => off, 2 => on)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.61 NAME 'sambaMaxPwdAge' DESC 'Maximum password age, in seconds (default: -1 => never expire passwords)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.62 NAME 'sambaMinPwdAge' DESC 'Minimum password age, in seconds (default: 0 => allow immediate password change)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.63 NAME 'sambaLockoutDuration' DESC 'Lockout duration in minutes (default: 30, -1 => forever)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.64 NAME 'sambaLockoutObservationWindow' DESC 'Reset time after lockout in minutes (default: 30)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.65 NAME 'sambaLockoutThreshold' DESC 'Lockout users after bad logon attempts (default: 0 => off)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.66 NAME 'sambaForceLogoff' DESC 'Disconnect Users outside logon hours (default: -1 => off, 0 => on)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.67 NAME 'sambaRefuseMachinePwdChange' DESC 'Allow Machine Password changes (default: 0 => off)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.6 NAME 'sambaSamAccount' DESC 'Samba 3.0 Auxilary SAM Account' SUP top AUXILIARY MUST ( uid $ sambaSID ) MAY ( cn $ sambaLMPassword $ sambaNTPassword $ sambaPwdLastSet $ sambaLogonTime $ sambaLogoffTime $ sambaKickoffTime $ sambaPwdCanChange $ sambaPwdMustChange $ sambaAcctFlags $ displayName $ sambaHomePath $ sambaHomeDrive $ sambaLogonScript $ sambaProfilePath $ description $ sambaUserWorkstations $ sambaPrimaryGroupSID $ sambaDomainName $ sambaMungedDial $ sambaBadPasswordCount $ sambaBadPasswordTime $ sambaPasswordHistory $ sambaLogonHours)) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.4 NAME 'sambaGroupMapping' DESC 'Samba Group Mapping' SUP top AUXILIARY MUST ( gidNumber $ sambaSID $ sambaGroupType ) MAY ( displayName $ description $ sambaSIDList)) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.14 NAME 'sambaTrustPassword' DESC 'Samba Trust Password' SUP top STRUCTURAL MUST ( sambaDomainName $ sambaNTPassword $ sambaTrustFlags ) MAY ( sambaSID $ sambaPwdLastSet )) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.5 NAME 'sambaDomain' DESC 'Samba Domain Information' SUP top STRUCTURAL MUST ( sambaDomainName $ sambaSID ) MAY ( sambaNextRid $ sambaNextGroupRid $ sambaNextUserRid $ sambaAlgorithmicRidBase $ sambaMinPwdLength $ sambaPwdHistoryLength $ sambaLogonToChgPwd $ sambaMaxPwdAge $ sambaMinPwdAge $ sambaLockoutDuration $ sambaLockoutObservationWindow $ sambaLockoutThreshold $ sambaForceLogoff $ sambaRefuseMachinePwdChange )) +objectClasses: ( 1.3.6.1.4.1.7165.1.2.2.7 NAME 'sambaUnixIdPool' DESC 'Pool for allocating UNIX uids/gids' SUP top AUXILIARY MUST ( uidNumber $ gidNumber )) +objectClasses: ( 1.3.6.1.4.1.7165.1.2.2.8 NAME 'sambaIdmapEntry' DESC 'Mapping from a SID to an ID' SUP top AUXILIARY MUST ( sambaSID ) MAY ( uidNumber $ gidNumber )) +objectClasses: ( 1.3.6.1.4.1.7165.1.2.2.9 NAME 'sambaSidEntry' DESC 'Structural Class for a SID' SUP top STRUCTURAL MUST ( sambaSID )) +objectClasses: ( 1.3.6.1.4.1.7165.1.2.2.10 NAME 'sambaConfig' DESC 'Samba Configuration Section' SUP top AUXILIARY MAY ( description )) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.11 NAME 'sambaShare' DESC 'Samba Share Section' SUP top STRUCTURAL MUST ( sambaShareName ) MAY ( description )) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.12 NAME 'sambaConfigOption' DESC 'Samba Configuration Option' SUP top STRUCTURAL MUST ( sambaOptionName ) MAY ( sambaBoolOption $ sambaIntegerOption $ sambaStringOption $ sambaStringListoption $ description )) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.13 NAME 'sambaPrivilege' DESC 'Samba Privilege' SUP top AUXILIARY MUST ( sambaSID ) MAY ( sambaPrivilegeList )) diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/05-solaris.ldif b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/05-solaris.ldif index da2b50202af..01b851434b5 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/05-solaris.ldif +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/schema/05-solaris.ldif @@ -31,16 +31,16 @@ dn: cn=schema objectClass: top objectClass: ldapSubentry objectClass: subschema -attributetypes: ( 1.3.6.1.4.1.42.2.27.1.1.12 NAME 'nisNetIdUser' +attributeTypes: ( 1.3.6.1.4.1.42.2.27.1.1.12 NAME 'nisNetIdUser' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' ) -attributetypes: ( 1.3.6.1.4.1.42.2.27.1.1.13 NAME 'nisNetIdGroup' +attributeTypes: ( 1.3.6.1.4.1.42.2.27.1.1.13 NAME 'nisNetIdGroup' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' ) -attributetypes: ( 1.3.6.1.4.1.42.2.27.1.1.14 NAME 'nisNetIdHost' +attributeTypes: ( 1.3.6.1.4.1.42.2.27.1.1.14 NAME 'nisNetIdHost' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' ) -attributetypes: ( 1.3.6.1.4.1.42.2.27.2.1.15 NAME 'rfc822mailMember' +attributeTypes: ( 1.3.6.1.4.1.42.2.27.2.1.15 NAME 'rfc822mailMember' DESC 'rfc822 mail addresss of group member' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' ) -attributetypes: ( 2.16.840.1.113730.3.1.30 NAME 'mgrpRFC822MailMember' +attributeTypes: ( 2.16.840.1.113730.3.1.30 NAME 'mgrpRFC822MailMember' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Solaris Specific' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.1 NAME 'SolarisProjectID' DESC 'Unique ID for a Solaris Project entry' EQUALITY integerMatch SYNTAX @@ -160,33 +160,33 @@ attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.62 NAME 'winAccountName' DESC 'Windows user or group Name corresponding to a Unix user or group' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Solaris Specific' ) -attributetypes:( 1.3.6.1.4.1.42.2.27.5.1.63 NAME 'sun-printer-bsdaddr' +attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.63 NAME 'sun-printer-bsdaddr' DESC 'Sets the server, print queue destination name and whether the client generates protocol extensions. "Solaris" specifies a Solaris print server extension. The value is represented by the following value: server "," destination ", Solaris".' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'Solaris Specific' ) -attributetypes:( 1.3.6.1.4.1.42.2.27.5.1.64 NAME 'sun-printer-kvp' +attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.64 NAME 'sun-printer-kvp' DESC 'This attribute contains a set of key value pairs which may have meaning to the print subsystem or may be user defined. Each value is represented by the following: key "=" value.' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Solaris Specific' ) -attributetypes:( 1.3.6.1.4.1.42.2.27.5.1.67 NAME 'ipTnetTemplateName' +attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.67 NAME 'ipTnetTemplateName' DESC 'Trusted Solaris network template template_name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'Solaris Specific' ) -attributetypes:( 1.3.6.1.4.1.42.2.27.5.1.68 NAME 'ipTnetNumber' +attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.68 NAME 'ipTnetNumber' DESC 'Trusted Solaris network template ip_address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'Solaris Specific' ) -objectclasses: ( 1.3.6.1.4.1.42.2.27.1.2.5 NAME 'nisMailAlias' SUP top +objectClasses: ( 1.3.6.1.4.1.42.2.27.1.2.5 NAME 'nisMailAlias' SUP top MUST cn MAY rfc822mailMember X-ORIGIN 'Solaris Specific' ) -objectclasses: ( 1.3.6.1.4.1.42.2.27.1.2.6 NAME 'nisNetId' SUP top +objectClasses: ( 1.3.6.1.4.1.42.2.27.1.2.6 NAME 'nisNetId' SUP top MUST cn MAY ( nisNetIdUser $ nisNetIdGroup $ nisNetIdHost ) X-ORIGIN 'Solaris Specific' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.1 NAME 'SolarisProject' SUP top STRUCTURAL MUST ( SolarisProjectID $ SolarisProjectName ) MAY ( memberUid $ memberGid $ description $ SolarisProjectAttr ) X-ORIGIN 'Solaris Specific' ) -objectclasses: ( 1.3.6.1.4.1.42.2.27.5.2.2 NAME 'SolarisAuditUser' SUP top +objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.2 NAME 'SolarisAuditUser' SUP top AUXILIARY MAY ( SolarisAuditAlways $ SolarisAuditNever ) X-ORIGIN 'Solaris Specific' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.3 NAME 'SolarisUserAttr' @@ -217,19 +217,19 @@ objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.7 NAME 'SolarisNamingProfile' SolarisPreferredServer $ SolarisPreferredServerOnly $ SolarisCacheTTL $ SolarisSearchReferral $ SolarisBindTimeLimit ) X-ORIGIN 'Solaris Specific' ) -objectclasses: ( 2.16.840.1.113730.3.2.4 NAME 'mailGroup' SUP top +objectClasses: ( 2.16.840.1.113730.3.2.4 NAME 'mailGroup' SUP top STRUCTURAL MUST mail MAY ( cn $ mgrpRFC822MailMember ) X-ORIGIN 'Solaris Specific' ) -objectclasses: ( 1.3.6.1.4.1.42.2.27.5.2.14 NAME 'sunPrinter' +objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.14 NAME 'sunPrinter' DESC 'Sun printer information' SUP top AUXILIARY MUST printer-name MAY (sun-printer-bsdaddr $ sun-printer-kvp) X-ORIGIN 'Solaris Specific' ) -objectclasses: ( 1.3.6.1.4.1.42.2.27.5.2.12 NAME 'nisplusTimeZoneData' +objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.12 NAME 'nisplusTimeZoneData' DESC 'NIS+ timezone table data' SUP top STRUCTURAL MUST cn MAY ( nisplusTimeZone $ description ) X-ORIGIN 'Solaris Specific' ) -objectclasses: ( 1.3.6.1.4.1.42.2.27.5.2.8 NAME 'ipTnetTemplate' +objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.8 NAME 'ipTnetTemplate' DESC 'Object class for TSOL network templates' SUP top STRUCTURAL MUST ipTnetTemplateName MAY SolarisAttrKeyValue X-ORIGIN 'Solaris Specific' ) -objectclasses: ( 1.3.6.1.4.1.42.2.27.5.2.9 NAME 'ipTnetHost' +objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.9 NAME 'ipTnetHost' DESC 'Associates an IP address or wildcard with a TSOL template_name' SUP top AUXILIARY MUST ipTnetNumber X-ORIGIN 'Solaris Specific' ) diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/servicetag/opends.uuids.properties b/infra/test-util/src/main/resources/test-data/opendj.template/config/servicetag/opends.uuids.properties deleted file mode 100644 index 6ce68567a8d..00000000000 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/servicetag/opends.uuids.properties +++ /dev/null @@ -1,26 +0,0 @@ -# -# Copyright (c) 2010-2013 Evolveum -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -org.opends.server.servicetag.productname=OpenDS 2.4 -org.opends.server.servicetag.version=2.4 -org.opends.server.servicetag.uuid=urn:uuid:16cff1a9-f950-11de-a671-080020a9ed93 -org.opends.server.servicetag.parent=Unknown -org.opends.server.servicetag.parenturn=Unknown -org.opends.server.servicetag.vendor=Opends.org - - - - diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/snmp/security/opends-snmp.security b/infra/test-util/src/main/resources/test-data/opendj.template/config/snmp/security/opends-snmp.security deleted file mode 100644 index 0047eb062e8..00000000000 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/snmp/security/opends-snmp.security +++ /dev/null @@ -1,35 +0,0 @@ -# CDDL HEADER START -# -# The contents of this file are subject to the terms of the -# Common Development and Distribution License, Version 1.0 only -# (the "License"). You may not use this file except in compliance -# with the License. -# -# You can obtain a copy of the license at -# trunk/opends/resource/legal-notices/OpenDS.LICENSE -# or https://OpenDS.dev.java.net/OpenDS.LICENSE. -# See the License for the specific language governing permissions -# and limitations under the License. -# -# When distributing Covered Code, include this CDDL HEADER in each -# file and include the License file at -# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, -# add the following below this CDDL HEADER, with the fields enclosed -# by brackets "[]" replaced with your own identifying information: -# Portions Copyright [yyyy] [name of copyright owner] -# -# CDDL HEADER END -# -# Copyright 2008 Sun Microsystems, Inc. -# -# -localEngineID=0x8000002a017f000001000000a1 -localEngineBoots=0 - -# Admin User to use to add access controls for users -userEntry=localEngineID,snmpAdmin,null,usmHMACMD5AuthProtocol,passadmin - -# User to clone no read or write acess -userEntry=localEngineID,defaultUser,,usmHMACMD5AuthProtocol,password,,,3,true - - diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/tasks.ldif b/infra/test-util/src/main/resources/test-data/opendj.template/config/tasks.ldif index cd2bb98551a..99af8b0937b 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/tasks.ldif +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/tasks.ldif @@ -1,19 +1,3 @@ -# -# Copyright (c) 2010-2013 Evolveum -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - # This file contains the data used by the Directory Server task scheduler # backend. Do not edit this file directly, as there is a risk that those # changes will be lost. Scheduled and recurring task definitions should only @@ -38,30 +22,74 @@ dn: ds-task-id=dsreplication-reset-generation-id-1,cn=Scheduled Tasks,cn=Tasks objectClass: ds-task-reset-generation-id objectClass: ds-task objectClass: top -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="NOTICE" msgCount=0 msgID=9896349 message="Set Generation ID task dsreplication-reset-generation-id-1 started execution" -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="NOTICE" msgCount=1 msgID=9896350 message="Set Generation ID task dsreplication-reset-generation-id-1 finished execution" +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="NOTICE" msgCount=0 msgID=9896349 message="Set Generation ID task dsreplication-reset-generation-id-1 started execution" +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="NOTICE" msgCount=1 msgID=9896350 message="Set Generation ID task dsreplication-reset-generation-id-1 finished execution" ds-task-id: dsreplication-reset-generation-id-1 -ds-task-actual-start-time: 20110722074117Z +ds-task-actual-start-time: 20150306181510Z +ds-task-completion-time: 20150306181510Z ds-task-state: COMPLETED_SUCCESSFULLY -ds-task-completion-time: 20110722074117Z ds-task-class-name: org.opends.server.tasks.SetGenerationIdTask ds-task-reset-generation-id-domain-base-dn: dc=example,dc=com creatorsName: cn=Directory Manager,cn=Root DNs,cn=config -createTimestamp: 20110722074117Z -entryUUID: 33f3db82-841d-4900-b3c6-1701f142aedd +createTimestamp: 20150306181510Z +entryUUID: 7368a070-50c1-408d-9540-e69ab901884f + +dn: ds-task-id=20150306191505950,cn=Scheduled Tasks,cn=Tasks +objectClass: ds-task-import +objectClass: ds-task +objectClass: top +ds-task-import-backend-id: userRoot +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=0 msgID=9896349 message="Import task 20150306191505950 started execution" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="INFORMATION" msgCount=1 msgID=9437595 message="Local DB backend userRoot does not specify the number of lock tables: defaulting to 97" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="INFORMATION" msgCount=2 msgID=9437594 message="Local DB backend userRoot does not specify the number of cleaner threads: defaulting to 24 threads" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=3 msgID=9896306 message="The backend userRoot is now taken offline" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=4 msgID=20381717 message="Installation Directory: /opt/opendj-2.6.2" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=5 msgID=20381719 message="Instance Directory: /opt/opendj-2.6.2" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=6 msgID=20381713 message="JVM Information: 1.7.0_75-b13 by Oracle Corporation, 64-bit architecture, 1862270976 bytes heap size" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=7 msgID=20381714 message="JVM Host: triglav.nlight.eu, running Linux 3.16.0-30-generic amd64, 8372068352 bytes physical memory size, number of processors available 4" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=8 msgID=20381715 message="JVM Arguments: "-Dorg.opends.server.scriptName=start-ds"" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=9 msgID=8847546 message="The amount of free memory available to the import task is 628135236 bytes. The number of phase one buffers required is 320 buffers" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=10 msgID=8847568 message="The amount memory available to the temporary DN cache environment is 414461121 bytes" +ds-task-log-message: [06/Mar/2015:19:15:06 +0100] severity="NOTICE" msgCount=11 msgID=8847545 message="Setting DB cache size to 8388608 bytes and phase one buffer size to to 512804 bytes" +ds-task-log-message: [06/Mar/2015:19:15:06 +0100] severity="NOTICE" msgCount=12 msgID=8847533 message="OpenDJ 2.6.2 starting import (build 20150306161742Z, R-1)" +ds-task-log-message: [06/Mar/2015:19:15:06 +0100] severity="NOTICE" msgCount=13 msgID=8847449 message="Import Thread Count: 8 threads" +ds-task-log-message: [06/Mar/2015:19:15:07 +0100] severity="NOTICE" msgCount=14 msgID=8847556 message="The available memory for phase two processing is 628135236 bytes. The read ahead cache size is 512804 bytes calculated using 25 buffers" +ds-task-log-message: [06/Mar/2015:19:15:07 +0100] severity="NOTICE" msgCount=15 msgID=8847569 message="Total import time was 0 seconds. Phase one processing completed in 0 seconds, phase two processing completed in 0 seconds" +ds-task-log-message: [06/Mar/2015:19:15:07 +0100] severity="NOTICE" msgCount=16 msgID=8847454 message="Processed 9 entries, imported 9, skipped 0, rejected 0 and migrated 0 in 0 seconds (average rate 15.0/sec)" +ds-task-log-message: [06/Mar/2015:19:15:07 +0100] severity="NOTICE" msgCount=17 msgID=8847536 message="Import LDIF environment close took 0 seconds" +ds-task-log-message: [06/Mar/2015:19:15:07 +0100] severity="INFORMATION" msgCount=18 msgID=9437595 message="Local DB backend userRoot does not specify the number of lock tables: defaulting to 97" +ds-task-log-message: [06/Mar/2015:19:15:07 +0100] severity="INFORMATION" msgCount=19 msgID=9437594 message="Local DB backend userRoot does not specify the number of cleaner threads: defaulting to 24 threads" +ds-task-log-message: [06/Mar/2015:19:15:08 +0100] severity="NOTICE" msgCount=20 msgID=8847402 message="The database backend userRoot containing 9 entries has started" +ds-task-log-message: [06/Mar/2015:19:15:08 +0100] severity="INFORMATION" msgCount=21 msgID=12582962 message="Added 1 Access Control Instruction (ACI) attribute types found in context "dc=example,dc=com" to the access control evaluation engine" +ds-task-log-message: [06/Mar/2015:19:15:08 +0100] severity="NOTICE" msgCount=22 msgID=8847447 message="Exported 9 entries and skipped 0 in 0 seconds (average rate 4500.0/sec)" +ds-task-log-message: [06/Mar/2015:19:15:08 +0100] severity="NOTICE" msgCount=23 msgID=15138878 message="Directory server DS(161) has connected to replication server RS(9664) for domain "dc=example,dc=com" at localhost/127.0.0.1:10989 with generation ID 135297" +ds-task-log-message: [06/Mar/2015:19:15:08 +0100] severity="NOTICE" msgCount=24 msgID=9896350 message="Import task 20150306191505950 finished execution" +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="MILD_ERROR" msgCount=25 msgID=14876751 message="The following error has been received : Domain dc=example,dc=com: the server with serverId=-2 is unreachable In Replication Server=Replication Server 10989 9664 unroutable message =DoneMsg Details:routing table is empty" +ds-task-import-thread-count: 0 +ds-task-id: 20150306191505950 +ds-task-actual-start-time: 20150306181505Z +ds-task-import-random-seed: 0 +ds-task-completion-time: 20150306181508Z +ds-task-state: COMPLETED_SUCCESSFULLY +ds-task-class-name: org.opends.server.tasks.ImportTask +ds-task-import-ldif-file: /home/semancik/projects/evolveum/midpoint/git/infra/test-util/src/main/resources/test-data/ldif/example.ldif +ds-task-import-clear-backend: true +creatorsName: cn=Directory Manager,cn=Root DNs,cn=config +createTimestamp: 20150306181505Z +entryUUID: 1e11d235-dc20-4374-87d9-bd6ee027d58c dn: ds-task-id=dsreplication-initialize1,cn=Scheduled Tasks,cn=Tasks objectClass: ds-task objectClass: ds-task-initialize-remote-replica objectClass: top -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="NOTICE" msgCount=0 msgID=9896349 message="Initialize Backend task dsreplication-initialize1 started execution" -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="NOTICE" msgCount=1 msgID=15139025 message="Starting total update: exporting 9 entries in domain "dc=example,dc=com" from this directory server DS(8631) to all remote directory servers" -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="NOTICE" msgCount=2 msgID=8847447 message="Exported 9 entries and skipped 0 in 0 seconds (average rate 4500.0/sec)" -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="NOTICE" msgCount=3 msgID=15139026 message="Finished total update: exported domain "dc=example,dc=com" from this directory server DS(8631) to all remote directory servers. " -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="NOTICE" msgCount=4 msgID=9896350 message="Initialize Backend task dsreplication-initialize1 finished execution" +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="NOTICE" msgCount=0 msgID=9896349 message="Initialize Backend task dsreplication-initialize1 started execution" +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="NOTICE" msgCount=1 msgID=15139025 message="Starting total update: exporting 9 entries in domain "dc=example,dc=com" from this directory server DS(161) to all remote directory servers" +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="NOTICE" msgCount=2 msgID=8847447 message="Exported 9 entries and skipped 0 in 0 seconds (average rate 4500.0/sec)" +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="NOTICE" msgCount=3 msgID=15139026 message="Finished total update: exported domain "dc=example,dc=com" from this directory server DS(161) to all remote directory servers. " +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="NOTICE" msgCount=4 msgID=9896350 message="Initialize Backend task dsreplication-initialize1 finished execution" ds-task-id: dsreplication-initialize1 -ds-task-actual-start-time: 20110722074117Z -ds-task-completion-time: 20110722074117Z +ds-task-actual-start-time: 20150306181510Z +ds-task-completion-time: 20150306181510Z ds-task-state: COMPLETED_SUCCESSFULLY ds-task-class-name: org.opends.server.tasks.InitializeTargetTask ds-task-initialize-replica-server-id: all @@ -69,51 +97,6 @@ ds-task-initialize-domain-dn: dc=example,dc=com ds-task-processed-entry-count: 0 ds-task-unprocessed-entry-count: 9 creatorsName: cn=Directory Manager,cn=Root DNs,cn=config -createTimestamp: 20110722074117Z -entryUUID: 00c191bf-1006-496d-ba9e-9ae5dc47ca6e - -dn: ds-task-id=20110722094113032,cn=Scheduled Tasks,cn=Tasks -objectClass: ds-task-import -objectClass: ds-task -objectClass: top -ds-task-import-backend-id: userRoot -ds-task-log-message: [22/Jul/2011:09:41:12 +0200] severity="NOTICE" msgCount=0 msgID=9896349 message="Import task 20110722094113032 started execution" -ds-task-log-message: [22/Jul/2011:09:41:12 +0200] severity="INFORMATION" msgCount=1 msgID=9437595 message="Local DB backend userRoot does not specify the number of lock tables: defaulting to 97" -ds-task-log-message: [22/Jul/2011:09:41:12 +0200] severity="INFORMATION" msgCount=2 msgID=9437594 message="Local DB backend userRoot does not specify the number of cleaner threads: defaulting to 24 threads" -ds-task-log-message: [22/Jul/2011:09:41:13 +0200] severity="NOTICE" msgCount=3 msgID=9896306 message="The backend userRoot is now taken offline" -ds-task-log-message: [22/Jul/2011:09:41:13 +0200] severity="NOTICE" msgCount=4 msgID=20381717 message="Installation Directory: /opt/OpenDJ-2.4.3" -ds-task-log-message: [22/Jul/2011:09:41:13 +0200] severity="NOTICE" msgCount=5 msgID=20381719 message="Instance Directory: /opt/OpenDJ-2.4.3" -ds-task-log-message: [22/Jul/2011:09:41:13 +0200] severity="NOTICE" msgCount=6 msgID=20381713 message="JVM Information: 1.6.0_26-b03 by Sun Microsystems Inc., 32-bit architecture, 913440768 bytes heap size" -ds-task-log-message: [22/Jul/2011:09:41:13 +0200] severity="NOTICE" msgCount=7 msgID=20381714 message="JVM Host: gildir, running Linux 2.6.32-32-generic-pae i386, 4109508608 bytes physical memory size, number of processors available 2" -ds-task-log-message: [22/Jul/2011:09:41:13 +0200] severity="NOTICE" msgCount=8 msgID=20381715 message="JVM Arguments: "-Dorg.opends.server.scriptName=start-ds"" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=9 msgID=8847546 message="The amount of free memory available to the import task is 59373649 bytes. The number of phase one buffers required is 160 buffers" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=10 msgID=8847568 message="The amount memory available to the temporary DN cache environment is 39078473 bytes" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=11 msgID=8847545 message="Setting DB cache size to 8388608 bytes and phase one buffer size to to 48928 bytes" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=12 msgID=8847533 message="OpenDJ 2.4.3 starting import (build 20110613203412Z, R6998)" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=13 msgID=8847449 message="Import Thread Count: 4 threads" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=14 msgID=8847556 message="The available memory for phase two processing is 59373649 bytes. The read ahead cache size is 48928 bytes calculated using 9 buffers" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=15 msgID=8847569 message="Total import time was 0 seconds. Phase one processing completed in 0 seconds, phase two processing completed in 0 seconds" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=16 msgID=8847454 message="Processed 9 entries, imported 9, skipped 0, rejected 0 and migrated 0 in 0 seconds (average rate 16.6/sec)" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="NOTICE" msgCount=17 msgID=8847536 message="Import LDIF environment close took 0 seconds" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="INFORMATION" msgCount=18 msgID=9437595 message="Local DB backend userRoot does not specify the number of lock tables: defaulting to 97" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="INFORMATION" msgCount=19 msgID=9437594 message="Local DB backend userRoot does not specify the number of cleaner threads: defaulting to 24 threads" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="NOTICE" msgCount=20 msgID=8847402 message="The database backend userRoot containing 9 entries has started" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="INFORMATION" msgCount=21 msgID=12582962 message="Added 1 Access Control Instruction (ACI) attribute types found in context "dc=example,dc=com" to the access control evaluation engine" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="NOTICE" msgCount=22 msgID=8847447 message="Exported 9 entries and skipped 0 in 0 seconds (average rate 818.2/sec)" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="NOTICE" msgCount=23 msgID=15138878 message="Directory server DS(8631) has connected to replication server RS(32548) for domain "dc=example,dc=com" at gildir/127.0.1.1:19989 with generation ID 135297" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="NOTICE" msgCount=24 msgID=9896350 message="Import task 20110722094113032 finished execution" -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="MILD_ERROR" msgCount=25 msgID=14876751 message="The following error has been received : Domain dc=example,dc=com: the server with serverId=-2 is unreachable In Replication Server=Replication Server 19989 32548 unroutable message =DoneMsg Details:routing table is empty" -ds-task-import-thread-count: 0 -ds-task-id: 20110722094113032 -ds-task-actual-start-time: 20110722074112Z -ds-task-import-reject-file: /tmp/rejects -ds-task-import-random-seed: 0 -ds-task-completion-time: 20110722074115Z -ds-task-state: COMPLETED_SUCCESSFULLY -ds-task-class-name: org.opends.server.tasks.ImportTask -ds-task-import-ldif-file: /home/semancik/projects/evolveum/midpoint/trunk/infra/test-util/src/main/resources/test-data/ldif/example.ldif -ds-task-import-clear-backend: true -creatorsName: cn=Directory Manager,cn=Root DNs,cn=config -createTimestamp: 20110722074112Z -entryUUID: 820aaf21-c248-463d-971e-e2737e8cd7ad +createTimestamp: 20150306181510Z +entryUUID: 4457c541-2665-411b-b2c3-35ede5a074e7 diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/tasks.ldif.save b/infra/test-util/src/main/resources/test-data/opendj.template/config/tasks.ldif.save index c268119e366..07906bf1b56 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/tasks.ldif.save +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/tasks.ldif.save @@ -24,26 +24,70 @@ objectClass: ds-task objectClass: top ds-task-state: RUNNING ds-task-class-name: org.opends.server.tasks.SetGenerationIdTask -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="NOTICE" msgCount=0 msgID=9896349 message="Set Generation ID task dsreplication-reset-generation-id-1 started execution" +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="NOTICE" msgCount=0 msgID=9896349 message="Set Generation ID task dsreplication-reset-generation-id-1 started execution" ds-task-id: dsreplication-reset-generation-id-1 -ds-task-actual-start-time: 20110722074117Z +ds-task-actual-start-time: 20150306181510Z ds-task-reset-generation-id-domain-base-dn: dc=example,dc=com creatorsName: cn=Directory Manager,cn=Root DNs,cn=config -createTimestamp: 20110722074117Z -entryUUID: 33f3db82-841d-4900-b3c6-1701f142aedd +createTimestamp: 20150306181510Z +entryUUID: 7368a070-50c1-408d-9540-e69ab901884f + +dn: ds-task-id=20150306191505950,cn=Scheduled Tasks,cn=Tasks +objectClass: ds-task-import +objectClass: ds-task +objectClass: top +ds-task-import-backend-id: userRoot +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=0 msgID=9896349 message="Import task 20150306191505950 started execution" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="INFORMATION" msgCount=1 msgID=9437595 message="Local DB backend userRoot does not specify the number of lock tables: defaulting to 97" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="INFORMATION" msgCount=2 msgID=9437594 message="Local DB backend userRoot does not specify the number of cleaner threads: defaulting to 24 threads" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=3 msgID=9896306 message="The backend userRoot is now taken offline" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=4 msgID=20381717 message="Installation Directory: /opt/opendj-2.6.2" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=5 msgID=20381719 message="Instance Directory: /opt/opendj-2.6.2" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=6 msgID=20381713 message="JVM Information: 1.7.0_75-b13 by Oracle Corporation, 64-bit architecture, 1862270976 bytes heap size" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=7 msgID=20381714 message="JVM Host: triglav.nlight.eu, running Linux 3.16.0-30-generic amd64, 8372068352 bytes physical memory size, number of processors available 4" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=8 msgID=20381715 message="JVM Arguments: "-Dorg.opends.server.scriptName=start-ds"" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=9 msgID=8847546 message="The amount of free memory available to the import task is 628135236 bytes. The number of phase one buffers required is 320 buffers" +ds-task-log-message: [06/Mar/2015:19:15:05 +0100] severity="NOTICE" msgCount=10 msgID=8847568 message="The amount memory available to the temporary DN cache environment is 414461121 bytes" +ds-task-log-message: [06/Mar/2015:19:15:06 +0100] severity="NOTICE" msgCount=11 msgID=8847545 message="Setting DB cache size to 8388608 bytes and phase one buffer size to to 512804 bytes" +ds-task-log-message: [06/Mar/2015:19:15:06 +0100] severity="NOTICE" msgCount=12 msgID=8847533 message="OpenDJ 2.6.2 starting import (build 20150306161742Z, R-1)" +ds-task-log-message: [06/Mar/2015:19:15:06 +0100] severity="NOTICE" msgCount=13 msgID=8847449 message="Import Thread Count: 8 threads" +ds-task-log-message: [06/Mar/2015:19:15:07 +0100] severity="NOTICE" msgCount=14 msgID=8847556 message="The available memory for phase two processing is 628135236 bytes. The read ahead cache size is 512804 bytes calculated using 25 buffers" +ds-task-log-message: [06/Mar/2015:19:15:07 +0100] severity="NOTICE" msgCount=15 msgID=8847569 message="Total import time was 0 seconds. Phase one processing completed in 0 seconds, phase two processing completed in 0 seconds" +ds-task-log-message: [06/Mar/2015:19:15:07 +0100] severity="NOTICE" msgCount=16 msgID=8847454 message="Processed 9 entries, imported 9, skipped 0, rejected 0 and migrated 0 in 0 seconds (average rate 15.0/sec)" +ds-task-log-message: [06/Mar/2015:19:15:07 +0100] severity="NOTICE" msgCount=17 msgID=8847536 message="Import LDIF environment close took 0 seconds" +ds-task-log-message: [06/Mar/2015:19:15:07 +0100] severity="INFORMATION" msgCount=18 msgID=9437595 message="Local DB backend userRoot does not specify the number of lock tables: defaulting to 97" +ds-task-log-message: [06/Mar/2015:19:15:07 +0100] severity="INFORMATION" msgCount=19 msgID=9437594 message="Local DB backend userRoot does not specify the number of cleaner threads: defaulting to 24 threads" +ds-task-log-message: [06/Mar/2015:19:15:08 +0100] severity="NOTICE" msgCount=20 msgID=8847402 message="The database backend userRoot containing 9 entries has started" +ds-task-log-message: [06/Mar/2015:19:15:08 +0100] severity="INFORMATION" msgCount=21 msgID=12582962 message="Added 1 Access Control Instruction (ACI) attribute types found in context "dc=example,dc=com" to the access control evaluation engine" +ds-task-log-message: [06/Mar/2015:19:15:08 +0100] severity="NOTICE" msgCount=22 msgID=8847447 message="Exported 9 entries and skipped 0 in 0 seconds (average rate 4500.0/sec)" +ds-task-log-message: [06/Mar/2015:19:15:08 +0100] severity="NOTICE" msgCount=23 msgID=15138878 message="Directory server DS(161) has connected to replication server RS(9664) for domain "dc=example,dc=com" at localhost/127.0.0.1:10989 with generation ID 135297" +ds-task-log-message: [06/Mar/2015:19:15:08 +0100] severity="NOTICE" msgCount=24 msgID=9896350 message="Import task 20150306191505950 finished execution" +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="MILD_ERROR" msgCount=25 msgID=14876751 message="The following error has been received : Domain dc=example,dc=com: the server with serverId=-2 is unreachable In Replication Server=Replication Server 10989 9664 unroutable message =DoneMsg Details:routing table is empty" +ds-task-import-thread-count: 0 +ds-task-id: 20150306191505950 +ds-task-actual-start-time: 20150306181505Z +ds-task-import-random-seed: 0 +ds-task-completion-time: 20150306181508Z +ds-task-state: COMPLETED_SUCCESSFULLY +ds-task-class-name: org.opends.server.tasks.ImportTask +ds-task-import-ldif-file: /home/semancik/projects/evolveum/midpoint/git/infra/test-util/src/main/resources/test-data/ldif/example.ldif +ds-task-import-clear-backend: true +creatorsName: cn=Directory Manager,cn=Root DNs,cn=config +createTimestamp: 20150306181505Z +entryUUID: 1e11d235-dc20-4374-87d9-bd6ee027d58c dn: ds-task-id=dsreplication-initialize1,cn=Scheduled Tasks,cn=Tasks objectClass: ds-task objectClass: ds-task-initialize-remote-replica objectClass: top -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="NOTICE" msgCount=0 msgID=9896349 message="Initialize Backend task dsreplication-initialize1 started execution" -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="NOTICE" msgCount=1 msgID=15139025 message="Starting total update: exporting 9 entries in domain "dc=example,dc=com" from this directory server DS(8631) to all remote directory servers" -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="NOTICE" msgCount=2 msgID=8847447 message="Exported 9 entries and skipped 0 in 0 seconds (average rate 4500.0/sec)" -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="NOTICE" msgCount=3 msgID=15139026 message="Finished total update: exported domain "dc=example,dc=com" from this directory server DS(8631) to all remote directory servers. " -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="NOTICE" msgCount=4 msgID=9896350 message="Initialize Backend task dsreplication-initialize1 finished execution" +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="NOTICE" msgCount=0 msgID=9896349 message="Initialize Backend task dsreplication-initialize1 started execution" +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="NOTICE" msgCount=1 msgID=15139025 message="Starting total update: exporting 9 entries in domain "dc=example,dc=com" from this directory server DS(161) to all remote directory servers" +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="NOTICE" msgCount=2 msgID=8847447 message="Exported 9 entries and skipped 0 in 0 seconds (average rate 4500.0/sec)" +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="NOTICE" msgCount=3 msgID=15139026 message="Finished total update: exported domain "dc=example,dc=com" from this directory server DS(161) to all remote directory servers. " +ds-task-log-message: [06/Mar/2015:19:15:10 +0100] severity="NOTICE" msgCount=4 msgID=9896350 message="Initialize Backend task dsreplication-initialize1 finished execution" ds-task-id: dsreplication-initialize1 -ds-task-actual-start-time: 20110722074117Z -ds-task-completion-time: 20110722074117Z +ds-task-actual-start-time: 20150306181510Z +ds-task-completion-time: 20150306181510Z ds-task-state: COMPLETED_SUCCESSFULLY ds-task-class-name: org.opends.server.tasks.InitializeTargetTask ds-task-initialize-replica-server-id: all @@ -51,51 +95,6 @@ ds-task-initialize-domain-dn: dc=example,dc=com ds-task-processed-entry-count: 0 ds-task-unprocessed-entry-count: 9 creatorsName: cn=Directory Manager,cn=Root DNs,cn=config -createTimestamp: 20110722074117Z -entryUUID: 00c191bf-1006-496d-ba9e-9ae5dc47ca6e - -dn: ds-task-id=20110722094113032,cn=Scheduled Tasks,cn=Tasks -objectClass: ds-task-import -objectClass: ds-task -objectClass: top -ds-task-import-backend-id: userRoot -ds-task-log-message: [22/Jul/2011:09:41:12 +0200] severity="NOTICE" msgCount=0 msgID=9896349 message="Import task 20110722094113032 started execution" -ds-task-log-message: [22/Jul/2011:09:41:12 +0200] severity="INFORMATION" msgCount=1 msgID=9437595 message="Local DB backend userRoot does not specify the number of lock tables: defaulting to 97" -ds-task-log-message: [22/Jul/2011:09:41:12 +0200] severity="INFORMATION" msgCount=2 msgID=9437594 message="Local DB backend userRoot does not specify the number of cleaner threads: defaulting to 24 threads" -ds-task-log-message: [22/Jul/2011:09:41:13 +0200] severity="NOTICE" msgCount=3 msgID=9896306 message="The backend userRoot is now taken offline" -ds-task-log-message: [22/Jul/2011:09:41:13 +0200] severity="NOTICE" msgCount=4 msgID=20381717 message="Installation Directory: /opt/OpenDJ-2.4.3" -ds-task-log-message: [22/Jul/2011:09:41:13 +0200] severity="NOTICE" msgCount=5 msgID=20381719 message="Instance Directory: /opt/OpenDJ-2.4.3" -ds-task-log-message: [22/Jul/2011:09:41:13 +0200] severity="NOTICE" msgCount=6 msgID=20381713 message="JVM Information: 1.6.0_26-b03 by Sun Microsystems Inc., 32-bit architecture, 913440768 bytes heap size" -ds-task-log-message: [22/Jul/2011:09:41:13 +0200] severity="NOTICE" msgCount=7 msgID=20381714 message="JVM Host: gildir, running Linux 2.6.32-32-generic-pae i386, 4109508608 bytes physical memory size, number of processors available 2" -ds-task-log-message: [22/Jul/2011:09:41:13 +0200] severity="NOTICE" msgCount=8 msgID=20381715 message="JVM Arguments: "-Dorg.opends.server.scriptName=start-ds"" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=9 msgID=8847546 message="The amount of free memory available to the import task is 59373649 bytes. The number of phase one buffers required is 160 buffers" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=10 msgID=8847568 message="The amount memory available to the temporary DN cache environment is 39078473 bytes" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=11 msgID=8847545 message="Setting DB cache size to 8388608 bytes and phase one buffer size to to 48928 bytes" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=12 msgID=8847533 message="OpenDJ 2.4.3 starting import (build 20110613203412Z, R6998)" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=13 msgID=8847449 message="Import Thread Count: 4 threads" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=14 msgID=8847556 message="The available memory for phase two processing is 59373649 bytes. The read ahead cache size is 48928 bytes calculated using 9 buffers" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=15 msgID=8847569 message="Total import time was 0 seconds. Phase one processing completed in 0 seconds, phase two processing completed in 0 seconds" -ds-task-log-message: [22/Jul/2011:09:41:14 +0200] severity="NOTICE" msgCount=16 msgID=8847454 message="Processed 9 entries, imported 9, skipped 0, rejected 0 and migrated 0 in 0 seconds (average rate 16.6/sec)" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="NOTICE" msgCount=17 msgID=8847536 message="Import LDIF environment close took 0 seconds" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="INFORMATION" msgCount=18 msgID=9437595 message="Local DB backend userRoot does not specify the number of lock tables: defaulting to 97" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="INFORMATION" msgCount=19 msgID=9437594 message="Local DB backend userRoot does not specify the number of cleaner threads: defaulting to 24 threads" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="NOTICE" msgCount=20 msgID=8847402 message="The database backend userRoot containing 9 entries has started" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="INFORMATION" msgCount=21 msgID=12582962 message="Added 1 Access Control Instruction (ACI) attribute types found in context "dc=example,dc=com" to the access control evaluation engine" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="NOTICE" msgCount=22 msgID=8847447 message="Exported 9 entries and skipped 0 in 0 seconds (average rate 818.2/sec)" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="NOTICE" msgCount=23 msgID=15138878 message="Directory server DS(8631) has connected to replication server RS(32548) for domain "dc=example,dc=com" at gildir/127.0.1.1:19989 with generation ID 135297" -ds-task-log-message: [22/Jul/2011:09:41:15 +0200] severity="NOTICE" msgCount=24 msgID=9896350 message="Import task 20110722094113032 finished execution" -ds-task-log-message: [22/Jul/2011:09:41:17 +0200] severity="MILD_ERROR" msgCount=25 msgID=14876751 message="The following error has been received : Domain dc=example,dc=com: the server with serverId=-2 is unreachable In Replication Server=Replication Server 19989 32548 unroutable message =DoneMsg Details:routing table is empty" -ds-task-import-thread-count: 0 -ds-task-id: 20110722094113032 -ds-task-actual-start-time: 20110722074112Z -ds-task-import-reject-file: /tmp/rejects -ds-task-import-random-seed: 0 -ds-task-completion-time: 20110722074115Z -ds-task-state: COMPLETED_SUCCESSFULLY -ds-task-class-name: org.opends.server.tasks.ImportTask -ds-task-import-ldif-file: /home/semancik/projects/evolveum/midpoint/trunk/infra/test-util/src/main/resources/test-data/ldif/example.ldif -ds-task-import-clear-backend: true -creatorsName: cn=Directory Manager,cn=Root DNs,cn=config -createTimestamp: 20110722074112Z -entryUUID: 820aaf21-c248-463d-971e-e2737e8cd7ad +createTimestamp: 20150306181510Z +entryUUID: 4457c541-2665-411b-b2c3-35ede5a074e7 diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/tools.properties b/infra/test-util/src/main/resources/test-data/opendj.template/config/tools.properties index cfe01aff9a1..cddb8dd069b 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/tools.properties +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/tools.properties @@ -1,18 +1,35 @@ +# CDDL HEADER START # -# Copyright (c) 2010-2013 Evolveum +# The contents of this file are subject to the terms of the +# Common Development and Distribution License, Version 1.0 only +# (the "License"). You may not use this file except in compliance +# with the License. # -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at +# You can obtain a copy of the license at +# trunk/opends/resource/legal-notices/OpenDS.LICENSE +# or https://OpenDS.dev.java.net/OpenDS.LICENSE. +# See the License for the specific language governing permissions +# and limitations under the License. # -# http://www.apache.org/licenses/LICENSE-2.0 +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at +# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, +# add the following below this CDDL HEADER, with the fields enclosed +# by brackets "[]" replaced with your own identifying information: +# Portions Copyright [yyyy] [name of copyright owner] # -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. +# CDDL HEADER END # +# Copyright 2008 Sun Microsystems, Inc. +# +# +# Default argument values. These arguments will be the +# default values for all OpenDS client tools. Defaults +# can be overridden on a per-client basis by prefixing +# the argument name with the name of the client. +# hostname=localhost +# port=4444 +# bindDN=cn=directory manager # Default ldapcompare argument values. This overrides the # default value for the "port" argument defined above. diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/truststore b/infra/test-util/src/main/resources/test-data/opendj.template/config/truststore deleted file mode 100644 index d92f7e1db9102f9d73cf817ab78a26106b0ef210..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 569 zcmezO_TO6u1_mY|W(3pR#i>PQsYSZUsYN9~F~fkJrKcHKBlJuSEP>pw22G3~fjDXb zGZP~d6N{gws*M3J8>d#AN85K^Mn+av1_N6|bpus4=1>+cVLAVT)I679h2YejG~M9L z^t{v*1!thanQ58Hi6yCqLIwgLh0Ma7Ir+(nIT`uIB?fZhyoQDb=0-*!Y-|<<Y@pMkre95xH?_p83ibb!*^!cRB5Rqjh;wk~|ZS zOy8f~vGbegrI+i^yqGon`={=^g4W&t4g_B~9$k9+Ro<2vp?vx3zh+B3)8&*~adJge zN8W~3CT2zkMr7v!gOeHPu4=ZP+K$KkXI2VC|2(vE^ZdQSoW1^XPtV&PO}Lw6-d6Eb zUYzMsY+>k&?Tc@;emMI5NXtCGuGovtF$<5WeV%!>cDsSa#@Gj;H{Dj-T-Njywvl(M zsxw?UckSH`vv^M&Gkj)d8!4u@O?l#y{!`r(&##xhq7slAWiJ$z{5wI%jQ!}ne=P-j V{ma)aI@{3^w%gcDL{&BUIsg?i(XRji diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/config.ldif.6998 b/infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/config.ldif.6998 deleted file mode 100644 index 5346c576412..00000000000 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/config.ldif.6998 +++ /dev/null @@ -1,2557 +0,0 @@ -# CDDL HEADER START -# -# The contents of this file are subject to the terms of the -# Common Development and Distribution License, Version 1.0 only -# (the "License"). You may not use this file except in compliance -# with the License. -# -# You can obtain a copy of the license at -# trunk/opends/resource/legal-notices/OpenDS.LICENSE -# or https://OpenDS.dev.java.net/OpenDS.LICENSE. -# See the License for the specific language governing permissions -# and limitations under the License. -# -# When distributing Covered Code, include this CDDL HEADER in each -# file and include the License file at -# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, -# add the following below this CDDL HEADER, with the fields enclosed -# by brackets "[]" replaced with your own identifying information: -# Portions Copyright [yyyy] [name of copyright owner] -# -# CDDL HEADER END -# -# Copyright 2006-2010 Sun Microsystems, Inc. -# Portions Copyright 2010-2011 ForgeRock AS. -# -# -# This file contains the primary Directory Server configuration. It must not -# be directly edited while the server is online. The server configuration -# should only be managed using the administration utilities provided with the -# Directory Server. - -dn: cn=config -objectClass: top -objectClass: ds-cfg-root-config -cn: config -ds-cfg-check-schema: true -ds-cfg-add-missing-rdn-attributes: true -ds-cfg-allow-attribute-name-exceptions: false -ds-cfg-invalid-attribute-syntax-behavior: reject -ds-cfg-single-structural-objectclass-behavior: reject -ds-cfg-notify-abandoned-operations: false -ds-cfg-proxied-authorization-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config -ds-cfg-size-limit: 1000 -ds-cfg-time-limit: 60 seconds -ds-cfg-lookthrough-limit: 5000 -ds-cfg-writability-mode: enabled -ds-cfg-bind-with-dn-requires-password: true -ds-cfg-reject-unauthenticated-requests: false -ds-cfg-default-password-policy: cn=Default Password Policy,cn=Password Policies,cn=config -ds-cfg-return-bind-error-messages: false -ds-cfg-idle-time-limit: 0 seconds -ds-cfg-save-config-on-successful-startup: true -ds-cfg-etime-resolution: milliseconds -ds-cfg-entry-cache-preload: false -ds-cfg-max-allowed-client-connections: 0 -ds-cfg-max-psearches: -1 -ds-cfg-allowed-task: org.opends.server.tasks.AddSchemaFileTask -ds-cfg-allowed-task: org.opends.server.tasks.BackupTask -ds-cfg-allowed-task: org.opends.server.tasks.DisconnectClientTask -ds-cfg-allowed-task: org.opends.server.tasks.EnterLockdownModeTask -ds-cfg-allowed-task: org.opends.server.tasks.ExportTask -ds-cfg-allowed-task: org.opends.server.tasks.ImportTask -ds-cfg-allowed-task: org.opends.server.tasks.InitializeTargetTask -ds-cfg-allowed-task: org.opends.server.tasks.InitializeTask -ds-cfg-allowed-task: org.opends.server.tasks.SetGenerationIdTask -ds-cfg-allowed-task: org.opends.server.tasks.LeaveLockdownModeTask -ds-cfg-allowed-task: org.opends.server.tasks.RebuildTask -ds-cfg-allowed-task: org.opends.server.tasks.RestoreTask -ds-cfg-allowed-task: org.opends.server.tasks.ShutdownTask -ds-cfg-allowed-task: org.opends.server.tasks.PurgeConflictsHistoricalTask - -dn: cn=Access Control Handler,cn=config -objectClass: top -objectClass: ds-cfg-access-control-handler -objectClass: ds-cfg-dsee-compat-access-control-handler -ds-cfg-global-aci: (extop="1.3.6.1.4.1.26027.1.6.1 || 1.3.6.1.4.1.26027.1.6.3 || 1.3.6.1.4.1.4203.1.11.1 || 1.3.6.1.4.1.1466.20037 || 1.3.6.1.4.1.4203.1.11.3") (version 3.0; acl "Anonymous extended operation access"; allow(read) userdn="ldap:///anyone";) -ds-cfg-global-aci: (targetcontrol="2.16.840.1.113730.3.4.2 || 2.16.840.1.113730.3.4.17 || 2.16.840.1.113730.3.4.19 || 1.3.6.1.4.1.4203.1.10.2 || 1.3.6.1.4.1.42.2.27.8.5.1 || 2.16.840.1.113730.3.4.16") (version 3.0; acl "Anonymous control access"; allow(read) userdn="ldap:///anyone";) -ds-cfg-global-aci: (targetcontrol="1.3.6.1.1.12 || 1.3.6.1.1.13.1 || 1.3.6.1.1.13.2 || 1.2.840.113556.1.4.319 || 1.2.826.0.1.3344810.2.3 || 2.16.840.1.113730.3.4.18 || 2.16.840.1.113730.3.4.9 || 1.2.840.113556.1.4.473 || 1.3.6.1.4.1.42.2.27.9.5.9") (version 3.0; acl "Authenticated users control access"; allow(read) userdn="ldap:///all";) -ds-cfg-global-aci: (targetattr!="userPassword||authPassword||changes||changeNumber||changeType||changeTime||targetDN||newRDN||newSuperior||deleteOldRDN||targetEntryUUID||targetUniqueID||changeInitiatorsName||changeLogCookie")(version 3.0; acl "Anonymous read access"; allow (read,search,compare) userdn="ldap:///anyone";) -ds-cfg-global-aci: (targetattr="audio||authPassword||description||displayName||givenName||homePhone||homePostalAddress||initials||jpegPhoto||labeledURI||mobile||pager||postalAddress||postalCode||preferredLanguage||telephoneNumber||userPassword")(version 3.0; acl "Self entry modification"; allow (write) userdn="ldap:///self";) -ds-cfg-global-aci: (targetattr="userPassword||authPassword")(version 3.0; acl "Self entry read"; allow (read,search,compare) userdn="ldap:///self";) -ds-cfg-global-aci: (target="ldap:///cn=schema")(targetscope="base")(targetattr="objectClass||attributeTypes||dITContentRules||dITStructureRules||ldapSyntaxes||matchingRules||matchingRuleUse||nameForms||objectClasses")(version 3.0; acl "User-Visible Schema Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";) -ds-cfg-global-aci: (target="ldap:///")(targetscope="base")(targetattr="objectClass||namingContexts||supportedAuthPasswordSchemes||supportedControl||supportedExtension||supportedFeatures||supportedLDAPVersion||supportedSASLMechanisms||vendorName||vendorVersion")(version 3.0; acl "User-Visible Root DSE Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";) -ds-cfg-global-aci: (targetattr="createTimestamp||creatorsName||modifiersName||modifyTimestamp||entryDN||entryUUID||subschemaSubentry")(version 3.0; acl "User-Visible Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";) -ds-cfg-global-aci: (target="ldap:///dc=replicationchanges")(targetattr="*")(version 3.0; acl "Replication backend access"; deny (all) userdn="ldap:///anyone";) -cn: Access Control Handler -ds-cfg-java-class: org.opends.server.authorization.dseecompat.AciHandler -ds-cfg-enabled: true - -dn: cn=Crypto Manager,cn=config -objectClass: top -objectClass: ds-cfg-crypto-manager -cn: Crypto Manager -ds-cfg-ssl-cert-nickname: ads-certificate -ds-cfg-ssl-encryption: false - -dn: cn=Account Status Notification Handlers,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Account Status Notification Handlers - -dn: cn=Error Log Handler,cn=Account Status Notification Handlers,cn=config -objectClass: top -objectClass: ds-cfg-account-status-notification-handler -objectClass: ds-cfg-error-log-account-status-notification-handler -cn: Error Log Handler -ds-cfg-java-class: org.opends.server.extensions.ErrorLogAccountStatusNotificationHandler -ds-cfg-enabled: true -ds-cfg-account-status-notification-type: account-temporarily-locked -ds-cfg-account-status-notification-type: account-permanently-locked -ds-cfg-account-status-notification-type: account-unlocked -ds-cfg-account-status-notification-type: account-idle-locked -ds-cfg-account-status-notification-type: account-reset-locked -ds-cfg-account-status-notification-type: account-disabled -ds-cfg-account-status-notification-type: account-enabled -ds-cfg-account-status-notification-type: account-expired -ds-cfg-account-status-notification-type: password-expired -ds-cfg-account-status-notification-type: password-expiring -ds-cfg-account-status-notification-type: password-reset -ds-cfg-account-status-notification-type: password-changed - -dn: cn=SMTP Handler,cn=Account Status Notification Handlers,cn=config -objectClass: top -objectClass: ds-cfg-account-status-notification-handler -objectClass: ds-cfg-smtp-account-status-notification-handler -cn: SMTP Handler -ds-cfg-java-class: org.opends.server.extensions.SMTPAccountStatusNotificationHandler -ds-cfg-enabled: false -ds-cfg-sender-address: opends-notifications@example.com -ds-cfg-email-address-attribute-type: mail -ds-cfg-send-message-without-end-user-address: false -ds-cfg-message-template-file: account-temporarily-locked:config/messages/account-temporarily-locked.template -ds-cfg-message-template-file: account-permanently-locked:config/messages/account-permanently-locked.template -ds-cfg-message-template-file: account-unlocked:config/messages/account-unlocked.template -ds-cfg-message-template-file: account-idle-locked:config/messages/account-idle-locked.template -ds-cfg-message-template-file: account-reset-locked:config/messages/account-reset-locked.template -ds-cfg-message-template-file: account-disabled:config/messages/account-disabled.template -ds-cfg-message-template-file: account-enabled:config/messages/account-enabled.template -ds-cfg-message-template-file: account-expired:config/messages/account-expired.template -ds-cfg-message-template-file: password-expired:config/messages/password-expired.template -ds-cfg-message-template-file: password-expiring:config/messages/password-expiring.template -ds-cfg-message-template-file: password-reset:config/messages/password-reset.template -ds-cfg-message-template-file: password-changed:config/messages/password-changed.template -ds-cfg-message-subject: account-temporarily-locked:Your directory account has been locked -ds-cfg-message-subject: account-permanently-locked:Your directory account has been locked -ds-cfg-message-subject: account-unlocked:Your directory account has been unlocked -ds-cfg-message-subject: account-idle-locked:Your directory account has been locked -ds-cfg-message-subject: account-reset-locked:Your directory account has been locked -ds-cfg-message-subject: account-disabled:Your directory account has been disabled -ds-cfg-message-subject: account-enabled:Your directory account has been re-enabled -ds-cfg-message-subject: account-expired:Your directory account has expired -ds-cfg-message-subject: password-expired:Your directory password has expired -ds-cfg-message-subject: password-expiring:Your directory password is going to expire -ds-cfg-message-subject: password-reset:Your directory password has been reset -ds-cfg-message-subject: password-changed:Your directory password has been changed - -dn: cn=Alert Handlers,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Alert Handlers - -dn: cn=JMX Alert Handler,cn=Alert Handlers,cn=config -objectClass: top -objectClass: ds-cfg-alert-handler -objectClass: ds-cfg-jmx-alert-handler -cn: JMX Alert Handler -ds-cfg-java-class: org.opends.server.extensions.JMXAlertHandler -ds-cfg-enabled: false - -dn: cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Backends - -dn: ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-backend -objectClass: ds-cfg-local-db-backend -ds-cfg-enabled: true -ds-cfg-java-class: org.opends.server.backends.jeb.BackendImpl -ds-cfg-backend-id: userRoot -ds-cfg-writability-mode: enabled -ds-cfg-base-dn: dc=example,dc=com -ds-cfg-db-directory: db -ds-cfg-db-directory-permissions: 700 -ds-cfg-index-entry-limit: 4000 -ds-cfg-preload-time-limit: 0 seconds -ds-cfg-entries-compressed: false -ds-cfg-compact-encoding: true -ds-cfg-db-cache-percent: 10 -ds-cfg-db-cache-size: 0 megabytes -ds-cfg-db-txn-no-sync: false -ds-cfg-db-txn-write-no-sync: true -ds-cfg-db-run-cleaner: true -ds-cfg-db-cleaner-min-utilization: 50 -ds-cfg-db-evictor-lru-only: true -ds-cfg-db-evictor-nodes-per-scan: 10 -ds-cfg-db-evictor-core-threads: 1 -ds-cfg-db-evictor-max-threads: 10 -ds-cfg-db-evictor-keep-alive: 600 seconds -ds-cfg-db-log-file-max: 10 megabytes -ds-cfg-db-logging-file-handler-on: true -ds-cfg-db-logging-level: CONFIG -ds-cfg-db-checkpointer-bytes-interval: 20 megabytes -ds-cfg-db-checkpointer-wakeup-interval: 30 seconds -ds-cfg-disk-full-threshold: 20 megabytes -ds-cfg-disk-low-threshold: 100 megabytes - -dn: cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Index - -dn: ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-local-db-index -ds-cfg-attribute: aci -ds-cfg-index-type: presence - -dn: ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-local-db-index -ds-cfg-attribute: cn -ds-cfg-index-type: equality -ds-cfg-index-type: substring - -dn: ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-local-db-index -ds-cfg-attribute: ds-sync-hist -ds-cfg-index-type: ordering - -dn: ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-local-db-index -ds-cfg-attribute: ds-sync-conflict -ds-cfg-index-type: equality - -dn: ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-local-db-index -ds-cfg-attribute: entryUUID -ds-cfg-index-type: equality - -dn: ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-local-db-index -ds-cfg-attribute: givenName -ds-cfg-index-type: equality -ds-cfg-index-type: substring - -dn: ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-local-db-index -ds-cfg-attribute: mail -ds-cfg-index-type: equality -ds-cfg-index-type: substring - -dn: ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-local-db-index -ds-cfg-attribute: member -ds-cfg-index-type: equality - -dn: ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-local-db-index -ds-cfg-attribute: objectClass -ds-cfg-index-type: equality - -dn: ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-local-db-index -ds-cfg-attribute: sn -ds-cfg-index-type: equality -ds-cfg-index-type: substring - -dn: ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-local-db-index -ds-cfg-attribute: telephoneNumber -ds-cfg-index-type: equality -ds-cfg-index-type: substring - -dn: ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-local-db-index -ds-cfg-attribute: uid -ds-cfg-index-type: equality - -dn: ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-local-db-index -ds-cfg-attribute: uniqueMember -ds-cfg-index-type: equality - -dn: cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: VLV Index - -dn: ds-cfg-backend-id=backup,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-backend -objectClass: ds-cfg-backup-backend -ds-cfg-enabled: true -ds-cfg-java-class: org.opends.server.backends.BackupBackend -ds-cfg-backend-id: backup -ds-cfg-writability-mode: disabled -ds-cfg-base-dn: cn=backups -ds-cfg-backup-directory: bak - -dn: ds-cfg-backend-id=config,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-backend -objectClass: ds-cfg-config-file-handler-backend -ds-cfg-enabled: true -ds-cfg-java-class: org.opends.server.extensions.ConfigFileHandler -ds-cfg-backend-id: config -ds-cfg-writability-mode: enabled -ds-cfg-base-dn: cn=config - -dn: ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-backend -objectClass: ds-cfg-trust-store-backend -ds-cfg-backend-id: ads-truststore -ds-cfg-enabled: true -ds-cfg-java-class: org.opends.server.backends.TrustStoreBackend -ds-cfg-writability-mode: enabled -ds-cfg-base-dn: cn=ads-truststore -ds-cfg-trust-store-type: JKS -ds-cfg-trust-store-file: config/ads-truststore -ds-cfg-trust-store-pin-file: config/ads-truststore.pin - -dn: ds-cfg-backend-id=monitor,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-backend -objectClass: ds-cfg-monitor-backend -ds-cfg-enabled: true -ds-cfg-java-class: org.opends.server.backends.MonitorBackend -ds-cfg-backend-id: monitor -ds-cfg-writability-mode: disabled -ds-cfg-base-dn: cn=monitor - -dn: ds-cfg-backend-id=schema,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-backend -objectClass: ds-cfg-schema-backend -ds-cfg-enabled: true -ds-cfg-java-class: org.opends.server.backends.SchemaBackend -ds-cfg-backend-id: schema -ds-cfg-writability-mode: enabled -ds-cfg-base-dn: cn=schema -ds-cfg-show-all-attributes: false - -dn: ds-cfg-backend-id=tasks,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-backend -objectClass: ds-cfg-task-backend -ds-cfg-enabled: true -ds-cfg-java-class: org.opends.server.backends.task.TaskBackend -ds-cfg-backend-id: tasks -ds-cfg-writability-mode: enabled -ds-cfg-base-dn: cn=tasks -ds-cfg-task-backing-file: config/tasks.ldif -ds-cfg-task-retention-time: 24 hours - -dn: ds-cfg-backend-id=adminRoot,cn=Backends,cn=config -objectClass: top -objectClass: ds-cfg-backend -objectClass: ds-cfg-ldif-backend -ds-cfg-backend-id: adminRoot -ds-cfg-enabled: true -ds-cfg-java-class: org.opends.server.backends.LDIFBackend -ds-cfg-writability-mode: enabled -ds-cfg-base-dn: cn=admin data -ds-cfg-ldif-file: config/admin-backend.ldif -ds-cfg-is-private-backend: true - -dn: cn=Certificate Mappers,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Certificate Mappers - -dn: cn=Subject Equals DN,cn=Certificate Mappers,cn=config -objectClass: top -objectClass: ds-cfg-certificate-mapper -objectClass: ds-cfg-subject-equals-dn-certificate-mapper -cn: Subject Equals DN -ds-cfg-java-class: org.opends.server.extensions.SubjectEqualsDNCertificateMapper -ds-cfg-enabled: true - -dn: cn=Subject DN to User Attribute,cn=Certificate Mappers,cn=config -objectClass: top -objectClass: ds-cfg-certificate-mapper -objectClass: ds-cfg-subject-dn-to-user-attribute-certificate-mapper -cn: Subject DN to User Attribute -ds-cfg-java-class: org.opends.server.extensions.SubjectDNToUserAttributeCertificateMapper -ds-cfg-enabled: true -ds-cfg-subject-attribute: ds-certificate-subject-dn - -dn: cn=Subject Attribute to User Attribute,cn=Certificate Mappers,cn=config -objectClass: top -objectClass: ds-cfg-certificate-mapper -objectClass: ds-cfg-subject-attribute-to-user-attribute-certificate-mapper -cn: Subject Attribute to User Attribute -ds-cfg-java-class: org.opends.server.extensions.SubjectAttributeToUserAttributeCertificateMapper -ds-cfg-enabled: true -ds-cfg-subject-attribute-mapping: cn:cn -ds-cfg-subject-attribute-mapping: e:mail - -dn: cn=Fingerprint Mapper,cn=Certificate Mappers,cn=config -objectClass: top -objectClass: ds-cfg-certificate-mapper -objectClass: ds-cfg-fingerprint-certificate-mapper -cn: Fingerprint Mapper -ds-cfg-java-class: org.opends.server.extensions.FingerprintCertificateMapper -ds-cfg-enabled: true -ds-cfg-fingerprint-attribute: ds-certificate-fingerprint -ds-cfg-fingerprint-algorithm: MD5 - -dn: cn=Connection Handlers,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Connection Handlers - -dn: cn=LDAP Connection Handler,cn=Connection Handlers,cn=config -objectClass: top -objectClass: ds-cfg-connection-handler -objectClass: ds-cfg-ldap-connection-handler -cn: LDAP Connection Handler -ds-cfg-java-class: org.opends.server.protocols.ldap.LDAPConnectionHandler -ds-cfg-enabled: true -ds-cfg-listen-address: 0.0.0.0 -ds-cfg-listen-port: 389 -ds-cfg-accept-backlog: 128 -ds-cfg-allow-ldap-v2: true -ds-cfg-keep-stats: true -ds-cfg-use-tcp-keep-alive: true -ds-cfg-use-tcp-no-delay: true -ds-cfg-allow-tcp-reuse-address: true -ds-cfg-send-rejection-notice: true -ds-cfg-max-request-size: 5 megabytes -ds-cfg-buffer-size: 4096 bytes -ds-cfg-max-blocked-write-time-limit: 2 minutes -ds-cfg-num-request-handlers: 2 -ds-cfg-allow-start-tls: false -ds-cfg-use-ssl: false -ds-cfg-ssl-client-auth-policy: optional -ds-cfg-ssl-cert-nickname: server-cert - -dn: cn=LDAPS Connection Handler,cn=Connection Handlers,cn=config -objectClass: top -objectClass: ds-cfg-connection-handler -objectClass: ds-cfg-ldap-connection-handler -cn: LDAPS Connection Handler -ds-cfg-java-class: org.opends.server.protocols.ldap.LDAPConnectionHandler -ds-cfg-enabled: false -ds-cfg-listen-address: 0.0.0.0 -ds-cfg-listen-port: 636 -ds-cfg-accept-backlog: 128 -ds-cfg-allow-ldap-v2: true -ds-cfg-keep-stats: true -ds-cfg-use-tcp-keep-alive: true -ds-cfg-use-tcp-no-delay: true -ds-cfg-allow-tcp-reuse-address: true -ds-cfg-send-rejection-notice: true -ds-cfg-max-request-size: 5 megabytes -ds-cfg-buffer-size: 4096 bytes -ds-cfg-max-blocked-write-time-limit: 2 minutes -ds-cfg-num-request-handlers: 2 -ds-cfg-allow-start-tls: false -ds-cfg-use-ssl: true -ds-cfg-ssl-client-auth-policy: optional -ds-cfg-ssl-cert-nickname: server-cert -ds-cfg-key-manager-provider: cn=JKS,cn=Key Manager Providers,cn=config -ds-cfg-trust-manager-provider: cn=JKS,cn=Trust Manager Providers,cn=config - -dn: cn=LDIF Connection Handler,cn=Connection Handlers,cn=config -objectClass: top -objectClass: ds-cfg-connection-handler -objectClass: ds-cfg-ldif-connection-handler -cn: LDIF Connection Handler -ds-cfg-java-class: org.opends.server.protocols.LDIFConnectionHandler -ds-cfg-enabled: false -ds-cfg-ldif-directory: config/auto-process-ldif -ds-cfg-poll-interval: 5 seconds - -dn: cn=JMX Connection Handler,cn=Connection Handlers,cn=config -objectClass: top -objectClass: ds-cfg-connection-handler -objectClass: ds-cfg-jmx-connection-handler -cn: JMX Connection Handler -ds-cfg-java-class: org.opends.server.protocols.jmx.JmxConnectionHandler -ds-cfg-enabled: false -ds-cfg-use-ssl: false -ds-cfg-listen-port: 1689 -ds-cfg-ssl-cert-nickname: server-cert - -dn: cn=Entry Caches,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Entry Caches - -dn: cn=FIFO,cn=Entry Caches,cn=config -objectClass: top -objectClass: ds-cfg-entry-cache -objectClass: ds-cfg-fifo-entry-cache -cn: FIFO -ds-cfg-enabled: false -ds-cfg-cache-level: 1 -ds-cfg-java-class: org.opends.server.extensions.FIFOEntryCache - -dn: cn=Soft Reference,cn=Entry Caches,cn=config -objectClass: top -objectClass: ds-cfg-entry-cache -objectClass: ds-cfg-soft-reference-entry-cache -cn: Soft Reference -ds-cfg-enabled: false -ds-cfg-cache-level: 2 -ds-cfg-java-class: org.opends.server.extensions.SoftReferenceEntryCache - -dn: cn=File System,cn=Entry Caches,cn=config -objectClass: top -objectClass: ds-cfg-entry-cache -objectClass: ds-cfg-file-system-entry-cache -cn: File System -ds-cfg-enabled: false -ds-cfg-cache-level: 3 -ds-cfg-java-class: org.opends.server.extensions.FileSystemEntryCache - -dn: cn=Extended Operations,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Extended Operations - -dn: cn=Cancel,cn=Extended Operations,cn=config -objectClass: top -objectClass: ds-cfg-extended-operation-handler -objectClass: ds-cfg-cancel-extended-operation-handler -cn: Cancel -ds-cfg-java-class: org.opends.server.extensions.CancelExtendedOperation -ds-cfg-enabled: true - -dn: cn=Get Connection ID,cn=Extended Operations,cn=config -objectClass: top -objectClass: ds-cfg-extended-operation-handler -objectClass: ds-cfg-get-connection-id-extended-operation-handler -cn: Get Connection ID -ds-cfg-java-class: org.opends.server.extensions.GetConnectionIDExtendedOperation -ds-cfg-enabled: true - -dn: cn=Password Modify,cn=Extended Operations,cn=config -objectClass: top -objectClass: ds-cfg-extended-operation-handler -objectClass: ds-cfg-password-modify-extended-operation-handler -cn: Password Modify -ds-cfg-java-class: org.opends.server.extensions.PasswordModifyExtendedOperation -ds-cfg-enabled: true -ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config - -dn: cn=Password Policy State,cn=Extended Operations,cn=config -objectClass: top -objectClass: ds-cfg-extended-operation-handler -objectClass: ds-cfg-password-policy-state-extended-operation-handler -cn: Password Policy State -ds-cfg-java-class: org.opends.server.extensions.PasswordPolicyStateExtendedOperation -ds-cfg-enabled: true - -dn: cn=StartTLS,cn=Extended Operations,cn=config -objectClass: top -objectClass: ds-cfg-extended-operation-handler -objectClass: ds-cfg-start-tls-extended-operation-handler -cn: StartTLS -ds-cfg-java-class: org.opends.server.extensions.StartTLSExtendedOperation -ds-cfg-enabled: true - -dn: cn=Get Symmetric Key,cn=Extended Operations,cn=config -objectClass: top -objectClass: ds-cfg-extended-operation-handler -objectClass: ds-cfg-get-symmetric-key-extended-operation-handler -cn: Get Symmetric Key -ds-cfg-java-class: org.opends.server.crypto.GetSymmetricKeyExtendedOperation -ds-cfg-enabled: true - -dn: cn=Who Am I,cn=Extended Operations,cn=config -objectClass: top -objectClass: ds-cfg-extended-operation-handler -objectClass: ds-cfg-who-am-i-extended-operation-handler -cn: Who Am I -ds-cfg-java-class: org.opends.server.extensions.WhoAmIExtendedOperation -ds-cfg-enabled: true - -dn: cn=Group Implementations,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Group Implementations - -dn: cn=Dynamic,cn=Group Implementations,cn=config -objectClass: top -objectClass: ds-cfg-group-implementation -objectClass: ds-cfg-dynamic-group-implementation -cn: Dynamic -ds-cfg-java-class: org.opends.server.extensions.DynamicGroup -ds-cfg-enabled: true - -dn: cn=Static,cn=Group Implementations,cn=config -objectClass: top -objectClass: ds-cfg-group-implementation -objectClass: ds-cfg-static-group-implementation -cn: Static -ds-cfg-java-class: org.opends.server.extensions.StaticGroup -ds-cfg-enabled: true - -dn: cn=Virtual Static,cn=Group Implementations,cn=config -objectClass: top -objectClass: ds-cfg-group-implementation -objectClass: ds-cfg-virtual-static-group-implementation -cn: Virtual Static -ds-cfg-java-class: org.opends.server.extensions.VirtualStaticGroup -ds-cfg-enabled: true - -dn: cn=Identity Mappers,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Identity Mappers - -dn: cn=Exact Match,cn=Identity Mappers,cn=config -objectClass: top -objectClass: ds-cfg-identity-mapper -objectClass: ds-cfg-exact-match-identity-mapper -cn: Exact Match -ds-cfg-java-class: org.opends.server.extensions.ExactMatchIdentityMapper -ds-cfg-enabled: true -ds-cfg-match-attribute: uid - -dn: cn=Regular Expression,cn=Identity Mappers,cn=config -objectClass: top -objectClass: ds-cfg-identity-mapper -objectClass: ds-cfg-regular-expression-identity-mapper -cn: Regular Expression -ds-cfg-java-class: org.opends.server.extensions.RegularExpressionIdentityMapper -ds-cfg-enabled: true -ds-cfg-match-attribute: uid -ds-cfg-match-pattern: ^([^@]+)@.+$ -ds-cfg-replace-pattern: $1 - -dn: cn=Key Manager Providers,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Key Manager Providers - -dn: cn=JKS,cn=Key Manager Providers,cn=config -objectClass: top -objectClass: ds-cfg-key-manager-provider -objectClass: ds-cfg-file-based-key-manager-provider -cn: JKS -ds-cfg-java-class: org.opends.server.extensions.FileBasedKeyManagerProvider -ds-cfg-enabled: false -ds-cfg-key-store-type: JKS -ds-cfg-key-store-file: config/keystore -ds-cfg-key-store-pin-file: config/keystore.pin - -dn: cn=PKCS12,cn=Key Manager Providers,cn=config -objectClass: top -objectClass: ds-cfg-key-manager-provider -objectClass: ds-cfg-file-based-key-manager-provider -cn: PKCS12 -ds-cfg-java-class: org.opends.server.extensions.FileBasedKeyManagerProvider -ds-cfg-enabled: false -ds-cfg-key-store-type: PKCS12 -ds-cfg-key-store-file: config/keystore.p12 -ds-cfg-key-store-pin-file: config/keystore.pin - -dn: cn=PKCS11,cn=Key Manager Providers,cn=config -objectClass: top -objectClass: ds-cfg-key-manager-provider -objectClass: ds-cfg-pkcs11-key-manager-provider -cn: PKCS11 -ds-cfg-java-class: org.opends.server.extensions.PKCS11KeyManagerProvider -ds-cfg-enabled: false -ds-cfg-key-store-pin-file: config/keystore.pin - -dn: cn=Loggers,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Loggers - -dn: cn=File-Based Access Logger,cn=Loggers,cn=config -objectClass: top -objectClass: ds-cfg-log-publisher -objectClass: ds-cfg-access-log-publisher -objectClass: ds-cfg-file-based-access-log-publisher -cn: File-Based Access Logger -ds-cfg-java-class: org.opends.server.loggers.TextAccessLogPublisher -ds-cfg-enabled: true -ds-cfg-log-file: logs/access -ds-cfg-log-file-permissions: 640 -ds-cfg-suppress-internal-operations: true -ds-cfg-suppress-synchronization-operations: false -ds-cfg-asynchronous: true -ds-cfg-rotation-policy: cn=24 Hours Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config -ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config -ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config - -dn: cn=File-Based Audit Logger,cn=Loggers,cn=config -objectClass: top -objectClass: ds-cfg-log-publisher -objectClass: ds-cfg-access-log-publisher -objectClass: ds-cfg-file-based-access-log-publisher -cn: File-Based Audit Logger -ds-cfg-java-class: org.opends.server.loggers.TextAuditLogPublisher -ds-cfg-enabled: false -ds-cfg-log-file: logs/audit -ds-cfg-log-file-permissions: 640 -ds-cfg-suppress-internal-operations: true -ds-cfg-suppress-synchronization-operations: false -ds-cfg-asynchronous: true -ds-cfg-rotation-policy: cn=24 Hours Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config -ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config -ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config - -dn: cn=File-Based Error Logger,cn=Loggers,cn=config -objectClass: top -objectClass: ds-cfg-log-publisher -objectClass: ds-cfg-error-log-publisher -objectClass: ds-cfg-file-based-error-log-publisher -cn: File-Based Error Logger -ds-cfg-java-class: org.opends.server.loggers.TextErrorLogPublisher -ds-cfg-enabled: true -ds-cfg-log-file: logs/errors -ds-cfg-log-file-permissions: 640 -ds-cfg-default-severity: severe-warning -ds-cfg-default-severity: severe-error -ds-cfg-default-severity: fatal-error -ds-cfg-default-severity: notice -ds-cfg-asynchronous: false -ds-cfg-rotation-policy: cn=7 Days Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config -ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config -ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config - -dn: cn=Replication Repair Logger,cn=Loggers,cn=config -objectClass: top -objectClass: ds-cfg-log-publisher -objectClass: ds-cfg-error-log-publisher -objectClass: ds-cfg-file-based-error-log-publisher -cn: Replication Repair Logger -ds-cfg-java-class: org.opends.server.loggers.TextErrorLogPublisher -ds-cfg-enabled: true -ds-cfg-log-file: logs/replication -ds-cfg-log-file-permissions: 640 -ds-cfg-default-severity: none -ds-cfg-override-severity: SYNC=INFO,MILD_ERROR,MILD_WARNING,NOTICE -ds-cfg-asynchronous: false -ds-cfg-rotation-policy: cn=7 Days Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config -ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config -ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config - -dn: cn=File-Based Debug Logger,cn=Loggers,cn=config -objectClass: top -objectClass: ds-cfg-log-publisher -objectClass: ds-cfg-debug-log-publisher -objectClass: ds-cfg-file-based-debug-log-publisher -cn: File-Based Debug Logger -ds-cfg-java-class: org.opends.server.loggers.debug.TextDebugLogPublisher -ds-cfg-enabled: false -ds-cfg-log-file: logs/debug -ds-cfg-log-file-permissions: 640 -ds-cfg-default-debug-level: error -ds-cfg-asynchronous: false - -dn: cn=Log Rotation Policies,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Log Rotation Policies - -dn: cn=24 Hours Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config -objectClass: top -objectClass: ds-cfg-log-rotation-policy -objectClass: ds-cfg-time-limit-log-rotation-policy -cn: Time Limit Rotation Policy -ds-cfg-java-class: org.opends.server.loggers.TimeLimitRotationPolicy -ds-cfg-rotation-interval: 24 hours - -dn: cn=7 Days Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config -objectClass: top -objectClass: ds-cfg-log-rotation-policy -objectClass: ds-cfg-time-limit-log-rotation-policy -cn: Time Limit Rotation Policy -ds-cfg-java-class: org.opends.server.loggers.TimeLimitRotationPolicy -ds-cfg-rotation-interval: 7 days - -dn: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config -objectClass: top -objectClass: ds-cfg-log-rotation-policy -objectClass: ds-cfg-size-limit-log-rotation-policy -cn: Size Limit Rotation Policy -ds-cfg-java-class: org.opends.server.loggers.SizeBasedRotationPolicy -ds-cfg-file-size-limit: 100 megabytes - -dn: cn=Fixed Time Rotation Policy,cn=Log Rotation Policies,cn=config -objectClass: top -objectClass: ds-cfg-log-rotation-policy -objectClass: ds-cfg-fixed-time-log-rotation-policy -cn: Fixed Time Rotation Policy -ds-cfg-java-class: org.opends.server.loggers.FixedTimeRotationPolicy -ds-cfg-time-of-day: 2359 - -dn: cn=Log Retention Policies,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Log Retention Policies - -dn: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config -objectClass: top -objectClass: ds-cfg-log-retention-policy -objectClass: ds-cfg-file-count-log-retention-policy -cn: File Count Retention Policy -ds-cfg-java-class: org.opends.server.loggers.FileNumberRetentionPolicy -ds-cfg-number-of-files: 10 - -dn: cn=Free Disk Space Retention Policy,cn=Log Retention Policies,cn=config -objectClass: top -objectClass: ds-cfg-log-retention-policy -objectClass: ds-cfg-free-disk-space-log-retention-policy -cn: Free Disk Space Retention Policy -ds-cfg-java-class: org.opends.server.loggers.FreeDiskSpaceRetentionPolicy -ds-cfg-free-disk-space: 500 megabytes - -dn: cn=Size Limit Retention Policy,cn=Log Retention Policies,cn=config -objectClass: top -objectClass: ds-cfg-log-retention-policy -objectClass: ds-cfg-size-limit-log-retention-policy -cn: Size Limit Retention Policy -ds-cfg-java-class: org.opends.server.loggers.SizeBasedRetentionPolicy -ds-cfg-disk-space-used: 500 megabytes - -dn: cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Matching Rules - -dn: cn=Auth Password Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Auth Password Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.AuthPasswordEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Auth Password Exact Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Auth Password Exact Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.AuthPasswordExactEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Bit String Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Bit String Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.BitStringEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Boolean Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Boolean Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.BooleanEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Case Exact Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Case Exact Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.CaseExactEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Case Exact Ordering Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-ordering-matching-rule -cn: Case Exact Ordering Matching Rule -ds-cfg-java-class: org.opends.server.schema.CaseExactOrderingMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Case Exact Substring Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-substring-matching-rule -cn: Case Exact Substring Matching Rule -ds-cfg-java-class: org.opends.server.schema.CaseExactSubstringMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Case Exact IA5 Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Case Exact IA5 Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.CaseExactIA5EqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Case Exact IA5 Substring Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-substring-matching-rule -cn: Case Exact IA5 Substring Matching Rule -ds-cfg-java-class: org.opends.server.schema.CaseExactIA5SubstringMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Case Ignore Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Case Ignore Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.CaseIgnoreEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Case Ignore Ordering Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-ordering-matching-rule -cn: Case Ignore Ordering Matching Rule -ds-cfg-java-class: org.opends.server.schema.CaseIgnoreOrderingMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Case Ignore Substring Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-substring-matching-rule -cn: Case Ignore Substring Matching Rule -ds-cfg-java-class: org.opends.server.schema.CaseIgnoreSubstringMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Case Ignore IA5 Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Case Ignore IA5 Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.CaseIgnoreIA5EqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Case Ignore IA5 Substring Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-substring-matching-rule -cn: Case Ignore IA5 Substring Matching Rule -ds-cfg-java-class: org.opends.server.schema.CaseIgnoreIA5SubstringMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Case Ignore List Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Case Ignore List Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.CaseIgnoreListEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Case Ignore List Substring Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-substring-matching-rule -cn: Case Ignore List Substring Matching Rule -ds-cfg-java-class: org.opends.server.schema.CaseIgnoreListSubstringMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Collation Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-collation-matching-rule -cn: Collation Matching Rule -ds-cfg-java-class: org.opends.server.schema.CollationMatchingRuleFactory -ds-cfg-enabled: true -ds-cfg-matching-rule-type: equality -ds-cfg-matching-rule-type: less-than -ds-cfg-matching-rule-type: less-than-or-equal-to -ds-cfg-matching-rule-type: greater-than -ds-cfg-matching-rule-type: greater-than-or-equal-to -ds-cfg-matching-rule-type: substring -#ds-cfg-collation: af:1.3.6.1.4.1.42.2.27.9.4.1.1 -#ds-cfg-collation: am:1.3.6.1.4.1.42.2.27.9.4.2.1 -ds-cfg-collation: ar:1.3.6.1.4.1.42.2.27.9.4.3.1 -ds-cfg-collation: ar-AE:1.3.6.1.4.1.42.2.27.9.4.4.1 -ds-cfg-collation: ar-BH:1.3.6.1.4.1.42.2.27.9.4.5.1 -ds-cfg-collation: ar-DZ:1.3.6.1.4.1.42.2.27.9.4.6.1 -ds-cfg-collation: ar-EG:1.3.6.1.4.1.42.2.27.9.4.7.1 -#ds-cfg-collation: ar-IN:1.3.6.1.4.1.42.2.27.9.4.8.1 -ds-cfg-collation: ar-IQ:1.3.6.1.4.1.42.2.27.9.4.9.1 -ds-cfg-collation: ar-JO:1.3.6.1.4.1.42.2.27.9.4.10.1 -ds-cfg-collation: ar-KW:1.3.6.1.4.1.42.2.27.9.4.11.1 -ds-cfg-collation: ar-LB:1.3.6.1.4.1.42.2.27.9.4.12.1 -ds-cfg-collation: ar-LY:1.3.6.1.4.1.42.2.27.9.4.13.1 -ds-cfg-collation: ar-MA:1.3.6.1.4.1.42.2.27.9.4.14.1 -ds-cfg-collation: ar-OM:1.3.6.1.4.1.42.2.27.9.4.15.1 -ds-cfg-collation: ar-QA:1.3.6.1.4.1.42.2.27.9.4.16.1 -ds-cfg-collation: ar-SA:1.3.6.1.4.1.42.2.27.9.4.17.1 -ds-cfg-collation: ar-SD:1.3.6.1.4.1.42.2.27.9.4.18.1 -ds-cfg-collation: ar-SY:1.3.6.1.4.1.42.2.27.9.4.19.1 -ds-cfg-collation: ar-TN:1.3.6.1.4.1.42.2.27.9.4.20.1 -ds-cfg-collation: ar-YE:1.3.6.1.4.1.42.2.27.9.4.21.1 -ds-cfg-collation: be:1.3.6.1.4.1.42.2.27.9.4.22.1 -ds-cfg-collation: bg:1.3.6.1.4.1.42.2.27.9.4.23.1 -#ds-cfg-collation: bn:1.3.6.1.4.1.42.2.27.9.4.24.1 -ds-cfg-collation: ca:1.3.6.1.4.1.42.2.27.9.4.25.1 -ds-cfg-collation: cs:1.3.6.1.4.1.42.2.27.9.4.26.1 -ds-cfg-collation: da:1.3.6.1.4.1.42.2.27.9.4.27.1 -ds-cfg-collation: de:1.3.6.1.4.1.142.2.27.9.4.28.1 -ds-cfg-collation: de-DE:1.3.6.1.4.1.142.2.27.9.4.28.1 -ds-cfg-collation: de-AT:1.3.6.1.4.1.42.2.27.9.4.29.1 -#ds-cfg-collation: de-BE:1.3.6.1.4.1.42.2.27.9.4.30.1 -ds-cfg-collation: de-CH:1.3.6.1.4.1.42.2.27.9.4.31.1 -ds-cfg-collation: de-LU:1.3.6.1.4.1.42.2.27.9.4.32.1 -ds-cfg-collation: el:1.3.6.1.4.1.42.2.27.9.4.33.1 -ds-cfg-collation: en:1.3.6.1.4.1.42.2.27.9.4.34.1 -ds-cfg-collation: en-US:1.3.6.1.4.1.42.2.27.9.4.34.1 -ds-cfg-collation: en-AU:1.3.6.1.4.1.42.2.27.9.4.35.1 -ds-cfg-collation: en-CA:1.3.6.1.4.1.42.2.27.9.4.36.1 -ds-cfg-collation: en-GB:1.3.6.1.4.1.42.2.27.9.4.37.1 -#ds-cfg-collation: en-HK:1.3.6.1.4.1.42.2.27.9.4.38.1 -ds-cfg-collation: en-IE:1.3.6.1.4.1.42.2.27.9.4.39.1 -ds-cfg-collation: en-IN:1.3.6.1.4.1.42.2.27.9.4.40.1 -#ds-cfg-collation: en-MT:1.3.6.1.4.1.42.2.27.9.4.41.1 -ds-cfg-collation: en-NZ:1.3.6.1.4.1.42.2.27.9.4.42.1 -#ds-cfg-collation: en-PH:1.3.6.1.4.1.42.2.27.9.4.43.1 -#ds-cfg-collation: en-SG:1.3.6.1.4.1.42.2.27.9.4.44.1 -#ds-cfg-collation: en-VI:1.3.6.1.4.1.42.2.27.9.4.45.1 -ds-cfg-collation: en-ZA:1.3.6.1.4.1.42.2.27.9.4.46.1 -#ds-cfg-collation: en-ZW:1.3.6.1.4.1.42.2.27.9.4.47.1 -#ds-cfg-collation: eo:1.3.6.1.4.1.42.2.27.9.4.48.1 -ds-cfg-collation: es:1.3.6.1.4.1.42.2.27.9.4.49.1 -ds-cfg-collation: es-ES:1.3.6.1.4.1.42.2.27.9.4.49.1 -ds-cfg-collation: es-AR:1.3.6.1.4.1.42.2.27.9.4.50.1 -ds-cfg-collation: es-BO:1.3.6.1.4.1.42.2.27.9.4.51.1 -ds-cfg-collation: es-CL:1.3.6.1.4.1.42.2.27.9.4.52.1 -ds-cfg-collation: es-CO:1.3.6.1.4.1.42.2.27.9.4.53.1 -ds-cfg-collation: es-CR:1.3.6.1.4.1.42.2.27.9.4.54.1 -ds-cfg-collation: es-DO:1.3.6.1.4.1.42.2.27.9.4.55.1 -ds-cfg-collation: es-EC:1.3.6.1.4.1.42.2.27.9.4.56.1 -ds-cfg-collation: es-GT:1.3.6.1.4.1.42.2.27.9.4.57.1 -ds-cfg-collation: es-HN:1.3.6.1.4.1.42.2.27.9.4.58.1 -ds-cfg-collation: es-MX:1.3.6.1.4.1.42.2.27.9.4.59.1 -ds-cfg-collation: es-NI:1.3.6.1.4.1.42.2.27.9.4.60.1 -ds-cfg-collation: es-PA:1.3.6.1.4.1.42.2.27.9.4.61.1 -ds-cfg-collation: es-PE:1.3.6.1.4.1.42.2.27.9.4.62.1 -ds-cfg-collation: es-PR:1.3.6.1.4.1.42.2.27.9.4.63.1 -ds-cfg-collation: es-PY:1.3.6.1.4.1.42.2.27.9.4.64.1 -ds-cfg-collation: es-SV:1.3.6.1.4.1.42.2.27.9.4.65.1 -#ds-cfg-collation: es-US:1.3.6.1.4.1.42.2.27.9.4.66.1 -ds-cfg-collation: es-UY:1.3.6.1.4.1.42.2.27.9.4.67.1 -ds-cfg-collation: es-VE:1.3.6.1.4.1.42.2.27.9.4.68.1 -ds-cfg-collation: et:1.3.6.1.4.1.42.2.27.9.4.69.1 -#ds-cfg-collation: eu:1.3.6.1.4.1.42.2.27.9.4.70.1 -#ds-cfg-collation: fa:1.3.6.1.4.1.42.2.27.9.4.71.1 -#ds-cfg-collation: fa-IN:1.3.6.1.4.1.42.2.27.9.4.72.1 -#ds-cfg-collation: fa-IR:1.3.6.1.4.1.42.2.27.9.4.73.1 -ds-cfg-collation: fi:1.3.6.1.4.1.42.2.27.9.4.74.1 -#ds-cfg-collation: fo:1.3.6.1.4.1.42.2.27.9.4.75.1 -ds-cfg-collation: fr:1.3.6.1.4.1.42.2.27.9.4.76.1 -ds-cfg-collation: fr-FR:1.3.6.1.4.1.42.2.27.9.4.76.1 -ds-cfg-collation: fr-BE:1.3.6.1.4.1.42.2.27.9.4.77.1 -ds-cfg-collation: fr-CA:1.3.6.1.4.1.42.2.27.9.4.78.1 -ds-cfg-collation: fr-CH:1.3.6.1.4.1.42.2.27.9.4.79.1 -ds-cfg-collation: fr-LU:1.3.6.1.4.1.42.2.27.9.4.80.1 -#ds-cfg-collation: ga:1.3.6.1.4.1.42.2.27.9.4.81.1 -#ds-cfg-collation: gl:1.3.6.1.4.1.42.2.27.9.4.82.1 -#ds-cfg-collation: gu:1.3.6.1.4.1.42.2.27.9.4.83.1 -#ds-cfg-collation: gv:1.3.6.1.4.1.42.2.27.9.4.84.1 -ds-cfg-collation: he:1.3.6.1.4.1.42.2.27.9.4.85.1 -#ds-cfg-collation: hi:1.3.6.1.4.1.42.2.27.9.4.86.1 -ds-cfg-collation: hr:1.3.6.1.4.1.42.2.27.9.4.87.1 -ds-cfg-collation: hu:1.3.6.1.4.1.42.2.27.9.4.88.1 -#ds-cfg-collation: hy:1.3.6.1.4.1.42.2.27.9.4.89.1 -#ds-cfg-collation: id:1.3.6.1.4.1.42.2.27.9.4.90.1 -ds-cfg-collation: is:1.3.6.1.4.1.42.2.27.9.4.91.1 -ds-cfg-collation: it:1.3.6.1.4.1.42.2.27.9.4.92.1 -ds-cfg-collation: it-CH:1.3.6.1.4.1.42.2.27.9.4.93.1 -ds-cfg-collation: ja:1.3.6.1.4.1.42.2.27.9.4.94.1 -#ds-cfg-collation: kl:1.3.6.1.4.1.42.2.27.9.4.95.1 -#ds-cfg-collation: kn:1.3.6.1.4.1.42.2.27.9.4.96.1 -ds-cfg-collation: ko:1.3.6.1.4.1.42.2.27.9.4.97.1 -#ds-cfg-collation: kok:1.3.6.1.4.1.42.2.27.9.4.98.1 -#ds-cfg-collation: kw:1.3.6.1.4.1.42.2.27.9.4.99.1 -ds-cfg-collation: lt:1.3.6.1.4.1.42.2.27.9.4.100.1 -ds-cfg-collation: lv:1.3.6.1.4.1.42.2.27.9.4.101.1 -ds-cfg-collation: mk:1.3.6.1.4.1.42.2.27.9.4.102.1 -#ds-cfg-collation: mr:1.3.6.1.4.1.42.2.27.9.4.103.1 -#ds-cfg-collation: mt:1.3.6.1.4.1.42.2.27.9.4.104.1 -ds-cfg-collation: nl:1.3.6.1.4.1.42.2.27.9.4.105.1 -ds-cfg-collation: nl-NL:1.3.6.1.4.1.42.2.27.9.4.105.1 -ds-cfg-collation: nl-BE:1.3.6.1.4.1.42.2.27.9.4.106.1 -ds-cfg-collation: no:1.3.6.1.4.1.42.2.27.9.4.107.1 -ds-cfg-collation: no-NO:1.3.6.1.4.1.42.2.27.9.4.107.1 -ds-cfg-collation: no-NO-NY:1.3.6.1.4.1.42.2.27.9.4.108.1 -#ds-cfg-collation: nn:1.3.6.1.4.1.42.2.27.9.4.109.1 -#ds-cfg-collation: nb:1.3.6.1.4.1.42.2.27.9.4.110.1 -#ds-cfg-collation: no-NO-B:1.3.6.1.4.1.42.2.27.9.4.110.1 -#ds-cfg-collation: om:1.3.6.1.4.1.42.2.27.9.4.111.1 -#ds-cfg-collation: om-ET:1.3.6.1.4.1.42.2.27.9.4.112.1 -#ds-cfg-collation: om-KE:1.3.6.1.4.1.42.2.27.9.4.113.1 -ds-cfg-collation: pl:1.3.6.1.4.1.42.2.27.9.4.114.1 -ds-cfg-collation: pt:1.3.6.1.4.1.42.2.27.9.4.115.1 -ds-cfg-collation: pt-PT:1.3.6.1.4.1.42.2.27.9.4.115.1 -ds-cfg-collation: pt-BR:1.3.6.1.4.1.42.2.27.9.4.116.1 -ds-cfg-collation: ro:1.3.6.1.4.1.42.2.27.9.4.117.1 -ds-cfg-collation: ru:1.3.6.1.4.1.42.2.27.9.4.118.1 -ds-cfg-collation: ru-RU:1.3.6.1.4.1.42.2.27.9.4.118.1 -#ds-cfg-collation: ru-UA:1.3.6.1.4.1.42.2.27.9.4.119.1 -#ds-cfg-collation: sh:1.3.6.1.4.1.42.2.27.9.4.120.1 -ds-cfg-collation: sk:1.3.6.1.4.1.42.2.27.9.4.121.1 -ds-cfg-collation: sl:1.3.6.1.4.1.42.2.27.9.4.122.1 -#ds-cfg-collation: so:1.3.6.1.4.1.42.2.27.9.4.123.1 -#ds-cfg-collation: so-SO:1.3.6.1.4.1.42.2.27.9.4.123.1 -#ds-cfg-collation: so-DJ:1.3.6.1.4.1.42.2.27.9.4.124.1 -#ds-cfg-collation: so-ET:1.3.6.1.4.1.42.2.27.9.4.125.1 -#ds-cfg-collation: so-KE:1.3.6.1.4.1.42.2.27.9.4.126.1 -ds-cfg-collation: sq:1.3.6.1.4.1.42.2.27.9.4.127.1 -ds-cfg-collation: sr:1.3.6.1.4.1.42.2.27.9.4.128.1 -ds-cfg-collation: sv:1.3.6.1.4.1.42.2.27.9.4.129.1 -ds-cfg-collation: sv-SE:1.3.6.1.4.1.42.2.27.9.4.129.1 -#ds-cfg-collation: sv-FI:1.3.6.1.4.1.42.2.27.9.4.130.1 -#ds-cfg-collation: sw:1.3.6.1.4.1.42.2.27.9.4.131.1 -#ds-cfg-collation: sw-KE:1.3.6.1.4.1.42.2.27.9.4.132.1 -#ds-cfg-collation: sw-TZ:1.3.6.1.4.1.42.2.27.9.4.133.1 -#ds-cfg-collation: ta:1 3 1.3.6.1.4.1.42.2.27.9.4.134.1 -#ds-cfg-collation: te:1.3.6.1.4.1.42.2.27.9.4.135.1 -ds-cfg-collation: th:1.3.6.1.4.1.42.2.27.9.4.136.1 -#ds-cfg-collation: ti:1.3.6.1.4.1.42.2.27.9.4.137.1 -#ds-cfg-collation: ti-ER:1.3.6.1.4.1.42.2.27.9.4.138.1 -#ds-cfg-collation: ti-ET:1.3.6.1.4.1.42.2.27.9.4.139.1 -ds-cfg-collation: tr:1.3.6.1.4.1.42.2.27.9.4.140.1 -ds-cfg-collation: uk:1.3.6.1.4.1.42.2.27.9.4.141.1 -ds-cfg-collation: vi:1.3.6.1.4.1.42.2.27.9.4.142.1 -ds-cfg-collation: zh:1.3.6.1.4.1.42.2.27.9.4.143.1 -ds-cfg-collation: zh-CN:1.3.6.1.4.1.42.2.27.9.4.144.1 -ds-cfg-collation: zh-HK:1.3.6.1.4.1.42.2.27.9.4.145.1 -#ds-cfg-collation: zh-MO:1.3.6.1.4.1.42.2.27.9.4.146.1 -#ds-cfg-collation: zh-SG:1.3.6.1.4.1.42.2.27.9.4.147.1 -ds-cfg-collation: zh-TW:1.3.6.1.4.1.42.2.27.9.4.148.1 - -dn: cn=Directory String First Component Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Directory String First Component Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.DirectoryStringFirstComponentEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Distinguished Name Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Distinguished Name Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.DistinguishedNameEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Double Metaphone Approximate Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-approximate-matching-rule -cn: Double Metaphone Approximate Matching Rule -ds-cfg-java-class: org.opends.server.schema.DoubleMetaphoneApproximateMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Generalized Time Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Generalized Time Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.GeneralizedTimeEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Generalized Time Ordering Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-ordering-matching-rule -cn: Generalized Time Ordering Matching Rule -ds-cfg-java-class: org.opends.server.schema.GeneralizedTimeOrderingMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Historical CSN Ordering Matching Rule,cn=Matching Rules,cn=config -objectClass: ds-cfg-ordering-matching-rule -objectClass: top -objectClass: ds-cfg-matching-rule -ds-cfg-java-class: org.opends.server.replication.plugin.HistoricalCsnOrderingMatchingRuleFactory -ds-cfg-enabled: true -cn: Historical CSN Ordering Matching Rule - -dn: cn=Integer Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Integer Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.IntegerEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Integer Ordering Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-ordering-matching-rule -cn: Integer Ordering Matching Rule -ds-cfg-java-class: org.opends.server.schema.IntegerOrderingMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Integer First Component Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Integer First Component Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.IntegerFirstComponentEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Keyword Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Keyword Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.KeywordEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Numeric String Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Numeric String Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.NumericStringEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Numeric String Ordering Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-ordering-matching-rule -cn: Numeric String Ordering Matching Rule -ds-cfg-java-class: org.opends.server.schema.NumericStringOrderingMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Numeric String Substring Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-substring-matching-rule -cn: Numeric String Substring Matching Rule -ds-cfg-java-class: org.opends.server.schema.NumericStringSubstringMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Object Identifier Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Object Identifier Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.ObjectIdentifierEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Object Identifier First Component Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Object Identifier First Component Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.ObjectIdentifierFirstComponentEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Octet String Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Octet String Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.OctetStringEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Octet String Ordering Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-ordering-matching-rule -cn: Octet String Ordering Matching Rule -ds-cfg-java-class: org.opends.server.schema.OctetStringOrderingMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Octet String Substring Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-substring-matching-rule -cn: Octet String Substring Matching Rule -ds-cfg-java-class: org.opends.server.schema.OctetStringSubstringMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Presentation Address Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Presentation Address Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.PresentationAddressEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Protocol Information Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Protocol Information Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.ProtocolInformationEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Telephone Number Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Telephone Number Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.TelephoneNumberEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Telephone Number Substring Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-substring-matching-rule -cn: Telephone Number Substring Matching Rule -ds-cfg-java-class: org.opends.server.schema.TelephoneNumberSubstringMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Time Based Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-extensible-matching-rule -cn: Time Based Matching Rule -ds-cfg-java-class: org.opends.server.schema.TimeBasedMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Unique Member Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Unique Member Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.UniqueMemberEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=User Password Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: User Password Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.UserPasswordEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=User Password Exact Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: User Password Exact Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.UserPasswordExactEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=UUID Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: UUID Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.UUIDEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=UUID Ordering Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-ordering-matching-rule -cn: UUID Ordering Matching Rule -ds-cfg-java-class: org.opends.server.schema.UUIDOrderingMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Word Equality Matching Rule,cn=Matching Rules,cn=config -objectClass: top -objectClass: ds-cfg-matching-rule -objectClass: ds-cfg-equality-matching-rule -cn: Word Equality Matching Rule -ds-cfg-java-class: org.opends.server.schema.WordEqualityMatchingRuleFactory -ds-cfg-enabled: true - -dn: cn=Monitor Providers,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Monitor Providers - -dn: cn=Client Connections,cn=Monitor Providers,cn=config -objectClass: top -objectClass: ds-cfg-monitor-provider -objectClass: ds-cfg-client-connection-monitor-provider -cn: Client Connections -ds-cfg-java-class: org.opends.server.monitors.ClientConnectionMonitorProvider -ds-cfg-enabled: true - -dn: cn=Entry Caches,cn=Monitor Providers,cn=config -objectClass: top -objectClass: ds-cfg-monitor-provider -objectClass: ds-cfg-entry-cache-monitor-provider -cn: Entry Caches -ds-cfg-java-class: org.opends.server.monitors.EntryCacheMonitorProvider -ds-cfg-enabled: true - -dn: cn=JVM Memory Usage,cn=Monitor Providers,cn=config -objectClass: top -objectClass: ds-cfg-monitor-provider -objectClass: ds-cfg-memory-usage-monitor-provider -cn: JVM Memory Usage -ds-cfg-java-class: org.opends.server.monitors.MemoryUsageMonitorProvider -ds-cfg-enabled: true - -dn: cn=JVM Stack Trace,cn=Monitor Providers,cn=config -objectClass: top -objectClass: ds-cfg-monitor-provider -objectClass: ds-cfg-stack-trace-monitor-provider -cn: JVM Stack Trace -ds-cfg-java-class: org.opends.server.monitors.StackTraceMonitorProvider -ds-cfg-enabled: true - -dn: cn=System Info,cn=Monitor Providers,cn=config -objectClass: top -objectClass: ds-cfg-monitor-provider -objectClass: ds-cfg-system-info-monitor-provider -cn: System Info -ds-cfg-java-class: org.opends.server.monitors.SystemInfoMonitorProvider -ds-cfg-enabled: true - -dn: cn=Version,cn=Monitor Providers,cn=config -objectClass: top -objectClass: ds-cfg-monitor-provider -objectClass: ds-cfg-version-monitor-provider -cn: Version -ds-cfg-java-class: org.opends.server.monitors.VersionMonitorProvider -ds-cfg-enabled: true - -dn: cn=Password Generators,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Password Generators - -dn: cn=Random Password Generator,cn=Password Generators,cn=config -objectClass: top -objectClass: ds-cfg-password-generator -objectClass: ds-cfg-random-password-generator -cn: Random Password Generator -ds-cfg-java-class: org.opends.server.extensions.RandomPasswordGenerator -ds-cfg-enabled: true -ds-cfg-password-character-set: alpha:abcdefghijklmnopqrstuvwxyz -ds-cfg-password-character-set: numeric:0123456789 -ds-cfg-password-format: alpha:3,numeric:2,alpha:3 - -dn: cn=Password Policies,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Password Policies - -dn: cn=Default Password Policy,cn=Password Policies,cn=config -objectClass: top -objectClass: ds-cfg-password-policy -cn: Default Password Policy -ds-cfg-password-attribute: userPassword -ds-cfg-default-password-storage-scheme: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config -ds-cfg-allow-expired-password-changes: false -ds-cfg-allow-multiple-password-values: false -ds-cfg-allow-pre-encoded-passwords: false -ds-cfg-allow-user-password-changes: true -ds-cfg-expire-passwords-without-warning: false -ds-cfg-force-change-on-add: false -ds-cfg-force-change-on-reset: false -ds-cfg-grace-login-count: 0 -ds-cfg-idle-lockout-interval: 0 seconds -ds-cfg-lockout-failure-count: 0 -ds-cfg-lockout-duration: 0 seconds -ds-cfg-lockout-failure-expiration-interval: 0 seconds -ds-cfg-min-password-age: 0 seconds -ds-cfg-max-password-age: 0 seconds -ds-cfg-max-password-reset-age: 0 seconds -ds-cfg-password-expiration-warning-interval: 5 days -ds-cfg-password-generator: cn=Random Password Generator,cn=Password Generators,cn=config -ds-cfg-password-change-requires-current-password: false -ds-cfg-require-secure-authentication: false -ds-cfg-require-secure-password-changes: false -ds-cfg-skip-validation-for-administrators: false -ds-cfg-state-update-failure-policy: reactive -ds-cfg-password-history-count: 0 -ds-cfg-password-history-duration: 0 seconds - -dn: cn=Root Password Policy,cn=Password Policies,cn=config -objectClass: top -objectClass: ds-cfg-password-policy -cn: Root Password Policy -ds-cfg-password-attribute: userPassword -ds-cfg-default-password-storage-scheme: cn=Salted SHA-512,cn=Password Storage Schemes,cn=config -ds-cfg-allow-expired-password-changes: false -ds-cfg-allow-multiple-password-values: false -ds-cfg-allow-pre-encoded-passwords: false -ds-cfg-allow-user-password-changes: true -ds-cfg-expire-passwords-without-warning: false -ds-cfg-force-change-on-add: false -ds-cfg-force-change-on-reset: false -ds-cfg-grace-login-count: 0 -ds-cfg-idle-lockout-interval: 0 seconds -ds-cfg-lockout-failure-count: 0 -ds-cfg-lockout-duration: 0 seconds -ds-cfg-lockout-failure-expiration-interval: 0 seconds -ds-cfg-min-password-age: 0 seconds -ds-cfg-max-password-age: 0 seconds -ds-cfg-max-password-reset-age: 0 seconds -ds-cfg-password-expiration-warning-interval: 5 days -ds-cfg-password-change-requires-current-password: true -ds-cfg-require-secure-authentication: false -ds-cfg-require-secure-password-changes: false -ds-cfg-skip-validation-for-administrators: false -ds-cfg-state-update-failure-policy: ignore -ds-cfg-password-history-count: 0 -ds-cfg-password-history-duration: 0 seconds - -dn: cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Password Storage Schemes - -dn: cn=Base64,cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-password-storage-scheme -objectClass: ds-cfg-base64-password-storage-scheme -cn: Base64 -ds-cfg-java-class: org.opends.server.extensions.Base64PasswordStorageScheme -ds-cfg-enabled: true - -dn: cn=Clear,cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-password-storage-scheme -objectClass: ds-cfg-clear-password-storage-scheme -cn: Clear -ds-cfg-java-class: org.opends.server.extensions.ClearPasswordStorageScheme -ds-cfg-enabled: true - -dn: cn=CRYPT,cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-password-storage-scheme -objectClass: ds-cfg-crypt-password-storage-scheme -cn: CRYPT -ds-cfg-java-class: org.opends.server.extensions.CryptPasswordStorageScheme -ds-cfg-enabled: true -ds-cfg-crypt-password-storage-encryption-algorithm: unix - -dn: cn=MD5,cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-password-storage-scheme -objectClass: ds-cfg-md5-password-storage-scheme -cn: MD5 -ds-cfg-java-class: org.opends.server.extensions.MD5PasswordStorageScheme -ds-cfg-enabled: true - -dn: cn=Salted MD5,cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-password-storage-scheme -objectClass: ds-cfg-salted-md5-password-storage-scheme -cn: Salted MD5 -ds-cfg-java-class: org.opends.server.extensions.SaltedMD5PasswordStorageScheme -ds-cfg-enabled: true - -dn: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-password-storage-scheme -objectClass: ds-cfg-salted-sha1-password-storage-scheme -cn: Salted SHA-1 -ds-cfg-java-class: org.opends.server.extensions.SaltedSHA1PasswordStorageScheme -ds-cfg-enabled: true - -dn: cn=Salted SHA-256,cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-password-storage-scheme -objectClass: ds-cfg-salted-sha256-password-storage-scheme -cn: Salted SHA-256 -ds-cfg-java-class: org.opends.server.extensions.SaltedSHA256PasswordStorageScheme -ds-cfg-enabled: true - -dn: cn=Salted SHA-384,cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-password-storage-scheme -objectClass: ds-cfg-salted-sha384-password-storage-scheme -cn: Salted SHA-384 -ds-cfg-java-class: org.opends.server.extensions.SaltedSHA384PasswordStorageScheme -ds-cfg-enabled: true - -dn: cn=Salted SHA-512,cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-password-storage-scheme -objectClass: ds-cfg-salted-sha512-password-storage-scheme -cn: Salted SHA-512 -ds-cfg-java-class: org.opends.server.extensions.SaltedSHA512PasswordStorageScheme -ds-cfg-enabled: true - -dn: cn=SHA-1,cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-password-storage-scheme -objectClass: ds-cfg-sha1-password-storage-scheme -cn: SHA-1 -ds-cfg-java-class: org.opends.server.extensions.SHA1PasswordStorageScheme -ds-cfg-enabled: true - -dn: cn=3DES,cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-password-storage-scheme -objectClass: ds-cfg-triple-des-password-storage-scheme -cn: 3DES -ds-cfg-java-class: org.opends.server.extensions.TripleDESPasswordStorageScheme -ds-cfg-enabled: true - -dn: cn=AES,cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-password-storage-scheme -objectClass: ds-cfg-aes-password-storage-scheme -cn: AES -ds-cfg-java-class: org.opends.server.extensions.AESPasswordStorageScheme -ds-cfg-enabled: true - -dn: cn=Blowfish,cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-password-storage-scheme -objectClass: ds-cfg-blowfish-password-storage-scheme -cn: Blowfish -ds-cfg-java-class: org.opends.server.extensions.BlowfishPasswordStorageScheme -ds-cfg-enabled: true - -dn: cn=RC4,cn=Password Storage Schemes,cn=config -objectClass: top -objectClass: ds-cfg-password-storage-scheme -objectClass: ds-cfg-rc4-password-storage-scheme -cn: RC4 -ds-cfg-java-class: org.opends.server.extensions.RC4PasswordStorageScheme -ds-cfg-enabled: true - -dn: cn=Password Validators,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Password Validators - -dn: cn=Attribute Value,cn=Password Validators,cn=config -objectClass: top -objectClass: ds-cfg-password-validator -objectClass: ds-cfg-attribute-value-password-validator -cn: Attribute Value -ds-cfg-java-class: org.opends.server.extensions.AttributeValuePasswordValidator -ds-cfg-enabled: true -ds-cfg-test-reversed-password: true - -dn: cn=Character Set,cn=Password Validators,cn=config -objectClass: top -objectClass: ds-cfg-password-validator -objectClass: ds-cfg-character-set-password-validator -cn: Character Set -ds-cfg-java-class: org.opends.server.extensions.CharacterSetPasswordValidator -ds-cfg-enabled: true -ds-cfg-character-set: 1:abcdefghijklmnopqrstuvwxyz -ds-cfg-character-set: 1:ABCDEFGHIJKLMNOPQRSTUVWXYZ -ds-cfg-character-set: 1:0123456789 -ds-cfg-character-set: 1:~!@#$%^&*()-_=+[]{}|;:,.<>/? -ds-cfg-allow-unclassified-characters: true - -dn: cn=Dictionary,cn=Password Validators,cn=config -objectClass: top -objectClass: ds-cfg-password-validator -objectClass: ds-cfg-dictionary-password-validator -cn: Dictionary -ds-cfg-java-class: org.opends.server.extensions.DictionaryPasswordValidator -ds-cfg-enabled: false -ds-cfg-dictionary-file: config/wordlist.txt -ds-cfg-case-sensitive-validation: false -ds-cfg-test-reversed-password: true - -dn: cn=Length-Based Password Validator,cn=Password Validators,cn=config -objectClass: top -objectClass: ds-cfg-password-validator -objectClass: ds-cfg-length-based-password-validator -cn: Length-Based Password Validator -ds-cfg-java-class: org.opends.server.extensions.LengthBasedPasswordValidator -ds-cfg-enabled: true -ds-cfg-min-password-length: 6 -ds-cfg-max-password-length: 0 - -dn: cn=Repeated Characters,cn=Password Validators,cn=config -objectClass: top -objectClass: ds-cfg-password-validator -objectClass: ds-cfg-repeated-characters-password-validator -cn: Repeated Characters -ds-cfg-java-class: org.opends.server.extensions.RepeatedCharactersPasswordValidator -ds-cfg-enabled: true -ds-cfg-max-consecutive-length: 2 -ds-cfg-case-sensitive-validation: false - -dn: cn=Similarity-Based Password Validator,cn=Password Validators,cn=config -objectClass: top -objectClass: ds-cfg-password-validator -objectClass: ds-cfg-similarity-based-password-validator -cn: Similarity-Based Password Validator -ds-cfg-java-class: org.opends.server.extensions.SimilarityBasedPasswordValidator -ds-cfg-enabled: true -ds-cfg-min-password-difference: 3 - -dn: cn=Unique Characters,cn=Password Validators,cn=config -objectClass: top -objectClass: ds-cfg-password-validator -objectClass: ds-cfg-unique-characters-password-validator -cn: Unique Characters -ds-cfg-java-class: org.opends.server.extensions.UniqueCharactersPasswordValidator -ds-cfg-enabled: true -ds-cfg-min-unique-characters: 5 -ds-cfg-case-sensitive-validation: false - -dn: cn=Plugins,cn=config -objectClass: top -objectClass: ds-cfg-branch -objectClass: ds-cfg-plugin-root -cn: Plugins - -dn: cn=7-Bit Clean,cn=Plugins,cn=config -objectClass: top -objectClass: ds-cfg-plugin -objectClass: ds-cfg-seven-bit-clean-plugin -cn: 7-Bit Clean -ds-cfg-java-class: org.opends.server.plugins.SevenBitCleanPlugin -ds-cfg-enabled: false -ds-cfg-plugin-type: ldifImport -ds-cfg-plugin-type: preParseAdd -ds-cfg-plugin-type: preParseModify -ds-cfg-plugin-type: preParseModifyDN -ds-cfg-attribute-type: uid -ds-cfg-attribute-type: mail -ds-cfg-attribute-type: userPassword -ds-cfg-invoke-for-internal-operations: true - -dn: cn=Entry UUID,cn=Plugins,cn=config -objectClass: top -objectClass: ds-cfg-plugin -objectClass: ds-cfg-entry-uuid-plugin -cn: Entry UUID -ds-cfg-java-class: org.opends.server.plugins.EntryUUIDPlugin -ds-cfg-enabled: true -ds-cfg-plugin-type: ldifImport -ds-cfg-plugin-type: preOperationAdd -ds-cfg-invoke-for-internal-operations: true - -dn: cn=LastMod,cn=Plugins,cn=config -objectClass: top -objectClass: ds-cfg-plugin -objectClass: ds-cfg-last-mod-plugin -cn: LastMod -ds-cfg-java-class: org.opends.server.plugins.LastModPlugin -ds-cfg-enabled: true -ds-cfg-plugin-type: preOperationAdd -ds-cfg-plugin-type: preOperationModify -ds-cfg-plugin-type: preOperationModifyDN -ds-cfg-invoke-for-internal-operations: true - -dn: cn=LDAP Attribute Description List,cn=Plugins,cn=config -objectClass: top -objectClass: ds-cfg-plugin -objectClass: ds-cfg-ldap-attribute-description-list-plugin -cn: LDAP Attribute Description List -ds-cfg-java-class: org.opends.server.plugins.LDAPADListPlugin -ds-cfg-enabled: true -ds-cfg-plugin-type: preParseSearch -ds-cfg-invoke-for-internal-operations: true - -dn: cn=Password Policy Import,cn=Plugins,cn=config -objectClass: top -objectClass: ds-cfg-plugin -objectClass: ds-cfg-password-policy-import-plugin -cn: Password Policy Import -ds-cfg-java-class: org.opends.server.plugins.PasswordPolicyImportPlugin -ds-cfg-enabled: true -ds-cfg-plugin-type: ldifImport -ds-cfg-default-user-password-storage-scheme: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config -ds-cfg-default-auth-password-storage-scheme: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config -ds-cfg-invoke-for-internal-operations: false - -dn: cn=Profiler,cn=Plugins,cn=config -objectClass: top -objectClass: ds-cfg-plugin -objectClass: ds-cfg-profiler-plugin -cn: Profiler -ds-cfg-enabled: true -ds-cfg-java-class: org.opends.server.plugins.profiler.ProfilerPlugin -ds-cfg-plugin-type: startup -ds-cfg-enable-profiling-on-startup: false -ds-cfg-profile-directory: logs -ds-cfg-profile-sample-interval: 10 milliseconds -ds-cfg-invoke-for-internal-operations: false - -dn: cn=Referential Integrity,cn=Plugins,cn=config -objectClass: top -objectClass: ds-cfg-plugin -objectClass: ds-cfg-referential-integrity-plugin -cn: Referential Integrity -ds-cfg-java-class: org.opends.server.plugins.ReferentialIntegrityPlugin -ds-cfg-enabled: false -ds-cfg-plugin-type: postOperationDelete -ds-cfg-plugin-type: postOperationModifyDN -ds-cfg-plugin-type: subordinateModifyDN -ds-cfg-plugin-type: subordinateDelete -ds-cfg-attribute-type: member -ds-cfg-attribute-type: uniqueMember -ds-cfg-invoke-for-internal-operations: true - -dn: cn=UID Unique Attribute,cn=Plugins,cn=config -objectClass: top -objectClass: ds-cfg-plugin -objectClass: ds-cfg-unique-attribute-plugin -cn: UID Unique Attribute -ds-cfg-java-class: org.opends.server.plugins.UniqueAttributePlugin -ds-cfg-enabled: false -ds-cfg-plugin-type: preOperationAdd -ds-cfg-plugin-type: preOperationModify -ds-cfg-plugin-type: preOperationModifyDN -ds-cfg-plugin-type: postOperationAdd -ds-cfg-plugin-type: postOperationModify -ds-cfg-plugin-type: postOperationModifyDN -ds-cfg-plugin-type: postSynchronizationAdd -ds-cfg-plugin-type: postSynchronizationModify -ds-cfg-plugin-type: postSynchronizationModifyDN -ds-cfg-type: uid -ds-cfg-invoke-for-internal-operations: true - -dn: cn=Network Group,cn=Plugins,cn=config -objectClass: top -objectClass: ds-cfg-plugin -objectClass: ds-cfg-network-group-plugin -cn: Network Group -ds-cfg-java-class: org.opends.server.core.networkgroups.NetworkGroupPlugin -ds-cfg-enabled: true -ds-cfg-invoke-for-internal-operations: false -ds-cfg-plugin-type: postConnect -ds-cfg-plugin-type: preParseAdd -ds-cfg-plugin-type: preParseBind -ds-cfg-plugin-type: preParseCompare -ds-cfg-plugin-type: preParseDelete -ds-cfg-plugin-type: preParseExtended -ds-cfg-plugin-type: preParseModify -ds-cfg-plugin-type: preParseModifyDn -ds-cfg-plugin-type: preParseSearch -ds-cfg-plugin-type: preParseUnbind -ds-cfg-plugin-type: postResponseBind -ds-cfg-plugin-type: postResponseExtended - -dn: cn=Change Number Control,cn=Plugins,cn=config -objectClass: top -objectClass: ds-cfg-plugin -objectClass: ds-cfg-change-number-control-plugin -cn: Change Number Control -ds-cfg-enabled: true -ds-cfg-plugin-type: postOperationAdd -ds-cfg-plugin-type: postOperationDelete -ds-cfg-plugin-type: postOperationModify -ds-cfg-plugin-type: postOperationModifyDn -ds-cfg-java-class: org.opends.server.plugins.ChangeNumberControlPlugin - -dn: cn=Fractional Replication LDIF Import,cn=Plugins,cn=config -objectClass: top -objectClass: ds-cfg-plugin -objectClass: ds-cfg-fractional-ldif-import-plugin -cn: Fractional Replication LDIF Import -ds-cfg-java-class: org.opends.server.replication.plugin.FractionalLDIFImportPlugin -ds-cfg-enabled: true -ds-cfg-plugin-type: ldifImport -ds-cfg-plugin-type: ldifImportEnd -ds-cfg-invoke-for-internal-operations: true - -dn: cn=Root DNs,cn=config -objectClass: top -objectClass: ds-cfg-root-dn -cn: Root DNs -ds-cfg-default-root-privilege-name: bypass-lockdown -ds-cfg-default-root-privilege-name: bypass-acl -ds-cfg-default-root-privilege-name: modify-acl -ds-cfg-default-root-privilege-name: config-read -ds-cfg-default-root-privilege-name: config-write -ds-cfg-default-root-privilege-name: ldif-import -ds-cfg-default-root-privilege-name: ldif-export -ds-cfg-default-root-privilege-name: backend-backup -ds-cfg-default-root-privilege-name: backend-restore -ds-cfg-default-root-privilege-name: server-lockdown -ds-cfg-default-root-privilege-name: server-shutdown -ds-cfg-default-root-privilege-name: server-restart -ds-cfg-default-root-privilege-name: disconnect-client -ds-cfg-default-root-privilege-name: cancel-request -ds-cfg-default-root-privilege-name: password-reset -ds-cfg-default-root-privilege-name: update-schema -ds-cfg-default-root-privilege-name: privilege-change -ds-cfg-default-root-privilege-name: unindexed-search -ds-cfg-default-root-privilege-name: subentry-write - -dn: cn=Directory Manager,cn=Root DNs,cn=config -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -objectClass: ds-cfg-root-dn-user -cn: Directory Manager -givenName: Directory -sn: Manager -userPassword: {SSHA512}l1t43vVl7Uh03PpQ2vCsT0B7Q0HTi+tKJmH7tZTmSGaKrMHWHO1czfwEsjMgfbeQoiYQDGDuxolipR0H6ajMu1YHlTjPNG9Z -ds-cfg-alternate-bind-dn: cn=Directory Manager -ds-rlim-size-limit: 0 -ds-rlim-time-limit: 0 -ds-rlim-idle-time-limit: 0 -ds-rlim-lookthrough-limit: 0 -ds-pwp-password-policy-dn: cn=Root Password Policy,cn=Password Policies,cn=config - -dn: cn=Root DSE,cn=config -objectClass: top -objectClass: ds-cfg-root-dse-backend -cn: Root DSE -ds-cfg-show-all-attributes: false - -dn: cn=SASL Mechanisms,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: SASL Mechanisms - -dn: cn=ANONYMOUS,cn=SASL Mechanisms,cn=config -objectClass: top -objectClass: ds-cfg-sasl-mechanism-handler -objectClass: ds-cfg-anonymous-sasl-mechanism-handler -cn: ANONYMOUS -ds-cfg-java-class: org.opends.server.extensions.AnonymousSASLMechanismHandler -ds-cfg-enabled: false - -dn: cn=CRAM-MD5,cn=SASL Mechanisms,cn=config -objectClass: top -objectClass: ds-cfg-sasl-mechanism-handler -objectClass: ds-cfg-cram-md5-sasl-mechanism-handler -cn: CRAM-MD5 -ds-cfg-java-class: org.opends.server.extensions.CRAMMD5SASLMechanismHandler -ds-cfg-enabled: true -ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config - -dn: cn=DIGEST-MD5,cn=SASL Mechanisms,cn=config -objectClass: top -objectClass: ds-cfg-sasl-mechanism-handler -objectClass: ds-cfg-digest-md5-sasl-mechanism-handler -cn: DIGEST-MD5 -ds-cfg-java-class: org.opends.server.extensions.DigestMD5SASLMechanismHandler -ds-cfg-enabled: true -ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config - -dn: cn=EXTERNAL,cn=SASL Mechanisms,cn=config -objectClass: top -objectClass: ds-cfg-sasl-mechanism-handler -objectClass: ds-cfg-external-sasl-mechanism-handler -cn: EXTERNAL -ds-cfg-java-class: org.opends.server.extensions.ExternalSASLMechanismHandler -ds-cfg-enabled: true -ds-cfg-certificate-validation-policy: ifpresent -ds-cfg-certificate-attribute: userCertificate -ds-cfg-certificate-mapper: cn=Subject Equals DN,cn=Certificate Mappers,cn=config - -dn: cn=GSSAPI,cn=SASL Mechanisms,cn=config -objectClass: top -objectClass: ds-cfg-sasl-mechanism-handler -objectClass: ds-cfg-gssapi-sasl-mechanism-handler -cn: GSSAPI -ds-cfg-java-class: org.opends.server.extensions.GSSAPISASLMechanismHandler -ds-cfg-enabled: false -ds-cfg-identity-mapper: cn=Regular Expression,cn=Identity Mappers,cn=config -ds-cfg-keytab: /etc/krb5/krb5.keytab - -dn: cn=PLAIN,cn=SASL Mechanisms,cn=config -objectClass: top -objectClass: ds-cfg-sasl-mechanism-handler -objectClass: ds-cfg-plain-sasl-mechanism-handler -cn: PLAIN -ds-cfg-java-class: org.opends.server.extensions.PlainSASLMechanismHandler -ds-cfg-enabled: true -ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config - -dn: cn=Synchronization Providers,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Synchronization Providers - -dn: cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config -objectClass: top -objectClass: ds-cfg-synchronization-provider -objectClass: ds-cfg-replication-synchronization-provider -cn: Multimaster Synchronization -ds-cfg-enabled: true -ds-cfg-java-class: org.opends.server.replication.plugin.MultimasterReplication - -dn: cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: domains - -dn: cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Syntaxes - -dn: cn=Sun-defined Access Control Information,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Sun-defined Access Control Information -ds-cfg-java-class: org.opends.server.schema.AciSyntax -ds-cfg-enabled: true - -dn: cn=Attribute Type Description,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -objectClass: ds-cfg-attribute-type-description-attribute-syntax -cn: Attribute Type Description -ds-cfg-java-class: org.opends.server.schema.AttributeTypeSyntax -ds-cfg-enabled: true -ds-cfg-strip-syntax-min-upper-bound: false - -dn: cn=Authentication Password,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Authentiation Password -ds-cfg-java-class: org.opends.server.schema.AuthPasswordSyntax -ds-cfg-enabled: true - -dn: cn=Binary,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Binary -ds-cfg-java-class: org.opends.server.schema.BinarySyntax -ds-cfg-enabled: true - -dn: cn=Bit String,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Bit String -ds-cfg-java-class: org.opends.server.schema.BitStringSyntax -ds-cfg-enabled: true - -dn: cn=Boolean,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Boolean -ds-cfg-java-class: org.opends.server.schema.BooleanSyntax -ds-cfg-enabled: true - -dn: cn=Certificate,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Certificate -ds-cfg-java-class: org.opends.server.schema.CertificateSyntax -ds-cfg-enabled: true - -dn: cn=Certificate List,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Certificate List -ds-cfg-java-class: org.opends.server.schema.CertificateListSyntax -ds-cfg-enabled: true - -dn: cn=Certificate Pair,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Certificate Pair -ds-cfg-java-class: org.opends.server.schema.CertificatePairSyntax -ds-cfg-enabled: true - -dn: cn=Country String,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Country String -ds-cfg-java-class: org.opends.server.schema.CountryStringSyntax -ds-cfg-enabled: true - -dn: cn=Delivery Method,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Delivery Method -ds-cfg-java-class: org.opends.server.schema.DeliveryMethodSyntax -ds-cfg-enabled: true - -dn: cn=Directory String,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -objectClass: ds-cfg-directory-string-attribute-syntax -cn: Directory String -ds-cfg-java-class: org.opends.server.schema.DirectoryStringSyntax -ds-cfg-enabled: true -ds-cfg-allow-zero-length-values: false - -dn: cn=Distinguished Name,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Distinguished Name -ds-cfg-java-class: org.opends.server.schema.DistinguishedNameSyntax -ds-cfg-enabled: true - -dn: cn=DIT Content Rule Description,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: DIT Content Rule Description -ds-cfg-java-class: org.opends.server.schema.DITContentRuleSyntax -ds-cfg-enabled: true - -dn: cn=DIT Structure Rule Description,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: DIT Structure Rule Description -ds-cfg-java-class: org.opends.server.schema.DITStructureRuleSyntax -ds-cfg-enabled: true - -dn: cn=Enhanced Guide,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Enhanced Guide -ds-cfg-java-class: org.opends.server.schema.EnhancedGuideSyntax -ds-cfg-enabled: true - -dn: cn=Facsimile Telephone Number,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Facsimile Telephone Number -ds-cfg-java-class: org.opends.server.schema.FaxNumberSyntax -ds-cfg-enabled: true - -dn: cn=Fax,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Fax -ds-cfg-java-class: org.opends.server.schema.FaxSyntax -ds-cfg-enabled: true - -dn: cn=Generalized Time,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Generalized Time -ds-cfg-java-class: org.opends.server.schema.GeneralizedTimeSyntax -ds-cfg-enabled: true - -dn: cn=Guide,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Guide -ds-cfg-java-class: org.opends.server.schema.GuideSyntax -ds-cfg-enabled: true - -dn: cn=IA5 String,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: IA5 String -ds-cfg-java-class: org.opends.server.schema.IA5StringSyntax -ds-cfg-enabled: true - -dn: cn=Integer,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Integer -ds-cfg-java-class: org.opends.server.schema.IntegerSyntax -ds-cfg-enabled: true - -dn: cn=JPEG,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: JPEG -ds-cfg-java-class: org.opends.server.schema.JPEGSyntax -ds-cfg-enabled: true - -dn: cn=LDAP Syntax Description,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: LDAP Syntax Description -ds-cfg-java-class: org.opends.server.schema.LDAPSyntaxDescriptionSyntax -ds-cfg-enabled: true - -dn: cn=Matching Rule Description,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Matching Rule Description -ds-cfg-java-class: org.opends.server.schema.MatchingRuleSyntax -ds-cfg-enabled: true - -dn: cn=Matching Rule Use Description,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Matching Rule Use Description -ds-cfg-java-class: org.opends.server.schema.MatchingRuleUseSyntax -ds-cfg-enabled: true - -dn: cn=Name and Optional UID,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Name and Optional UID -ds-cfg-java-class: org.opends.server.schema.NameAndOptionalUIDSyntax -ds-cfg-enabled: true - -dn: cn=Name Form Description,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Name Form Description -ds-cfg-java-class: org.opends.server.schema.NameFormSyntax -ds-cfg-enabled: true - -dn: cn=Numeric String,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Numeric String -ds-cfg-java-class: org.opends.server.schema.NumericStringSyntax -ds-cfg-enabled: true - -dn: cn=Object Class Description,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Object Class Description -ds-cfg-java-class: org.opends.server.schema.ObjectClassSyntax -ds-cfg-enabled: true - -dn: cn=Object Identifier,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Object Identifier -ds-cfg-java-class: org.opends.server.schema.OIDSyntax -ds-cfg-enabled: true - -dn: cn=Octet String,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Octet String -ds-cfg-java-class: org.opends.server.schema.OctetStringSyntax -ds-cfg-enabled: true - -dn: cn=Other Mailbox,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Other Mailbox -ds-cfg-java-class: org.opends.server.schema.OtherMailboxSyntax -ds-cfg-enabled: true - -dn: cn=Postal Address,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Postal Address -ds-cfg-java-class: org.opends.server.schema.PostalAddressSyntax -ds-cfg-enabled: true - -dn: cn=Presentation Address,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Presentation Address -ds-cfg-java-class: org.opends.server.schema.PresentationAddressSyntax -ds-cfg-enabled: true - -dn: cn=Printable String,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Printable String -ds-cfg-java-class: org.opends.server.schema.PrintableStringSyntax -ds-cfg-enabled: true - -dn: cn=Protocol Information,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Protocol Information -ds-cfg-java-class: org.opends.server.schema.ProtocolInformationSyntax -ds-cfg-enabled: true - -dn: cn=Substring Assertion,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Substring Assertion -ds-cfg-java-class: org.opends.server.schema.SubstringAssertionSyntax -ds-cfg-enabled: true - -dn: cn=Subtree Specification,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Subtree Specification -ds-cfg-java-class: org.opends.server.schema.SubtreeSpecificationSyntax -ds-cfg-enabled: true - -dn: cn=Supported Algorithm,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Supported Algorithm -ds-cfg-java-class: org.opends.server.schema.SupportedAlgorithmSyntax -ds-cfg-enabled: true - -dn: cn=Telephone Number,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -objectClass: ds-cfg-telephone-number-attribute-syntax -cn: Telephone Number -ds-cfg-java-class: org.opends.server.schema.TelephoneNumberSyntax -ds-cfg-enabled: true -ds-cfg-strict-format: false - -dn: cn=Teletex Terminal Identifier,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Teletex Terminal Identifier -ds-cfg-java-class: org.opends.server.schema.TeletexTerminalIdentifierSyntax -ds-cfg-enabled: true - -dn: cn=Telex Number,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: Telex Number -ds-cfg-java-class: org.opends.server.schema.TelexNumberSyntax -ds-cfg-enabled: true - -dn: cn=UTC Time,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: UTC Time -ds-cfg-java-class: org.opends.server.schema.UTCTimeSyntax -ds-cfg-enabled: true - -dn: cn=User Password,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: User Password -ds-cfg-java-class: org.opends.server.schema.UserPasswordSyntax -ds-cfg-enabled: true - -dn: cn=UUID,cn=Syntaxes,cn=config -objectClass: top -objectClass: ds-cfg-attribute-syntax -cn: UUID -ds-cfg-java-class: org.opends.server.schema.UUIDSyntax -ds-cfg-enabled: true - -dn: cn=Trust Manager Providers,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Trust Manager Providers - -dn: cn=Blind Trust,cn=Trust Manager Providers,cn=config -objectClass: top -objectClass: ds-cfg-trust-manager-provider -objectClass: ds-cfg-blind-trust-manager-provider -cn: Blind Trust -ds-cfg-java-class: org.opends.server.extensions.BlindTrustManagerProvider -ds-cfg-enabled: false - -dn: cn=JKS,cn=Trust Manager Providers,cn=config -objectClass: top -objectClass: ds-cfg-trust-manager-provider -objectClass: ds-cfg-file-based-trust-manager-provider -cn: JKS -ds-cfg-java-class: org.opends.server.extensions.FileBasedTrustManagerProvider -ds-cfg-enabled: false -ds-cfg-trust-store-type: JKS -ds-cfg-trust-store-file: config/truststore - -dn: cn=PKCS12,cn=Trust Manager Providers,cn=config -objectClass: top -objectClass: ds-cfg-trust-manager-provider -objectClass: ds-cfg-file-based-trust-manager-provider -cn: PKCS12 -ds-cfg-java-class: org.opends.server.extensions.FileBasedTrustManagerProvider -ds-cfg-enabled: false -ds-cfg-trust-store-type: PKCS12 -ds-cfg-trust-store-file: config/truststore.p12 - -dn: cn=Virtual Attributes,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Virtual Attributes - -dn: cn=entryDN,cn=Virtual Attributes,cn=config -objectClass: top -objectClass: ds-cfg-virtual-attribute -objectClass: ds-cfg-entry-dn-virtual-attribute -cn: entryDN -ds-cfg-java-class: org.opends.server.extensions.EntryDNVirtualAttributeProvider -ds-cfg-enabled: true -ds-cfg-attribute-type: entryDN -ds-cfg-conflict-behavior: virtual-overrides-real - -dn: cn=entryUUID,cn=Virtual Attributes,cn=config -objectClass: top -objectClass: ds-cfg-virtual-attribute -objectClass: ds-cfg-entry-uuid-virtual-attribute -cn: entryUUID -ds-cfg-java-class: org.opends.server.extensions.EntryUUIDVirtualAttributeProvider -ds-cfg-enabled: true -ds-cfg-attribute-type: entryUUID -ds-cfg-conflict-behavior: real-overrides-virtual - -dn: cn=hasSubordinates,cn=Virtual Attributes,cn=config -objectClass: top -objectClass: ds-cfg-virtual-attribute -objectClass: ds-cfg-has-subordinates-virtual-attribute -cn: hasSubordinates -ds-cfg-java-class: org.opends.server.extensions.HasSubordinatesVirtualAttributeProvider -ds-cfg-enabled: true -ds-cfg-attribute-type: hasSubordinates -ds-cfg-conflict-behavior: virtual-overrides-real - -dn: cn=isMemberOf,cn=Virtual Attributes,cn=config -objectClass: top -objectClass: ds-cfg-virtual-attribute -objectClass: ds-cfg-is-member-of-virtual-attribute -cn: isMemberOf -ds-cfg-java-class: org.opends.server.extensions.IsMemberOfVirtualAttributeProvider -ds-cfg-enabled: true -ds-cfg-attribute-type: isMemberOf -ds-cfg-filter: (objectClass=person) -ds-cfg-conflict-behavior: virtual-overrides-real - -dn: cn=numSubordinates,cn=Virtual Attributes,cn=config -objectClass: top -objectClass: ds-cfg-virtual-attribute -objectClass: ds-cfg-num-subordinates-virtual-attribute -cn: numSubordinates -ds-cfg-java-class: org.opends.server.extensions.NumSubordinatesVirtualAttributeProvider -ds-cfg-enabled: true -ds-cfg-attribute-type: numSubordinates -ds-cfg-conflict-behavior: virtual-overrides-real - -dn: cn=subschemaSubentry,cn=Virtual Attributes,cn=config -objectClass: top -objectClass: ds-cfg-virtual-attribute -objectClass: ds-cfg-subschema-subentry-virtual-attribute -cn: subschemaSubentry -ds-cfg-java-class: org.opends.server.extensions.SubschemaSubentryVirtualAttributeProvider -ds-cfg-enabled: true -ds-cfg-attribute-type: subschemaSubentry -ds-cfg-conflict-behavior: virtual-overrides-real - -dn: cn=structuralObjectClass,cn=Virtual Attributes,cn=config -objectClass: top -objectClass: ds-cfg-virtual-attribute -objectClass: ds-cfg-structural-object-class-virtual-attribute -cn: structuralObjectClass -ds-cfg-java-class: org.opends.server.extensions.StructuralObjectClassVirtualAttributeProvider -ds-cfg-enabled: true -ds-cfg-attribute-type: structuralObjectClass -ds-cfg-conflict-behavior: virtual-overrides-real - -dn: cn=governingStructureRule,cn=Virtual Attributes,cn=config -objectClass: top -objectClass: ds-cfg-virtual-attribute -objectClass: ds-cfg-governing-structure-rule-virtual-attribute -cn: governingStructureRule -ds-cfg-java-class: org.opends.server.extensions.GoverningStructureRuleVirtualAttributeProvider -ds-cfg-enabled: true -ds-cfg-attribute-type: governingStructureRule -ds-cfg-conflict-behavior: virtual-overrides-real - -dn: cn=Virtual Static member,cn=Virtual Attributes,cn=config -objectClass: top -objectClass: ds-cfg-virtual-attribute -objectClass: ds-cfg-member-virtual-attribute -cn: Virtual Static member -ds-cfg-java-class: org.opends.server.extensions.MemberVirtualAttributeProvider -ds-cfg-enabled: true -ds-cfg-attribute-type: member -ds-cfg-conflict-behavior: virtual-overrides-real -ds-cfg-filter: (&(objectClass=groupOfNames)(objectClass=ds-virtual-static-group)) -ds-cfg-allow-retrieving-membership: false - -dn: cn=Virtual Static uniqueMember,cn=Virtual Attributes,cn=config -objectClass: top -objectClass: ds-cfg-virtual-attribute -objectClass: ds-cfg-member-virtual-attribute -cn: Virtual Static uniqueMember -ds-cfg-java-class: org.opends.server.extensions.MemberVirtualAttributeProvider -ds-cfg-enabled: true -ds-cfg-attribute-type: uniqueMember -ds-cfg-conflict-behavior: virtual-overrides-real -ds-cfg-filter: (&(objectClass=groupOfUniqueNames)(objectClass=ds-virtual-static-group)) -ds-cfg-allow-retrieving-membership: false - -dn: cn=Collective Attribute Subentries,cn=Virtual Attributes,cn=config -objectClass: top -objectClass: ds-cfg-virtual-attribute -objectClass: ds-cfg-collective-attribute-subentries-virtual-attribute -cn: Collective Attribute Subentries -ds-cfg-java-class: org.opends.server.extensions.CollectiveAttributeSubentriesVirtualAttributeProvider -ds-cfg-enabled: true -ds-cfg-attribute-type: collectiveAttributeSubentries -ds-cfg-conflict-behavior: virtual-overrides-real - -dn: cn=Password Policy Subentry,cn=Virtual Attributes,cn=config -objectClass: top -objectClass: ds-cfg-virtual-attribute -objectClass: ds-cfg-password-policy-subentry-virtual-attribute -cn: Password Policy Subentry -ds-cfg-java-class: org.opends.server.extensions.PasswordPolicySubentryVirtualAttributeProvider -ds-cfg-enabled: true -ds-cfg-attribute-type: pwdPolicySubentry -ds-cfg-conflict-behavior: virtual-overrides-real - -dn: cn=Work Queue,cn=config -objectClass: top -objectClass: ds-cfg-work-queue -objectClass: ds-cfg-traditional-work-queue -cn: Work Queue -ds-cfg-java-class: org.opends.server.extensions.TraditionalWorkQueue -ds-cfg-max-work-queue-capacity: 1000 - -dn: cn=Administration Connector,cn=config -objectClass: top -objectClass: ds-cfg-administration-connector -cn: Administration Connector -ds-cfg-listen-address: 0.0.0.0 -ds-cfg-listen-port: 4444 -ds-cfg-ssl-cert-nickname: admin-cert -ds-cfg-key-manager-provider: cn=Administration,cn=Key Manager Providers,cn=config -ds-cfg-trust-manager-provider: cn=Administration,cn=Trust Manager Providers,cn=config - -dn: cn=Administration,cn=Key Manager Providers,cn=config -objectClass: top -objectClass: ds-cfg-key-manager-provider -objectClass: ds-cfg-file-based-key-manager-provider -cn: Administration -ds-cfg-java-class: org.opends.server.extensions.FileBasedKeyManagerProvider -ds-cfg-enabled: true -ds-cfg-key-store-type: JKS -ds-cfg-key-store-file: config/admin-keystore -ds-cfg-key-store-pin-file: config/admin-keystore.pin - -dn: cn=Administration,cn=Trust Manager Providers,cn=config -objectClass: top -objectClass: ds-cfg-trust-manager-provider -objectClass: ds-cfg-file-based-trust-manager-provider -cn: Administration -ds-cfg-java-class: org.opends.server.extensions.FileBasedTrustManagerProvider -ds-cfg-enabled: true -ds-cfg-trust-store-type: JKS -ds-cfg-trust-store-file: config/admin-truststore - -dn: cn=Extensions,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Extensions - -dn: cn=Network Groups,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Network Groups - -dn: cn=Workflows,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Workflows - -dn: cn=Workflow Elements,cn=config -objectClass: top -objectClass: ds-cfg-branch -cn: Workflow Elements - - -dn: cn=SNMP Connection Handler,cn=Connection Handlers,cn=config -objectClass: top -objectClass: ds-cfg-connection-handler -objectClass: ds-cfg-snmp-connection-handler -cn: SNMP Connection Handler -ds-cfg-java-class: org.opends.server.snmp.SNMPConnectionHandler -ds-cfg-enabled: false -ds-cfg-trap-port: 162 -ds-cfg-listen-port: 161 -ds-cfg-listen-address: 0.0.0.0 - diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/schema.ldif.6998 b/infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/schema.ldif.-1 similarity index 63% rename from infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/schema.ldif.6998 rename to infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/schema.ldif.-1 index e133e8080ea..70511a66350 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/schema.ldif.6998 +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/schema.ldif.-1 @@ -11,7 +11,7 @@ attributeTypes: ( 2.5.4.2 NAME 'knowledgeInformation' EQUALITY caseIgnoreMatch S attributeTypes: ( 2.5.4.3 NAME ( 'cn' 'commonName' ) SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.4 NAME ( 'sn' 'surname' ) SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.5 NAME 'serialNumber' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.44{64} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) -attributeTypes: ( 2.5.4.6 NAME ( 'c' 'countryName' ) SUP name SINGLE-VALUE X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) +attributeTypes: ( 2.5.4.6 NAME ( 'c' 'countryName' ) SUP name SYNTAX 1.3.6.1.4.1.1466.115.121.1.11 SINGLE-VALUE X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.7 NAME ( 'l' 'localityName' ) SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.8 NAME ( 'st' 'stateOrProvinceName' ) SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.9 NAME ( 'street' 'streetAddress' ) EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) @@ -55,9 +55,9 @@ attributeTypes: ( 2.5.4.47 NAME 'enhancedSearchGuide' SYNTAX 1.3.6.1.4.1.1466.11 attributeTypes: ( 1.3.6.1.1.16.4 NAME 'entryUUID' DESC 'UUID of the entry' EQUALITY uuidMatch ORDERING uuidOrderingMatch SYNTAX 1.3.6.1.1.16.1 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'RFC 4530' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.48 NAME 'protocolInformation' EQUALITY protocolInformationMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.42 X-ORIGIN 'RFC 2256' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.50 NAME 'uniqueMember' EQUALITY uniqueMemberMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.34 X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.585 NAME 'lastExternalChangelogCookie' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '00-core.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.593 NAME 'firstChangeNumber' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '00-core.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.594 NAME 'lastChangeNumber' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '00-core.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.585 NAME 'lastExternalChangelogCookie' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '00-core.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.593 NAME 'firstChangeNumber' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '00-core.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.594 NAME 'lastChangeNumber' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.51 NAME 'houseIdentifier' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.52 NAME 'supportedAlgorithms' SYNTAX 1.3.6.1.4.1.1466.115.121.1.49 X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.53 NAME 'deltaRevocationList' SYNTAX 1.3.6.1.4.1.1466.115.121.1.9 X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' ) @@ -179,7 +179,9 @@ attributeTypes: ( 0.9.2342.19200300.100.1.30 NAME 'sOARecord' SYNTAX 1.3.6.1.4.1 attributeTypes: ( 0.9.2342.19200300.100.1.31 NAME 'cNAMERecord' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 1.3.6.1.1.20 NAME 'entryDN' DESC 'DN of the entry' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'RFC 5020' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 1.3.6.1.4.1.453.16.2.103 NAME 'numSubordinates' DESC 'Count of immediate subordinates' EQUALITY integerMatch ORDERING integerOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-ietf-boreham-numsubordinates' X-SCHEMA-FILE '00-core.ldif' ) -attributeTypes: ( 2.16.840.1.113730.3.1.35 NAME 'changelog' DESC 'the distinguished name of the entry which contains the set of entries comprising this servers changelog' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '00-core.ldif' ) +attributeTypes: ( 2.16.840.1.113730.3.1.35 NAME 'changelog' DESC 'the distinguished name of the entry which contains the set of entries comprising this servers changelog' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '00-core.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.59 NAME 'etag' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.44 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '00-core.ldif' ) +attributeTypes: ( 1.2.840.113549.1.9.1 NAME 'emailAddress' DESC 'represents the email address part of an X.509 certificate' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 2985' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.1 NAME 'pwdAttribute' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.2 NAME 'pwdMinAge' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.3 NAME 'pwdMaxAge' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' ) @@ -201,530 +203,647 @@ attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.19 NAME 'pwdFailureTime' DESC 'The tim attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.20 NAME 'pwdHistory' DESC 'The history of user s passwords' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.21 NAME 'pwdGraceUseTime' DESC 'The timestamps of the grace authentication after the password has expired' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.22 NAME 'pwdReset' DESC 'The indication that the password has been reset' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.23 NAME 'pwdPolicySubentry' DESC 'The pwdPolicy subentry in effect for this object' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.1 NAME 'ds-cfg-java-class' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.2 NAME 'ds-cfg-enabled' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.3 NAME 'ds-cfg-allow-attribute-name-exceptions' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.4 NAME 'ds-cfg-allowed-client' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.5 NAME 'ds-cfg-allow-ldap-v2' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.6 NAME 'ds-cfg-allow-start-tls' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.7 NAME 'ds-cfg-allow-tcp-reuse-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.8 NAME 'ds-cfg-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.9 NAME 'ds-cfg-db-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.10 NAME 'ds-cfg-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.11 NAME 'ds-cfg-index-entry-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.13 NAME 'ds-cfg-alternate-bind-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.14 NAME 'ds-cfg-certificate-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.15 NAME 'ds-cfg-check-schema' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.16 NAME 'ds-cfg-certificate-validation-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.17 NAME 'ds-cfg-db-cache-percent' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.18 NAME 'ds-cfg-db-cleaner-min-utilization' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.19 NAME 'ds-cfg-db-cache-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.20 NAME 'ds-cfg-db-run-cleaner' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.21 NAME 'ds-cfg-db-txn-no-sync' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.22 NAME 'ds-cfg-db-txn-write-no-sync' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.23 NAME 'ds-cfg-default-severity' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.24 NAME 'ds-cfg-denied-client' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.25 NAME 'ds-cfg-enable-profiling-on-startup' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.26 NAME 'ds-cfg-exclude-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.27 NAME 'ds-cfg-rotation-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.28 NAME 'ds-cfg-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.29 NAME 'ds-cfg-index-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.30 NAME 'ds-cfg-include-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.31 NAME 'ds-cfg-invalid-attribute-syntax-behavior' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.32 NAME 'ds-cfg-kdc-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.33 NAME 'ds-cfg-keytab' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.34 NAME 'ds-cfg-keep-stats' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.35 NAME 'ds-cfg-key-store-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.36 NAME 'ds-cfg-key-store-pin' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.37 NAME 'ds-cfg-key-store-pin-environment-variable' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.38 NAME 'ds-cfg-key-store-pin-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.39 NAME 'ds-cfg-key-store-pin-property' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.40 NAME 'ds-cfg-key-store-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.41 NAME 'ds-cfg-listen-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.42 NAME 'ds-cfg-listen-port' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.43 NAME 'ds-cfg-lock-timeout' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.44 NAME 'ds-cfg-log-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.45 NAME 'ds-cfg-max-allowed-client-connections' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.46 NAME 'ds-cfg-max-entries' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.47 NAME 'ds-cfg-max-memory-percent' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.48 NAME 'ds-cfg-max-request-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.49 NAME 'ds-cfg-max-work-queue-capacity' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.50 NAME 'ds-cfg-notify-abandoned-operations' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.51 NAME 'ds-cfg-num-request-handlers' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.52 NAME 'ds-cfg-num-worker-threads' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.53 NAME 'ds-cfg-override-severity' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.54 NAME 'ds-cfg-plugin-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.55 NAME 'ds-cfg-profile-action' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.56 NAME 'ds-cfg-profile-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.57 NAME 'ds-cfg-profiler-state' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.58 NAME 'ds-cfg-profile-sample-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.59 NAME 'ds-cfg-realm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.515 NAME 'ds-recurring-task-schedule' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.61 NAME 'ds-recurring-task-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.62 NAME 'ds-cfg-rotation-action' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.63 NAME 'ds-cfg-rotation-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.64 NAME 'ds-cfg-retention-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.65 NAME 'ds-cfg-number-of-files' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.66 NAME 'ds-cfg-disk-space-used' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.67 NAME 'ds-cfg-free-disk-space' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.68 NAME 'ds-task-shutdown-message' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.69 NAME 'ds-task-actual-start-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.70 NAME 'ds-cfg-task-backing-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.71 NAME 'ds-task-class-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.72 NAME 'ds-task-completion-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.73 NAME 'ds-task-dependency-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.74 NAME 'ds-task-failed-dependency-action' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.75 NAME 'ds-task-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.76 NAME 'ds-task-log-message' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.77 NAME 'ds-task-notify-on-completion' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.78 NAME 'ds-task-notify-on-error' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.79 NAME 'ds-cfg-task-retention-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.80 NAME 'ds-task-scheduled-start-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.81 NAME 'ds-task-state' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.82 NAME 'ds-cfg-time-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.83 NAME 'ds-cfg-buffer-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.84 NAME 'ds-cfg-schema-entry-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.85 NAME 'ds-cfg-send-rejection-notice' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.86 NAME 'ds-cfg-server-fqdn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.87 NAME 'ds-task-shutdown-password' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.88 NAME 'ds-cfg-single-structural-objectclass-behavior' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.89 NAME 'ds-cfg-size-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.90 NAME 'ds-cfg-ssl-client-auth-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.91 NAME 'ds-cfg-ssl-cert-nickname' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.92 NAME 'ds-cfg-strict-format' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.93 NAME 'ds-cfg-subordinate-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.94 NAME 'ds-cfg-suppress-internal-operations' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.95 NAME 'ds-cfg-time-of-day' SYNTAX 1.3.6.1.4.1.1466.115.121.1.36 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.96 NAME 'ds-cfg-trust-store-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.97 NAME 'ds-cfg-trust-store-pin' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.98 NAME 'ds-cfg-trust-store-pin-environment-variable' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.99 NAME 'ds-cfg-trust-store-pin-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.100 NAME 'ds-cfg-trust-store-pin-property' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.101 NAME 'ds-cfg-trust-store-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.102 NAME 'ds-cfg-user-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.103 NAME 'ds-cfg-user-name-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.104 NAME 'ds-cfg-use-ssl' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.105 NAME 'ds-cfg-use-tcp-keep-alive' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.106 NAME 'ds-cfg-use-tcp-no-delay' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.107 NAME 'ds-cfg-allow-zero-length-values' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.108 NAME 'ds-cfg-show-all-attributes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.109 NAME 'ds-cfg-add-missing-rdn-attributes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.110 NAME 'ds-cfg-server-error-result-code' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.111 NAME 'ds-cfg-match-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.112 NAME 'ds-cfg-match-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.113 NAME 'ds-cfg-identity-mapper' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.114 NAME 'ds-cfg-proxied-authorization-identity-mapper' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.115 NAME 'ds-cfg-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.116 NAME 'ds-rlim-size-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.117 NAME 'ds-rlim-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.118 NAME 'ds-cfg-accept-backlog' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.119 NAME 'ds-sync-hist' ORDERING historicalCsnOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.120 NAME 'ds-cfg-receive-status' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.121 NAME 'ds-cfg-replication-port' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.122 NAME 'ds-cfg-replication-server' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.123 NAME 'ds-cfg-writability-mode' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.124 NAME 'ds-cfg-bind-with-dn-requires-password' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.125 NAME 'ds-cfg-max-receive-queue' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.126 NAME 'ds-cfg-max-receive-delay' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.127 NAME 'ds-cfg-max-send-queue' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.128 NAME 'ds-cfg-max-send-delay' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.129 NAME 'ds-cfg-max-password-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.130 NAME 'ds-cfg-min-password-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.131 NAME 'ds-cfg-password-character-set' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.132 NAME 'ds-cfg-password-format' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.133 NAME 'ds-cfg-account-status-notification-handler' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.134 NAME 'ds-cfg-allow-expired-password-changes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.135 NAME 'ds-cfg-allow-pre-encoded-passwords' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.136 NAME 'ds-cfg-allow-user-password-changes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.137 NAME 'ds-cfg-default-password-storage-scheme' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.138 NAME 'ds-cfg-deprecated-password-storage-scheme' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.139 NAME 'ds-cfg-expire-passwords-without-warning' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.140 NAME 'ds-cfg-force-change-on-reset' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.141 NAME 'ds-cfg-grace-login-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.142 NAME 'ds-cfg-idle-lockout-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.143 NAME 'ds-cfg-last-login-time-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.144 NAME 'ds-cfg-last-login-time-format' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.145 NAME 'ds-cfg-lockout-duration' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.146 NAME 'ds-cfg-lockout-failure-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.147 NAME 'ds-cfg-lockout-failure-expiration-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.148 NAME 'ds-cfg-max-password-age' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.149 NAME 'ds-cfg-max-password-reset-age' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.150 NAME 'ds-cfg-min-password-age' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.151 NAME 'ds-cfg-password-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.152 NAME 'ds-cfg-password-expiration-warning-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.153 NAME 'ds-cfg-password-generator' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.154 NAME 'ds-cfg-password-validator' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.155 NAME 'ds-cfg-previous-last-login-time-format' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.156 NAME 'ds-cfg-require-change-by-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.157 NAME 'ds-cfg-password-change-requires-current-password' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.158 NAME 'ds-cfg-require-secure-authentication' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.159 NAME 'ds-cfg-require-secure-password-changes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.160 NAME 'ds-cfg-skip-validation-for-administrators' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.161 NAME 'ds-cfg-default-password-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.162 NAME 'ds-pwp-last-login-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.163 NAME 'ds-pwp-password-changed-by-required-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.164 NAME 'ds-pwp-reset-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.165 NAME 'ds-pwp-warned-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.166 NAME 'ds-pwp-account-disabled' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.167 NAME 'ds-cfg-force-change-on-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.168 NAME 'ds-cfg-allow-multiple-password-values' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.169 NAME 'ds-task-import-ldif-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.170 NAME 'ds-task-import-append' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.171 NAME 'ds-task-import-replace-existing' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.172 NAME 'ds-task-import-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.173 NAME 'ds-task-import-include-branch' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.174 NAME 'ds-task-import-exclude-branch' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.175 NAME 'ds-task-import-include-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.176 NAME 'ds-task-import-exclude-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.177 NAME 'ds-task-import-include-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.178 NAME 'ds-task-import-exclude-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.179 NAME 'ds-task-import-reject-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.598 NAME 'ds-task-import-tmp-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.180 NAME 'ds-task-import-overwrite-rejects' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.181 NAME 'ds-task-import-skip-schema-validation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.597 NAME 'ds-task-import-skip-dn-validation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.519 NAME 'ds-task-import-skip-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.182 NAME 'ds-task-import-is-compressed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.183 NAME 'ds-task-import-is-encrypted' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.222 NAME 'ds-cfg-import-queue-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.184 NAME 'ds-task-restart-server' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.185 NAME 'ds-sync-state' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.23 NAME 'pwdPolicySubentry' DESC 'The pwdPolicy subentry in effect for this object' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.1 NAME 'ds-cfg-java-class' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.2 NAME 'ds-cfg-enabled' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.3 NAME 'ds-cfg-allow-attribute-name-exceptions' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.4 NAME 'ds-cfg-allowed-client' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.5 NAME 'ds-cfg-allow-ldap-v2' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.6 NAME 'ds-cfg-allow-start-tls' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.7 NAME 'ds-cfg-allow-tcp-reuse-address' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.8 NAME 'ds-cfg-base-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.9 NAME 'ds-cfg-db-directory' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.10 NAME 'ds-cfg-backend-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.11 NAME 'ds-cfg-index-entry-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.13 NAME 'ds-cfg-alternate-bind-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.14 NAME 'ds-cfg-certificate-attribute' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.15 NAME 'ds-cfg-check-schema' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.16 NAME 'ds-cfg-certificate-validation-policy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.17 NAME 'ds-cfg-db-cache-percent' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.18 NAME 'ds-cfg-db-cleaner-min-utilization' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.19 NAME 'ds-cfg-db-cache-size' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.20 NAME 'ds-cfg-db-run-cleaner' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.21 NAME 'ds-cfg-db-txn-no-sync' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.22 NAME 'ds-cfg-db-txn-write-no-sync' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.23 NAME 'ds-cfg-default-severity' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.24 NAME 'ds-cfg-denied-client' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.25 NAME 'ds-cfg-enable-profiling-on-startup' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.26 NAME 'ds-cfg-exclude-filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.27 NAME 'ds-cfg-rotation-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.28 NAME 'ds-cfg-attribute' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.29 NAME 'ds-cfg-index-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.30 NAME 'ds-cfg-include-filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.31 NAME 'ds-cfg-invalid-attribute-syntax-behavior' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.32 NAME 'ds-cfg-kdc-address' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.33 NAME 'ds-cfg-keytab' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.34 NAME 'ds-cfg-keep-stats' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.35 NAME 'ds-cfg-key-store-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.36 NAME 'ds-cfg-key-store-pin' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.37 NAME 'ds-cfg-key-store-pin-environment-variable' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.38 NAME 'ds-cfg-key-store-pin-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.39 NAME 'ds-cfg-key-store-pin-property' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.40 NAME 'ds-cfg-key-store-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.41 NAME 'ds-cfg-listen-address' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.42 NAME 'ds-cfg-listen-port' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.43 NAME 'ds-cfg-lock-timeout' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.44 NAME 'ds-cfg-log-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.45 NAME 'ds-cfg-max-allowed-client-connections' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.46 NAME 'ds-cfg-max-entries' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.47 NAME 'ds-cfg-max-memory-percent' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.48 NAME 'ds-cfg-max-request-size' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.49 NAME 'ds-cfg-max-work-queue-capacity' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.50 NAME 'ds-cfg-notify-abandoned-operations' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.51 NAME 'ds-cfg-num-request-handlers' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.52 NAME 'ds-cfg-num-worker-threads' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.53 NAME 'ds-cfg-override-severity' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.54 NAME 'ds-cfg-plugin-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.55 NAME 'ds-cfg-profile-action' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.56 NAME 'ds-cfg-profile-directory' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.57 NAME 'ds-cfg-profiler-state' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.58 NAME 'ds-cfg-profile-sample-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.59 NAME 'ds-cfg-realm' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.515 NAME 'ds-recurring-task-schedule' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.61 NAME 'ds-recurring-task-id' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.62 NAME 'ds-cfg-rotation-action' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.63 NAME 'ds-cfg-rotation-policy' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.64 NAME 'ds-cfg-retention-policy' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.65 NAME 'ds-cfg-number-of-files' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.66 NAME 'ds-cfg-disk-space-used' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.67 NAME 'ds-cfg-free-disk-space' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.68 NAME 'ds-task-shutdown-message' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.69 NAME 'ds-task-actual-start-time' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.70 NAME 'ds-cfg-task-backing-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.71 NAME 'ds-task-class-name' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.72 NAME 'ds-task-completion-time' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.73 NAME 'ds-task-dependency-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.74 NAME 'ds-task-failed-dependency-action' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.75 NAME 'ds-task-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.76 NAME 'ds-task-log-message' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.77 NAME 'ds-task-notify-on-completion' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.78 NAME 'ds-task-notify-on-error' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.79 NAME 'ds-cfg-task-retention-time' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.80 NAME 'ds-task-scheduled-start-time' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.81 NAME 'ds-task-state' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.82 NAME 'ds-cfg-time-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.83 NAME 'ds-cfg-buffer-size' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.84 NAME 'ds-cfg-schema-entry-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.85 NAME 'ds-cfg-send-rejection-notice' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.86 NAME 'ds-cfg-server-fqdn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.87 NAME 'ds-task-shutdown-password' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.88 NAME 'ds-cfg-single-structural-objectclass-behavior' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.89 NAME 'ds-cfg-size-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.90 NAME 'ds-cfg-ssl-client-auth-policy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.91 NAME 'ds-cfg-ssl-cert-nickname' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.92 NAME 'ds-cfg-strict-format' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.93 NAME 'ds-cfg-subordinate-base-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.94 NAME 'ds-cfg-suppress-internal-operations' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.95 NAME 'ds-cfg-time-of-day' EQUALITY numericStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.36 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.96 NAME 'ds-cfg-trust-store-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.97 NAME 'ds-cfg-trust-store-pin' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.98 NAME 'ds-cfg-trust-store-pin-environment-variable' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.99 NAME 'ds-cfg-trust-store-pin-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.100 NAME 'ds-cfg-trust-store-pin-property' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.101 NAME 'ds-cfg-trust-store-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.102 NAME 'ds-cfg-user-base-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.103 NAME 'ds-cfg-user-name-attribute' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.104 NAME 'ds-cfg-use-ssl' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.105 NAME 'ds-cfg-use-tcp-keep-alive' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.106 NAME 'ds-cfg-use-tcp-no-delay' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.107 NAME 'ds-cfg-allow-zero-length-values' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.108 NAME 'ds-cfg-show-all-attributes' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.109 NAME 'ds-cfg-add-missing-rdn-attributes' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.110 NAME 'ds-cfg-server-error-result-code' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.111 NAME 'ds-cfg-match-attribute' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.112 NAME 'ds-cfg-match-base-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.113 NAME 'ds-cfg-identity-mapper' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.114 NAME 'ds-cfg-proxied-authorization-identity-mapper' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.115 NAME 'ds-cfg-time-limit' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.116 NAME 'ds-rlim-size-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.117 NAME 'ds-rlim-time-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.118 NAME 'ds-cfg-accept-backlog' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.119 NAME 'ds-sync-hist' ORDERING historicalCsnOrderingMatch EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.120 NAME 'ds-cfg-receive-status' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.121 NAME 'ds-cfg-replication-port' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.122 NAME 'ds-cfg-replication-server' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.123 NAME 'ds-cfg-writability-mode' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.124 NAME 'ds-cfg-bind-with-dn-requires-password' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.125 NAME 'ds-cfg-max-receive-queue' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.126 NAME 'ds-cfg-max-receive-delay' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.127 NAME 'ds-cfg-max-send-queue' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.128 NAME 'ds-cfg-max-send-delay' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.129 NAME 'ds-cfg-max-password-length' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.130 NAME 'ds-cfg-min-password-length' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.131 NAME 'ds-cfg-password-character-set' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.132 NAME 'ds-cfg-password-format' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.133 NAME 'ds-cfg-account-status-notification-handler' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.134 NAME 'ds-cfg-allow-expired-password-changes' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.135 NAME 'ds-cfg-allow-pre-encoded-passwords' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.136 NAME 'ds-cfg-allow-user-password-changes' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.137 NAME 'ds-cfg-default-password-storage-scheme' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.138 NAME 'ds-cfg-deprecated-password-storage-scheme' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.139 NAME 'ds-cfg-expire-passwords-without-warning' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.140 NAME 'ds-cfg-force-change-on-reset' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.141 NAME 'ds-cfg-grace-login-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.142 NAME 'ds-cfg-idle-lockout-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.143 NAME 'ds-cfg-last-login-time-attribute' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.144 NAME 'ds-cfg-last-login-time-format' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.145 NAME 'ds-cfg-lockout-duration' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.146 NAME 'ds-cfg-lockout-failure-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.147 NAME 'ds-cfg-lockout-failure-expiration-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.148 NAME 'ds-cfg-max-password-age' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.149 NAME 'ds-cfg-max-password-reset-age' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.150 NAME 'ds-cfg-min-password-age' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.151 NAME 'ds-cfg-password-attribute' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.152 NAME 'ds-cfg-password-expiration-warning-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.153 NAME 'ds-cfg-password-generator' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.154 NAME 'ds-cfg-password-validator' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.155 NAME 'ds-cfg-previous-last-login-time-format' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.156 NAME 'ds-cfg-require-change-by-time' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.157 NAME 'ds-cfg-password-change-requires-current-password' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.158 NAME 'ds-cfg-require-secure-authentication' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.159 NAME 'ds-cfg-require-secure-password-changes' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.160 NAME 'ds-cfg-skip-validation-for-administrators' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.161 NAME 'ds-cfg-default-password-policy' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.162 NAME 'ds-pwp-last-login-time' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.163 NAME 'ds-pwp-password-changed-by-required-time' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.164 NAME 'ds-pwp-reset-time' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.165 NAME 'ds-pwp-warned-time' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.166 NAME 'ds-pwp-account-disabled' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.167 NAME 'ds-cfg-force-change-on-add' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.168 NAME 'ds-cfg-allow-multiple-password-values' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.169 NAME 'ds-task-import-ldif-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.170 NAME 'ds-task-import-append' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.171 NAME 'ds-task-import-replace-existing' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.172 NAME 'ds-task-import-backend-id' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.173 NAME 'ds-task-import-include-branch' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.174 NAME 'ds-task-import-exclude-branch' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.175 NAME 'ds-task-import-include-attribute' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.176 NAME 'ds-task-import-exclude-attribute' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.177 NAME 'ds-task-import-include-filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.178 NAME 'ds-task-import-exclude-filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.179 NAME 'ds-task-import-reject-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.598 NAME 'ds-task-import-tmp-directory' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.180 NAME 'ds-task-import-overwrite-rejects' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.181 NAME 'ds-task-import-skip-schema-validation' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.597 NAME 'ds-task-import-skip-dn-validation' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.519 NAME 'ds-task-import-skip-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.182 NAME 'ds-task-import-is-compressed' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.183 NAME 'ds-task-import-is-encrypted' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.222 NAME 'ds-cfg-import-queue-size' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.184 NAME 'ds-task-restart-server' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.185 NAME 'ds-sync-state' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.186 NAME 'ds-cfg-backup-directory' EQUALITY caseExactMatch SUBSTR caseExactSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.187 NAME 'ds-backup-compressed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.188 NAME 'ds-backup-date' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.189 NAME 'ds-backup-dependency' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.187 NAME 'ds-backup-compressed' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.188 NAME 'ds-backup-date' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.189 NAME 'ds-backup-dependency' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.190 NAME 'ds-backup-directory-path' EQUALITY caseExactMatch SUBSTR caseExactSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.191 NAME 'ds-backup-encrypted' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.192 NAME 'ds-backup-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.193 NAME 'ds-backup-incremental' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.194 NAME 'ds-backup-signed-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.195 NAME 'ds-backup-unsigned-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.196 NAME 'ds-backup-backend-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.197 NAME 'ds-task-export-ldif-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.198 NAME 'ds-task-export-append-to-ldif' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.199 NAME 'ds-task-export-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.200 NAME 'ds-task-export-include-branch' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.201 NAME 'ds-task-export-exclude-branch' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.202 NAME 'ds-task-export-include-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.203 NAME 'ds-task-export-exclude-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.204 NAME 'ds-task-export-include-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.205 NAME 'ds-task-export-exclude-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.206 NAME 'ds-task-export-wrap-column' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.207 NAME 'ds-task-export-compress-ldif' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.208 NAME 'ds-task-export-encrypt-ldif' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.209 NAME 'ds-task-export-sign-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.210 NAME 'ds-task-restore-verify-only' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.211 NAME 'ds-task-backup-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.212 NAME 'ds-task-backup-all' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.213 NAME 'ds-task-backup-incremental' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.214 NAME 'ds-task-backup-incremental-base-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.215 NAME 'ds-task-backup-compress' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.216 NAME 'ds-task-backup-encrypt' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.217 NAME 'ds-task-backup-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.218 NAME 'ds-task-backup-sign-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.219 NAME 'ds-cfg-preload-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.223 NAME 'ds-cfg-import-thread-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.224 NAME 'ds-cfg-entries-compressed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.225 NAME 'ds-cfg-deadlock-retry-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.226 NAME 'ds-cfg-db-evictor-lru-only' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.227 NAME 'ds-cfg-db-evictor-nodes-per-scan' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.228 NAME 'ds-cfg-db-log-file-max' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.229 NAME 'ds-cfg-db-logging-file-handler-on' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.230 NAME 'ds-cfg-db-logging-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.231 NAME 'ds-cfg-db-checkpointer-bytes-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.232 NAME 'ds-cfg-db-checkpointer-wakeup-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.233 NAME 'ds-cfg-db-num-lock-tables' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.235 NAME 'ds-cfg-replication-server-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.236 NAME 'ds-cfg-server-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.237 NAME 'ds-pwp-account-expiration-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.238 NAME 'ds-cfg-account-status-notification-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.239 NAME 'ds-cfg-db-num-cleaner-threads' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.240 NAME 'ds-cfg-lookthrough-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.241 NAME 'ds-rlim-lookthrough-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.242 NAME 'ds-cfg-db-directory-permissions' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.243 NAME 'ds-cfg-window-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.244 NAME 'ds-pwp-password-policy-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.245 NAME 'ds-cfg-queue-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.246 NAME 'ds-private-naming-contexts' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.247 NAME 'ds-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.248 NAME 'ds-backend-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.249 NAME 'ds-backend-entry-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.250 NAME 'ds-backend-writability-mode' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.251 NAME 'ds-connectionhandler-connection' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.252 NAME 'ds-connectionhandler-listener' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.253 NAME 'ds-connectionhandler-num-connections' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.254 NAME 'ds-connectionhandler-protocol' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.255 NAME 'ds-backend-is-private' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.256 NAME 'ds-cfg-reject-unauthenticated-requests' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.257 NAME 'ds-task-schema-file-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.258 NAME 'ds-cfg-heartbeat-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.259 NAME 'ds-cfg-replication-db-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.260 NAME 'ds-privilege-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.261 NAME 'ds-cfg-default-root-privilege-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.262 NAME 'ds-cfg-certificate-mapper' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.263 NAME 'ds-cfg-key-manager-provider' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.264 NAME 'ds-cfg-trust-manager-provider' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.265 NAME 'ds-cfg-subject-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.266 NAME 'ds-certificate-subject-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.267 NAME 'ds-cfg-subject-attribute-mapping' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.268 NAME 'ds-certificate-fingerprint' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.269 NAME 'ds-cfg-fingerprint-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.270 NAME 'ds-cfg-fingerprint-algorithm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.271 NAME 'ds-cfg-replication-purge-delay' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.191 NAME 'ds-backup-encrypted' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.192 NAME 'ds-backup-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.193 NAME 'ds-backup-incremental' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.194 NAME 'ds-backup-signed-hash' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.195 NAME 'ds-backup-unsigned-hash' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.196 NAME 'ds-backup-backend-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.197 NAME 'ds-task-export-ldif-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.198 NAME 'ds-task-export-append-to-ldif' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.199 NAME 'ds-task-export-backend-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.200 NAME 'ds-task-export-include-branch' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.201 NAME 'ds-task-export-exclude-branch' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.202 NAME 'ds-task-export-include-attribute' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.203 NAME 'ds-task-export-exclude-attribute' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.204 NAME 'ds-task-export-include-filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.205 NAME 'ds-task-export-exclude-filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.206 NAME 'ds-task-export-wrap-column' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.207 NAME 'ds-task-export-compress-ldif' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.208 NAME 'ds-task-export-encrypt-ldif' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.209 NAME 'ds-task-export-sign-hash' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.210 NAME 'ds-task-restore-verify-only' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.211 NAME 'ds-task-backup-backend-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.212 NAME 'ds-task-backup-all' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.213 NAME 'ds-task-backup-incremental' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.214 NAME 'ds-task-backup-incremental-base-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.215 NAME 'ds-task-backup-compress' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.216 NAME 'ds-task-backup-encrypt' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.217 NAME 'ds-task-backup-hash' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.218 NAME 'ds-task-backup-sign-hash' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.219 NAME 'ds-cfg-preload-time-limit' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.223 NAME 'ds-cfg-import-thread-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.224 NAME 'ds-cfg-entries-compressed' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.225 NAME 'ds-cfg-deadlock-retry-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.226 NAME 'ds-cfg-db-evictor-lru-only' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.227 NAME 'ds-cfg-db-evictor-nodes-per-scan' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.228 NAME 'ds-cfg-db-log-file-max' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.229 NAME 'ds-cfg-db-logging-file-handler-on' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.230 NAME 'ds-cfg-db-logging-level' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.231 NAME 'ds-cfg-db-checkpointer-bytes-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.232 NAME 'ds-cfg-db-checkpointer-wakeup-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.233 NAME 'ds-cfg-db-num-lock-tables' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.235 NAME 'ds-cfg-replication-server-id' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.236 NAME 'ds-cfg-server-id' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.237 NAME 'ds-pwp-account-expiration-time' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.238 NAME 'ds-cfg-account-status-notification-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.239 NAME 'ds-cfg-db-num-cleaner-threads' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.240 NAME 'ds-cfg-lookthrough-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.241 NAME 'ds-rlim-lookthrough-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.242 NAME 'ds-cfg-db-directory-permissions' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.243 NAME 'ds-cfg-window-size' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.244 NAME 'ds-pwp-password-policy-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.245 NAME 'ds-cfg-queue-size' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.246 NAME 'ds-private-naming-contexts' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.247 NAME 'ds-backend-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.248 NAME 'ds-backend-base-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.249 NAME 'ds-backend-entry-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.250 NAME 'ds-backend-writability-mode' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.251 NAME 'ds-connectionhandler-connection' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.252 NAME 'ds-connectionhandler-listener' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.253 NAME 'ds-connectionhandler-num-connections' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.254 NAME 'ds-connectionhandler-protocol' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.255 NAME 'ds-backend-is-private' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.256 NAME 'ds-cfg-reject-unauthenticated-requests' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.257 NAME 'ds-task-schema-file-name' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.258 NAME 'ds-cfg-heartbeat-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.259 NAME 'ds-cfg-replication-db-directory' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.260 NAME 'ds-privilege-name' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.261 NAME 'ds-cfg-default-root-privilege-name' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.262 NAME 'ds-cfg-certificate-mapper' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.263 NAME 'ds-cfg-key-manager-provider' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.264 NAME 'ds-cfg-trust-manager-provider' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.265 NAME 'ds-cfg-subject-attribute' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.266 NAME 'ds-certificate-subject-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.267 NAME 'ds-cfg-subject-attribute-mapping' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.268 NAME 'ds-certificate-fingerprint' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.269 NAME 'ds-cfg-fingerprint-attribute' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.270 NAME 'ds-cfg-fingerprint-algorithm' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.271 NAME 'ds-cfg-replication-purge-delay' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.272 NAME 'ds-cfg-global-aci' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.26027.1.3.4 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.273 NAME 'ds-cfg-min-password-difference' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.274 NAME 'ds-cfg-min-unique-characters' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.275 NAME 'ds-cfg-max-consecutive-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.276 NAME 'ds-cfg-case-sensitive-validation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.277 NAME 'ds-cfg-attribute-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.278 NAME 'ds-cfg-group-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.279 NAME 'ds-cfg-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.280 NAME 'ds-cfg-conflict-behavior' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.281 NAME 'ds-task-initialize-domain-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.282 NAME 'ds-task-initialize-replica-server-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.283 NAME 'ds-task-unprocessed-entry-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.284 NAME 'ds-task-processed-entry-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.285 NAME 'ds-cfg-dictionary-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.286 NAME 'ds-cfg-test-reversed-password' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.273 NAME 'ds-cfg-min-password-difference' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.274 NAME 'ds-cfg-min-unique-characters' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.275 NAME 'ds-cfg-max-consecutive-length' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.276 NAME 'ds-cfg-case-sensitive-validation' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.277 NAME 'ds-cfg-attribute-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.278 NAME 'ds-cfg-group-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.279 NAME 'ds-cfg-filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.280 NAME 'ds-cfg-conflict-behavior' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.281 NAME 'ds-task-initialize-domain-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.282 NAME 'ds-task-initialize-replica-server-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.283 NAME 'ds-task-unprocessed-entry-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.284 NAME 'ds-task-processed-entry-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.285 NAME 'ds-cfg-dictionary-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.286 NAME 'ds-cfg-test-reversed-password' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.287 NAME 'ds-cfg-character-set' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.288 NAME 'ds-cfg-allow-unclassified-characters' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.289 NAME 'ds-task-rebuild-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.290 NAME 'ds-task-rebuild-index' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.291 NAME 'ds-task-rebuild-tmp-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.292 NAME 'ds-target-group-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.293 NAME 'ds-cfg-value' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.294 NAME 'ds-cfg-default-debug-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.295 NAME 'ds-cfg-default-debug-category' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.296 NAME 'ds-cfg-default-omit-method-entry-arguments' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.297 NAME 'ds-cfg-default-omit-method-return-value' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.298 NAME 'ds-cfg-default-include-throwable-cause' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.299 NAME 'ds-cfg-default-throwable-stack-frames' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.300 NAME 'ds-cfg-debug-scope' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.301 NAME 'ds-cfg-debug-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.302 NAME 'ds-cfg-debug-category' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.303 NAME 'ds-cfg-omit-method-entry-arguments' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.304 NAME 'ds-cfg-omit-method-return-value' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.305 NAME 'ds-cfg-include-throwable-cause' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.306 NAME 'ds-cfg-throwable-stack-frames' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.307 NAME 'ds-cfg-asynchronous' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.308 NAME 'ds-cfg-log-file-permissions' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.309 NAME 'ds-cfg-auto-flush' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.310 NAME 'ds-cfg-append' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.311 NAME 'ds-cfg-max-memory-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.312 NAME 'ds-cfg-cache-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.313 NAME 'ds-cfg-cache-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.314 NAME 'ds-cfg-persistent-cache' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.315 NAME 'ds-cfg-allow-retrieving-membership' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.316 NAME 'ds-cfg-file-size-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.288 NAME 'ds-cfg-allow-unclassified-characters' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.289 NAME 'ds-task-rebuild-base-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.290 NAME 'ds-task-rebuild-index' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.291 NAME 'ds-task-rebuild-tmp-directory' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.292 NAME 'ds-target-group-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.293 NAME 'ds-cfg-value' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.294 NAME 'ds-cfg-default-debug-level' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.295 NAME 'ds-cfg-default-debug-category' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.296 NAME 'ds-cfg-default-omit-method-entry-arguments' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.297 NAME 'ds-cfg-default-omit-method-return-value' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.298 NAME 'ds-cfg-default-include-throwable-cause' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.299 NAME 'ds-cfg-default-throwable-stack-frames' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.300 NAME 'ds-cfg-debug-scope' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.301 NAME 'ds-cfg-debug-level' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.302 NAME 'ds-cfg-debug-category' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.303 NAME 'ds-cfg-omit-method-entry-arguments' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.304 NAME 'ds-cfg-omit-method-return-value' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.305 NAME 'ds-cfg-include-throwable-cause' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.306 NAME 'ds-cfg-throwable-stack-frames' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.307 NAME 'ds-cfg-asynchronous' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.308 NAME 'ds-cfg-log-file-permissions' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.309 NAME 'ds-cfg-auto-flush' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.310 NAME 'ds-cfg-append' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.311 NAME 'ds-cfg-max-memory-size' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.312 NAME 'ds-cfg-cache-type' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.313 NAME 'ds-cfg-cache-directory' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.314 NAME 'ds-cfg-persistent-cache' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.315 NAME 'ds-cfg-allow-retrieving-membership' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.316 NAME 'ds-cfg-file-size-limit' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.317 NAME 'ds-sync-conflict' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.319 NAME 'ds-cfg-substring-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.320 NAME 'ds-cfg-plugin-order-startup' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.321 NAME 'ds-cfg-plugin-order-shutdown' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.322 NAME 'ds-cfg-plugin-order-post-connect' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.323 NAME 'ds-cfg-plugin-order-post-disconnect' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.324 NAME 'ds-cfg-plugin-order-ldif-import' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.325 NAME 'ds-cfg-plugin-order-ldif-export' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.326 NAME 'ds-cfg-plugin-order-pre-parse-abandon' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.327 NAME 'ds-cfg-plugin-order-pre-parse-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.328 NAME 'ds-cfg-plugin-order-pre-parse-bind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.329 NAME 'ds-cfg-plugin-order-pre-parse-compare' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.330 NAME 'ds-cfg-plugin-order-pre-parse-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.331 NAME 'ds-cfg-plugin-order-pre-parse-extended' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.332 NAME 'ds-cfg-plugin-order-pre-parse-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.333 NAME 'ds-cfg-plugin-order-pre-parse-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.334 NAME 'ds-cfg-plugin-order-pre-parse-search' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.335 NAME 'ds-cfg-plugin-order-pre-parse-unbind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.336 NAME 'ds-cfg-plugin-order-pre-operation-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.337 NAME 'ds-cfg-plugin-order-pre-operation-bind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.338 NAME 'ds-cfg-plugin-order-pre-operation-compare' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.339 NAME 'ds-cfg-plugin-order-pre-operation-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.340 NAME 'ds-cfg-plugin-order-pre-operation-extended' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.341 NAME 'ds-cfg-plugin-order-pre-operation-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.342 NAME 'ds-cfg-plugin-order-pre-operation-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.343 NAME 'ds-cfg-plugin-order-pre-operation-search' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.344 NAME 'ds-cfg-plugin-order-post-operation-abandon' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.345 NAME 'ds-cfg-plugin-order-post-operation-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.346 NAME 'ds-cfg-plugin-order-post-operation-bind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.347 NAME 'ds-cfg-plugin-order-post-operation-compare' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.348 NAME 'ds-cfg-plugin-order-post-operation-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.349 NAME 'ds-cfg-plugin-order-post-operation-extended' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.350 NAME 'ds-cfg-plugin-order-post-operation-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.351 NAME 'ds-cfg-plugin-order-post-operation-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.352 NAME 'ds-cfg-plugin-order-post-operation-search' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.353 NAME 'ds-cfg-plugin-order-post-operation-unbind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.354 NAME 'ds-cfg-plugin-order-post-response-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.355 NAME 'ds-cfg-plugin-order-post-response-bind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.356 NAME 'ds-cfg-plugin-order-post-response-compare' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.357 NAME 'ds-cfg-plugin-order-post-response-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.358 NAME 'ds-cfg-plugin-order-post-response-extended' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.359 NAME 'ds-cfg-plugin-order-post-response-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.360 NAME 'ds-cfg-plugin-order-post-response-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.361 NAME 'ds-cfg-plugin-order-post-response-search' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.362 NAME 'ds-cfg-plugin-order-search-result-entry' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.363 NAME 'ds-cfg-plugin-order-search-result-reference' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.364 NAME 'ds-cfg-plugin-order-intermediate-response' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.365 NAME 'ds-cfg-default-user-password-storage-scheme' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.366 NAME 'ds-cfg-default-auth-password-storage-scheme' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.367 NAME 'ds-cfg-strip-syntax-min-upper-bound' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.368 NAME 'ds-cfg-suppress-synchronization-operations' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.369 NAME 'ds-cfg-scope' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.370 NAME 'ds-cfg-sort-order' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.371 NAME 'ds-cfg-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.372 NAME 'ds-cfg-max-block-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.373 NAME 'ds-cfg-state-update-failure-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.374 NAME 'ds-cfg-password-history-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.375 NAME 'ds-cfg-password-history-duration' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.376 NAME 'ds-cfg-smtp-server' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.377 NAME 'ds-cfg-sender-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.378 NAME 'ds-cfg-recipient-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.379 NAME 'ds-cfg-message-subject' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.380 NAME 'ds-cfg-message-body' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.381 NAME 'ds-task-import-clear-backend' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.382 NAME 'ds-cfg-je-property' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.383 NAME 'ds-task-disconnect-connection-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.384 NAME 'ds-task-disconnect-message' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.385 NAME 'ds-task-disconnect-notify-client' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.386 NAME 'ds-cfg-allowed-task' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.387 NAME 'ds-cfg-disabled-privilege' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.388 NAME 'ds-cfg-return-bind-error-messages' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.389 NAME 'ds-cfg-enabled-alert-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.390 NAME 'ds-cfg-disabled-alert-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.391 NAME 'ds-cfg-ssl-protocol' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.392 NAME 'ds-cfg-ssl-cipher-suite' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.393 NAME 'ds-cfg-idle-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.394 NAME 'ds-rlim-idle-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.395 NAME 'ds-cfg-notification-sender-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.396 NAME 'ds-cfg-plugin-order-subordinate-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.397 NAME 'ds-cfg-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.398 NAME 'ds-cfg-match-pattern' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.399 NAME 'ds-cfg-replace-pattern' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.400 NAME 'ds-cfg-compact-encoding' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.401 NAME 'ds-cfg-update-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.402 NAME 'ds-cfg-email-address-attribute-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.403 NAME 'ds-cfg-send-message-without-end-user-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.404 NAME 'ds-cfg-message-template-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.405 NAME 'ds-sync-generation-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.406 NAME 'ds-task-reset-generation-id-domain-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.407 NAME 'ds-cfg-ssl-encryption' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.319 NAME 'ds-cfg-substring-length' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.320 NAME 'ds-cfg-plugin-order-startup' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.321 NAME 'ds-cfg-plugin-order-shutdown' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.322 NAME 'ds-cfg-plugin-order-post-connect' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.323 NAME 'ds-cfg-plugin-order-post-disconnect' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.324 NAME 'ds-cfg-plugin-order-ldif-import' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.325 NAME 'ds-cfg-plugin-order-ldif-export' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.326 NAME 'ds-cfg-plugin-order-pre-parse-abandon' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.327 NAME 'ds-cfg-plugin-order-pre-parse-add' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.328 NAME 'ds-cfg-plugin-order-pre-parse-bind' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.329 NAME 'ds-cfg-plugin-order-pre-parse-compare' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.330 NAME 'ds-cfg-plugin-order-pre-parse-delete' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.331 NAME 'ds-cfg-plugin-order-pre-parse-extended' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.332 NAME 'ds-cfg-plugin-order-pre-parse-modify' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.333 NAME 'ds-cfg-plugin-order-pre-parse-modify-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.334 NAME 'ds-cfg-plugin-order-pre-parse-search' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.335 NAME 'ds-cfg-plugin-order-pre-parse-unbind' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.336 NAME 'ds-cfg-plugin-order-pre-operation-add' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.337 NAME 'ds-cfg-plugin-order-pre-operation-bind' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.338 NAME 'ds-cfg-plugin-order-pre-operation-compare' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.339 NAME 'ds-cfg-plugin-order-pre-operation-delete' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.340 NAME 'ds-cfg-plugin-order-pre-operation-extended' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.341 NAME 'ds-cfg-plugin-order-pre-operation-modify' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.342 NAME 'ds-cfg-plugin-order-pre-operation-modify-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.343 NAME 'ds-cfg-plugin-order-pre-operation-search' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.344 NAME 'ds-cfg-plugin-order-post-operation-abandon' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.345 NAME 'ds-cfg-plugin-order-post-operation-add' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.346 NAME 'ds-cfg-plugin-order-post-operation-bind' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.347 NAME 'ds-cfg-plugin-order-post-operation-compare' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.348 NAME 'ds-cfg-plugin-order-post-operation-delete' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.349 NAME 'ds-cfg-plugin-order-post-operation-extended' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.350 NAME 'ds-cfg-plugin-order-post-operation-modify' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.351 NAME 'ds-cfg-plugin-order-post-operation-modify-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.352 NAME 'ds-cfg-plugin-order-post-operation-search' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.353 NAME 'ds-cfg-plugin-order-post-operation-unbind' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.354 NAME 'ds-cfg-plugin-order-post-response-add' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.355 NAME 'ds-cfg-plugin-order-post-response-bind' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.356 NAME 'ds-cfg-plugin-order-post-response-compare' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.357 NAME 'ds-cfg-plugin-order-post-response-delete' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.358 NAME 'ds-cfg-plugin-order-post-response-extended' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.359 NAME 'ds-cfg-plugin-order-post-response-modify' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.360 NAME 'ds-cfg-plugin-order-post-response-modify-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.361 NAME 'ds-cfg-plugin-order-post-response-search' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.362 NAME 'ds-cfg-plugin-order-search-result-entry' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.363 NAME 'ds-cfg-plugin-order-search-result-reference' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.364 NAME 'ds-cfg-plugin-order-intermediate-response' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.365 NAME 'ds-cfg-default-user-password-storage-scheme' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.366 NAME 'ds-cfg-default-auth-password-storage-scheme' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.367 NAME 'ds-cfg-strip-syntax-min-upper-bound' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.368 NAME 'ds-cfg-suppress-synchronization-operations' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.369 NAME 'ds-cfg-scope' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.370 NAME 'ds-cfg-sort-order' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.371 NAME 'ds-cfg-name' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.372 NAME 'ds-cfg-max-block-size' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.373 NAME 'ds-cfg-state-update-failure-policy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.374 NAME 'ds-cfg-password-history-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.375 NAME 'ds-cfg-password-history-duration' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.376 NAME 'ds-cfg-smtp-server' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.377 NAME 'ds-cfg-sender-address' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.378 NAME 'ds-cfg-recipient-address' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.379 NAME 'ds-cfg-message-subject' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.380 NAME 'ds-cfg-message-body' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.381 NAME 'ds-task-import-clear-backend' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.382 NAME 'ds-cfg-je-property' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.383 NAME 'ds-task-disconnect-connection-id' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.384 NAME 'ds-task-disconnect-message' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.385 NAME 'ds-task-disconnect-notify-client' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.386 NAME 'ds-cfg-allowed-task' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.387 NAME 'ds-cfg-disabled-privilege' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.388 NAME 'ds-cfg-return-bind-error-messages' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.389 NAME 'ds-cfg-enabled-alert-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.390 NAME 'ds-cfg-disabled-alert-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.391 NAME 'ds-cfg-ssl-protocol' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.392 NAME 'ds-cfg-ssl-cipher-suite' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.393 NAME 'ds-cfg-idle-time-limit' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.394 NAME 'ds-rlim-idle-time-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.395 NAME 'ds-cfg-notification-sender-address' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.396 NAME 'ds-cfg-plugin-order-subordinate-modify-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.397 NAME 'ds-cfg-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.398 NAME 'ds-cfg-match-pattern' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.399 NAME 'ds-cfg-replace-pattern' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.400 NAME 'ds-cfg-compact-encoding' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.401 NAME 'ds-cfg-update-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.402 NAME 'ds-cfg-email-address-attribute-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.403 NAME 'ds-cfg-send-message-without-end-user-address' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.404 NAME 'ds-cfg-message-template-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.405 NAME 'ds-sync-generation-id' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.406 NAME 'ds-task-reset-generation-id-domain-base-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.407 NAME 'ds-cfg-ssl-encryption' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.408 NAME 'ds-cfg-public-key-certificate' DESC 'cryptographic public-key certificate' SYNTAX 1.3.6.1.4.1.1466.115.121.1.8 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.409 NAME 'ds-cfg-key-id' DESC 'cryptographic cipher-key unique identifier' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.410 NAME 'ds-cfg-key-compromised-time' DESC 'The time a cryptographic cipher key was suspected to be compromised' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.411 NAME 'ds-cfg-save-config-on-successful-startup' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.412 NAME 'ds-cfg-max-blocked-write-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.413 NAME 'ds-cfg-ldif-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.414 NAME 'ds-cfg-poll-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.415 NAME 'ds-cfg-plugin-order-post-synchronization-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.416 NAME 'ds-cfg-plugin-order-post-synchronization-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.417 NAME 'ds-cfg-plugin-order-post-synchronization-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.418 NAME 'ds-cfg-plugin-order-post-synchronization-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.419 NAME 'ds-cfg-invoke-for-internal-operations' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.420 NAME 'ds-cfg-ldif-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.421 NAME 'ds-cfg-is-private-backend' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.422 NAME 'ds-cfg-isolation-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.423 NAME 'ds-cfg-cipher-transformation-name' DESC 'The name of a cryptographic cipher transformation consisting of an algorithm, a mode, and a padding specification, separated by slashes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.424 NAME 'ds-cfg-mac-algorithm-name' DESC 'The name of a cryptographic message authentication code (MAC) algorithm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.425 NAME 'ds-cfg-key-length-bits' DESC 'The length of a cryptographic secret key' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.426 NAME 'ds-cfg-initialization-vector-length-bits' DESC 'The length of a cryptographic cipher initialization vector' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.427 NAME 'ds-cfg-symmetric-key' DESC 'A cryptographic secret-key wrapped by a public-key' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.428 NAME 'ds-cfg-digest-algorithm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.429 NAME 'ds-cfg-mac-algorithm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.430 NAME 'ds-cfg-mac-key-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.431 NAME 'ds-cfg-cipher-transformation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.432 NAME 'ds-cfg-cipher-key-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.433 NAME 'ds-cfg-key-wrapping-transformation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.434 NAME 'ds-base-dn-entry-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.437 NAME 'ds-cfg-workflow' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.439 NAME 'ds-cfg-workflow-element' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.440 NAME 'ds-cfg-workflow-configuration-mode' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.441 NAME 'ds-cfg-backend' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.442 NAME 'ds-cfg-etime-resolution' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.444 NAME 'ds-task-reset-generation-id-new-value' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.445 NAME 'ds-cfg-cache-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.446 NAME 'ds-cfg-entry-cache-preload' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.447 NAME 'ds-cfg-num-update-replay-threads' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.448 NAME 'ds-cfg-trap-port' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.449 NAME 'ds-cfg-community' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.450 NAME 'ds-cfg-allowed-manager' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.451 NAME 'ds-cfg-allowed-user' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.452 NAME 'ds-cfg-security-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.453 NAME 'ds-cfg-traps-community' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.454 NAME 'ds-cfg-traps-destination' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.455 NAME 'ds-cfg-security-agent-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.456 NAME 'ds-cfg-registered-mbean' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.457 NAME 'ds-cfg-opendmk-jarfile' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.458 NAME 'ds-task-export-include-operational-attributes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.459 NAME 'ds-task-import-template-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.460 NAME 'ds-task-import-random-seed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.596 NAME 'ds-task-import-thread-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.461 NAME 'ds-cfg-allowed-auth-method' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.462 NAME 'ds-cfg-allowed-protocol' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.463 NAME 'ds-cfg-allowed-bind-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.465 NAME 'ds-cfg-is-security-mandatory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.467 NAME 'ds-cfg-priority' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.468 NAME 'ds-cfg-max-connections' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.469 NAME 'ds-cfg-max-connections-from-same-ip' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.470 NAME 'ds-cfg-max-ops-per-connection' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.471 NAME 'ds-cfg-max-concurrent-ops-per-connection' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.474 NAME 'ds-cfg-min-substring-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.478 NAME 'ds-cfg-assured-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.479 NAME 'ds-cfg-assured-sd-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.480 NAME 'ds-cfg-assured-timeout' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.481 NAME 'ds-cfg-group-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.482 NAME 'ds-cfg-referrals-url' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.483 NAME 'ds-cfg-degraded-status-threshold' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.484 NAME 'ds-cfg-allowed-operations' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.485 NAME 'ds-cfg-allowed-attributes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.486 NAME 'ds-cfg-prohibited-attributes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.487 NAME 'ds-cfg-allowed-search-scopes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.488 NAME 'ds-cfg-allowed-subtrees' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.489 NAME 'ds-cfg-prohibited-subtrees' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.499 NAME 'ds-cfg-matching-rule-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.500 NAME 'ds-cfg-collation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.501 NAME 'ds-cfg-ndb-connect-string' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.502 NAME 'ds-cfg-ndb-thread-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.503 NAME 'ds-cfg-ndb-num-connections' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.504 NAME 'ds-cfg-sql-user' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.505 NAME 'ds-cfg-sql-passwd' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.506 NAME 'ds-cfg-ndb-dbname' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.507 NAME 'ds-cfg-ndb-attr-len' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.508 NAME 'ds-cfg-ndb-attr-blob' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.509 NAME 'ds-cfg-sql-connect-string' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.511 NAME 'ds-cfg-quality-of-protection' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.512 NAME 'ds-cfg-cipher-strength' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.513 NAME 'ds-cfg-principal-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.518 NAME 'ds-cfg-index-extensible-matching-rule' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.586 NAME 'ds-cfg-fractional-include' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.587 NAME 'ds-cfg-fractional-exclude' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.588 NAME 'ds-sync-fractional-include' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.589 NAME 'ds-sync-fractional-exclude' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.595 NAME 'ds-cfg-changetime-heartbeat-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.592 NAME 'ds-cfg-solve-conflicts' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.599 NAME 'ds-cfg-plugin-order-ldif-import-end' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.600 NAME 'ds-cfg-plugin-order-ldif-import-begin' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.601 NAME 'ds-cfg-ecl-include' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.603 NAME 'ds-cfg-weight' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.605 NAME 'ds-cfg-monitoring-period' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.607 NAME 'ds-cfg-initialization-window-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.608 NAME 'ds-cfg-log-changenumber' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.609 NAME 'ds-cfg-plugin-order-subordinate-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.610 NAME 'ds-cfg-disk-full-threshold' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.611 NAME 'ds-cfg-disk-low-threshold' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.612 NAME 'ds-cfg-index-filter-analyzer-enabled' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.613 NAME 'ds-cfg-max-psearches' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.614 NAME 'ds-cfg-conflicts-historical-purge-delay' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.615 NAME 'ds-task-purge-conflicts-historical-domain-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.616 NAME 'ds-task-purge-conflicts-historical-maximum-duration' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.617 NAME 'ds-task-purge-conflicts-historical-last-purged-changenumber' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.618 NAME 'ds-task-purge-conflicts-historical-purge-completed-in-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.619 NAME 'ds-task-purge-conflicts-historical-purged-values-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.620 NAME 'ds-task-purge-conflicts-historical-first-purged-changenumber' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.627 NAME 'ds-cfg-max-ops-per-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.628 NAME 'ds-cfg-max-ops-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.1 NAME 'ds-cfg-crypt-password-storage-encryption-algorithm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.2 NAME 'ds-cfg-db-evictor-core-threads' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.3 NAME 'ds-cfg-db-evictor-max-threads' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.4 NAME 'ds-cfg-db-evictor-keep-alive' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.409 NAME 'ds-cfg-key-id' DESC 'cryptographic cipher-key unique identifier' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.410 NAME 'ds-cfg-key-compromised-time' DESC 'The time a cryptographic cipher key was suspected to be compromised' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.411 NAME 'ds-cfg-save-config-on-successful-startup' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.412 NAME 'ds-cfg-max-blocked-write-time-limit' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.413 NAME 'ds-cfg-ldif-directory' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.414 NAME 'ds-cfg-poll-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.415 NAME 'ds-cfg-plugin-order-post-synchronization-add' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.416 NAME 'ds-cfg-plugin-order-post-synchronization-delete' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.417 NAME 'ds-cfg-plugin-order-post-synchronization-modify' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.418 NAME 'ds-cfg-plugin-order-post-synchronization-modify-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.419 NAME 'ds-cfg-invoke-for-internal-operations' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.420 NAME 'ds-cfg-ldif-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.421 NAME 'ds-cfg-is-private-backend' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.422 NAME 'ds-cfg-isolation-policy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.423 NAME 'ds-cfg-cipher-transformation-name' DESC 'The name of a cryptographic cipher transformation consisting of an algorithm, a mode, and a padding specification, separated by slashes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.424 NAME 'ds-cfg-mac-algorithm-name' DESC 'The name of a cryptographic message authentication code (MAC) algorithm' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.425 NAME 'ds-cfg-key-length-bits' DESC 'The length of a cryptographic secret key' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.426 NAME 'ds-cfg-initialization-vector-length-bits' DESC 'The length of a cryptographic cipher initialization vector' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.427 NAME 'ds-cfg-symmetric-key' DESC 'A cryptographic secret-key wrapped by a public-key' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.428 NAME 'ds-cfg-digest-algorithm' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.429 NAME 'ds-cfg-mac-algorithm' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.430 NAME 'ds-cfg-mac-key-length' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.431 NAME 'ds-cfg-cipher-transformation' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.432 NAME 'ds-cfg-cipher-key-length' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.433 NAME 'ds-cfg-key-wrapping-transformation' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.434 NAME 'ds-base-dn-entry-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.437 NAME 'ds-cfg-workflow' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.439 NAME 'ds-cfg-workflow-element' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.440 NAME 'ds-cfg-workflow-configuration-mode' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.441 NAME 'ds-cfg-backend' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.442 NAME 'ds-cfg-etime-resolution' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.444 NAME 'ds-task-reset-generation-id-new-value' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.445 NAME 'ds-cfg-cache-level' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.446 NAME 'ds-cfg-entry-cache-preload' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.447 NAME 'ds-cfg-num-update-replay-threads' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.448 NAME 'ds-cfg-trap-port' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.449 NAME 'ds-cfg-community' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.450 NAME 'ds-cfg-allowed-manager' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.451 NAME 'ds-cfg-allowed-user' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.452 NAME 'ds-cfg-security-level' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.453 NAME 'ds-cfg-traps-community' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.454 NAME 'ds-cfg-traps-destination' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.455 NAME 'ds-cfg-security-agent-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.456 NAME 'ds-cfg-registered-mbean' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.457 NAME 'ds-cfg-opendmk-jarfile' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.458 NAME 'ds-task-export-include-operational-attributes' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.459 NAME 'ds-task-import-template-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.460 NAME 'ds-task-import-random-seed' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.596 NAME 'ds-task-import-thread-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.461 NAME 'ds-cfg-allowed-auth-method' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.462 NAME 'ds-cfg-allowed-protocol' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.463 NAME 'ds-cfg-allowed-bind-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.465 NAME 'ds-cfg-is-security-mandatory' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.467 NAME 'ds-cfg-priority' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.468 NAME 'ds-cfg-max-connections' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.469 NAME 'ds-cfg-max-connections-from-same-ip' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.470 NAME 'ds-cfg-max-ops-per-connection' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.471 NAME 'ds-cfg-max-concurrent-ops-per-connection' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.474 NAME 'ds-cfg-min-substring-length' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.478 NAME 'ds-cfg-assured-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.479 NAME 'ds-cfg-assured-sd-level' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.480 NAME 'ds-cfg-assured-timeout' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.481 NAME 'ds-cfg-group-id' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.482 NAME 'ds-cfg-referrals-url' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.483 NAME 'ds-cfg-degraded-status-threshold' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.484 NAME 'ds-cfg-allowed-operations' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.485 NAME 'ds-cfg-allowed-attributes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.486 NAME 'ds-cfg-prohibited-attributes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.487 NAME 'ds-cfg-allowed-search-scopes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.488 NAME 'ds-cfg-allowed-subtrees' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.489 NAME 'ds-cfg-prohibited-subtrees' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.499 NAME 'ds-cfg-matching-rule-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.500 NAME 'ds-cfg-collation' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.511 NAME 'ds-cfg-quality-of-protection' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.512 NAME 'ds-cfg-cipher-strength' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.513 NAME 'ds-cfg-principal-name' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.518 NAME 'ds-cfg-index-extensible-matching-rule' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.586 NAME 'ds-cfg-fractional-include' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.587 NAME 'ds-cfg-fractional-exclude' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.588 NAME 'ds-sync-fractional-include' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.589 NAME 'ds-sync-fractional-exclude' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.595 NAME 'ds-cfg-changetime-heartbeat-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.592 NAME 'ds-cfg-solve-conflicts' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.599 NAME 'ds-cfg-plugin-order-ldif-import-end' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.600 NAME 'ds-cfg-plugin-order-ldif-import-begin' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.601 NAME 'ds-cfg-ecl-include' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.7 NAME 'ds-cfg-ecl-include-for-deletes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.603 NAME 'ds-cfg-weight' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.605 NAME 'ds-cfg-monitoring-period' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.607 NAME 'ds-cfg-initialization-window-size' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.608 NAME 'ds-cfg-log-changenumber' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.609 NAME 'ds-cfg-plugin-order-subordinate-delete' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.610 NAME 'ds-cfg-disk-full-threshold' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.611 NAME 'ds-cfg-disk-low-threshold' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.612 NAME 'ds-cfg-index-filter-analyzer-enabled' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.613 NAME 'ds-cfg-max-psearches' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.614 NAME 'ds-cfg-conflicts-historical-purge-delay' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.615 NAME 'ds-task-purge-conflicts-historical-domain-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.616 NAME 'ds-task-purge-conflicts-historical-maximum-duration' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.617 NAME 'ds-task-purge-conflicts-historical-last-purged-changenumber' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.618 NAME 'ds-task-purge-conflicts-historical-purge-completed-in-time' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.619 NAME 'ds-task-purge-conflicts-historical-purged-values-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.620 NAME 'ds-task-purge-conflicts-historical-first-purged-changenumber' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.627 NAME 'ds-cfg-max-ops-per-interval' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.628 NAME 'ds-cfg-max-ops-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.1 NAME 'ds-cfg-crypt-password-storage-encryption-algorithm' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.2 NAME 'ds-cfg-db-evictor-core-threads' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.3 NAME 'ds-cfg-db-evictor-max-threads' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.4 NAME 'ds-cfg-db-evictor-keep-alive' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.5 NAME 'ds-cfg-min-character-sets' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.8 NAME 'ds-cfg-pwd-sync-policy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.9 NAME 'ds-cfg-samba-administrator-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.10 NAME 'ds-cfg-index-filter-analyzer-max-filters' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.11 NAME 'ds-cfg-subordinate-indexes-enabled' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.12 NAME 'ds-cfg-primary-remote-ldap-server' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.13 NAME 'ds-cfg-secondary-remote-ldap-server' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.14 NAME 'ds-cfg-mapping-policy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.15 NAME 'ds-cfg-mapped-attribute' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.16 NAME 'ds-cfg-mapped-search-bind-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.17 NAME 'ds-cfg-mapped-search-bind-password' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.18 NAME 'ds-cfg-mapped-search-base-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.19 NAME 'ds-cfg-connection-timeout' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.20 NAME 'ds-cfg-mapped-search-bind-password-property' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.21 NAME 'ds-cfg-mapped-search-bind-password-environment-variable' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.22 NAME 'ds-cfg-mapped-search-bind-password-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.23 NAME 'ds-cfg-use-password-caching' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.24 NAME 'ds-cfg-cached-password-storage-scheme' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.25 NAME 'ds-cfg-cached-password-ttl' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.26 NAME 'ds-pta-cached-password' SYNTAX 1.3.6.1.4.1.26027.1.3.1 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.27 NAME 'ds-pta-cached-password-time' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.28 NAME 'ds-cfg-remove-inbound-attributes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.29 NAME 'ds-cfg-rename-inbound-attributes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.30 NAME 'ds-cfg-filtering-policy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.31 NAME 'ds-cfg-log-record-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.32 NAME 'ds-cfg-connection-client-address-equal-to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.33 NAME 'ds-cfg-connection-client-address-not-equal-to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.34 NAME 'ds-cfg-connection-protocol-equal-to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.35 NAME 'ds-cfg-connection-port-equal-to' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.36 NAME 'ds-cfg-user-dn-equal-to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.37 NAME 'ds-cfg-user-dn-not-equal-to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.38 NAME 'ds-cfg-user-is-member-of' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.39 NAME 'ds-cfg-user-is-not-member-of' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.40 NAME 'ds-cfg-request-target-dn-equal-to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.41 NAME 'ds-cfg-request-target-dn-not-equal-to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.42 NAME 'ds-cfg-response-result-code-equal-to' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.43 NAME 'ds-cfg-response-result-code-not-equal-to' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.44 NAME 'ds-cfg-response-etime-greater-than' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.45 NAME 'ds-cfg-response-etime-less-than' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.46 NAME 'ds-cfg-search-response-nentries-greater-than' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.47 NAME 'ds-cfg-search-response-nentries-less-than' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.48 NAME 'ds-cfg-search-response-is-indexed' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.49 NAME 'ds-cfg-log-format' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.50 NAME 'ds-cfg-log-record-time-format' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.51 NAME 'ds-cfg-log-control-oids' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.52 NAME 'ds-cfg-check-substrings' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.53 NAME 'ds-cfg-check-references' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.54 NAME 'ds-cfg-check-references-filter-criteria' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.55 NAME 'ds-cfg-check-references-scope-criteria' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.56 NAME 'ds-cfg-db-log-filecache-size' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.57 NAME 'ds-cfg-excluded-attribute' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.58 NAME 'ds-cfg-checksum-algorithm' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.60 NAME ( 'ds-pwp-password-expiration-time' 'pwdExpirationTime' ) EQUALITY generalizedTimeMatch ORDERING generalizedTimeOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.61 NAME 'ds-cfg-max-internal-buffer-size' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.62 NAME 'ds-cfg-character-set-ranges' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.63 NAME 'supportedTLSProtocols' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE dSAOperation X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.64 NAME 'supportedTLSCiphers' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE dSAOperation X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.65 NAME 'connectionsEstablished' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.66 NAME 'connectionsClosed' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.67 NAME 'bytesRead' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.68 NAME 'bytesWritten' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.69 NAME 'ldapMessagesRead' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.70 NAME 'ldapMessagesWritten' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.71 NAME 'operationsAbandoned' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.72 NAME 'operationsInitiated' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.73 NAME 'operationsCompleted' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.74 NAME 'abandonRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.75 NAME 'addRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.76 NAME 'addResponses' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.77 NAME 'bindRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.78 NAME 'bindResponses' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.79 NAME 'compareRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.80 NAME 'compareResponses' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.81 NAME 'deleteRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.82 NAME 'deleteResponses' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.83 NAME 'extendedRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.84 NAME 'extendedResponses' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.85 NAME 'modifyRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.86 NAME 'modifyResponses' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.87 NAME 'modifyDNRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.88 NAME 'modifyDNResponses' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.89 NAME 'searchRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.90 NAME 'searchOneRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.91 NAME 'searchSubRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.92 NAME 'searchResultEntries' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.93 NAME 'searchResultReferences' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.94 NAME 'searchResultsDone' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.95 NAME 'unbindRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.96 NAME 'ds-mon-add-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.97 NAME 'ds-mon-resident-time-add-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.98 NAME 'ds-mon-search-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.99 NAME 'ds-mon-resident-time-search-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.100 NAME 'ds-mon-bind-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.101 NAME 'ds-mon-resident-time-bind-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.102 NAME 'ds-mon-unbind-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.103 NAME 'ds-mon-resident-time-unbind-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.104 NAME 'ds-mon-compare-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.105 NAME 'ds-mon-resident-time-compare-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.106 NAME 'ds-mon-delete-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.107 NAME 'ds-mon-resident-time-delete-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.108 NAME 'ds-mon-mod-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.109 NAME 'ds-mon-resident-time-mod-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.110 NAME 'ds-mon-moddn-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.111 NAME 'ds-mon-resident-time-moddn-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.112 NAME 'ds-mon-abandon-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.113 NAME 'ds-mon-resident-time-abandon-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.114 NAME 'ds-mon-extended-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.115 NAME 'ds-mon-resident-time-extended-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.116 NAME 'ds-task-rebuild-index-clear-degraded-state' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.117 NAME 'ds-cfg-pbkdf2-iterations' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.118 NAME 'ds-cfg-config-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.119 NAME 'ds-cfg-authentication-required' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.120 NAME 'ds-mon-http-requests-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.121 NAME 'ds-mon-resident-time-http-requests-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.122 NAME 'ds-mon-http-delete-requests-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.123 NAME 'ds-mon-resident-time-http-delete-requests-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.124 NAME 'ds-mon-http-get-requests-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.125 NAME 'ds-mon-resident-time-http-get-requests-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.126 NAME 'ds-mon-http-patch-requests-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.127 NAME 'ds-mon-resident-time-http-patch-requests-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.128 NAME 'ds-mon-http-post-requests-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.129 NAME 'ds-mon-resident-time-http-post-requests-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.130 NAME 'ds-mon-http-put-requests-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.131 NAME 'ds-mon-resident-time-http-put-requests-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.143 NAME 'ds-cfg-source-address' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) attributeTypes: ( 2.16.840.1.113730.3.1.5 NAME 'changeNumber' DESC 'a number which uniquely identifies a change made to a directory entry' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 EQUALITY integerMatch ORDERING integerOrderingMatch SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 2.16.840.1.113730.3.1.6 NAME 'targetDN' DESC 'the DN of the entry which was modified' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 2.16.840.1.113730.3.1.7 NAME 'changeType' DESC 'the type of change made to an entry' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) @@ -732,12 +851,13 @@ attributeTypes: ( 2.16.840.1.113730.3.1.8 NAME 'changes' DESC 'a set of changes attributeTypes: ( 2.16.840.1.113730.3.1.9 NAME 'newRDN' DESC 'the new RDN of an entry which is the target of a modrdn operation' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 2.16.840.1.113730.3.1.10 NAME 'deleteOldRDN' DESC 'a flag which indicates if the old RDN should be retained as an attribute of the entry' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 2.16.840.1.113730.3.1.11 NAME 'newSuperior' DESC 'the new parent of an entry which is the target of a moddn operation' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) -attributeTypes: ( 2.16.840.1.113730.3.1.77 NAME 'changeTime' DESC 'the time when the change was processed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'Sun DSEE6 Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) +attributeTypes: ( 2.16.840.1.113730.3.1.77 NAME 'changeTime' DESC 'the time when the change was processed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'Sun Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.9.1.724 NAME 'replicaIdentifier' DESC 'the OpenDS replication domain server identifier for the change' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.9.1.725 NAME 'replicationCSN' DESC 'The OpenDS replication change number for the change' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.590 NAME 'targetEntryUUID' DESC 'The OpenDS unique id of the entry targeted by the change' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.590 NAME ( 'targetEntryUUID' 'targetUniqueID' ) DESC 'The OpenDS unique id of the entry targeted by the change' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.591 NAME 'changeLogCookie' DESC 'The OpenDS opaque cookie for the External Changelog' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.604 NAME 'changeInitiatorsName' DESC 'The initiator user of the change' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.6 NAME 'includedAttributes' DESC 'A set of attributes which were part of the entry before the changes were applied' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.6 NAME 'javaClassName' DESC 'Fully qualified name of distinguished Java class or interface' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.7 NAME 'javaCodebase' DESC 'URL(s) specifying the location of class definition' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.13 NAME 'javaClassNames' DESC 'Fully qualified Java class or interface name' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' ) @@ -887,17 +1007,63 @@ attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.6 NAME 'authenticationMethod' DESC 'Ide attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.7 NAME 'profileTTL' DESC 'Time to live, in seconds, before a profile is considered stale' EQUALITY integerMatch ORDERING integerOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.9 NAME 'attributeMap' DESC 'Attribute mappings used, required, or supported by an agent or service' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.10 NAME 'credentialLevel' DESC 'Identifies type of credentials either used, required, or supported by an agent or service' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.11 NAME 'objectclassMap' DESC 'Object class mappings used, required, or supported by an agent or service' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.11 NAME 'objectclassMap' DESC 'Object class mappings used, required, or supported by an agent or service' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.12 NAME 'defaultSearchScope' DESC 'Default scope used when performing a search' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.13 NAME 'serviceCredentialLevel' DESC 'Specifies the type of credentials either used, required, or supported by a specific service' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.14 NAME 'serviceSearchDescriptor' DESC 'Specifies search descriptors required, used, or supported by a particular service or agent' EQUALITY caseExactMatch SUBSTR caseExactSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.15 NAME 'serviceAuthenticationMethod' DESC 'Specifies types authentication methods either used, required, or supported by a particular service' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.16 NAME 'dereferenceAliases' DESC 'Specifies if a service or agent either requires, supports, or uses dereferencing of aliases.' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) -attributetypes: ( 1.3.6.1.4.1.42.2.27.1.1.12 NAME 'nisNetIdUser' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -attributetypes: ( 1.3.6.1.4.1.42.2.27.1.1.13 NAME 'nisNetIdGroup' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -attributetypes: ( 1.3.6.1.4.1.42.2.27.1.1.14 NAME 'nisNetIdHost' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -attributetypes: ( 1.3.6.1.4.1.42.2.27.2.1.15 NAME 'rfc822mailMember' DESC 'rfc822 mail addresss of group member' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -attributetypes: ( 2.16.840.1.113730.3.1.30 NAME 'mgrpRFC822MailMember' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.24 NAME 'sambaLMPassword' DESC 'LanManager Password' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{32} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.25 NAME 'sambaNTPassword' DESC 'MD4 hash of the unicode password' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{32} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.26 NAME 'sambaAcctFlags' DESC 'Account Flags' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{16} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.27 NAME 'sambaPwdLastSet' DESC 'Timestamp of the last password update' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.28 NAME 'sambaPwdCanChange' DESC 'Timestamp of when the user is allowed to update the password' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.29 NAME 'sambaPwdMustChange' DESC 'Timestamp of when the password will expire' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.30 NAME 'sambaLogonTime' DESC 'Timestamp of last logon' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.31 NAME 'sambaLogoffTime' DESC 'Timestamp of last logoff' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.32 NAME 'sambaKickoffTime' DESC 'Timestamp of when the user will be logged off automatically' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.48 NAME 'sambaBadPasswordCount' DESC 'Bad password attempt count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.49 NAME 'sambaBadPasswordTime' DESC 'Time of the last bad password attempt' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.55 NAME 'sambaLogonHours' DESC 'Logon Hours' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.33 NAME 'sambaHomeDrive' DESC 'Driver letter of home directory mapping' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{4} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.34 NAME 'sambaLogonScript' DESC 'Logon script path' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.35 NAME 'sambaProfilePath' DESC 'Roaming profile path' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.36 NAME 'sambaUserWorkstations' DESC 'List of user workstations the user is allowed to logon to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.37 NAME 'sambaHomePath' DESC 'Home directory UNC path' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.38 NAME 'sambaDomainName' DESC 'Windows NT domain to which the user belongs' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.47 NAME 'sambaMungedDial' DESC 'Base64 encoded user parameter string' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{1050} X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.54 NAME 'sambaPasswordHistory' DESC 'Concatenated MD4 hashes of the unicode passwords used on this account' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{1024} X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.20 NAME 'sambaSID' DESC 'Security ID' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{64} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.23 NAME 'sambaPrimaryGroupSID' DESC 'Primary Group Security ID' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{64} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.51 NAME 'sambaSIDList' DESC 'Security ID List' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{64} X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.19 NAME 'sambaGroupType' DESC 'NT Group Type' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.21 NAME 'sambaNextUserRid' DESC 'Next NT rid to give our for users' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.22 NAME 'sambaNextGroupRid' DESC 'Next NT rid to give out for groups' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.39 NAME 'sambaNextRid' DESC 'Next NT rid to give out for anything' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.40 NAME 'sambaAlgorithmicRidBase' DESC 'Base at which the samba RID generation algorithm should operate' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.41 NAME 'sambaShareName' DESC 'Share Name' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.42 NAME 'sambaOptionName' DESC 'Option Name' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.43 NAME 'sambaBoolOption' DESC 'A boolean option' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.44 NAME 'sambaIntegerOption' DESC 'An integer option' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.45 NAME 'sambaStringOption' DESC 'A string option' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.46 NAME 'sambaStringListOption' DESC 'A string list option' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.52 NAME 'sambaPrivilegeList' DESC 'Privileges List' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{64} X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.53 NAME 'sambaTrustFlags' DESC 'Trust Password Flags' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.58 NAME 'sambaMinPwdLength' DESC 'Minimal password length (default: 5)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.59 NAME 'sambaPwdHistoryLength' DESC 'Length of Password History Entries (default: 0 => off)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.60 NAME 'sambaLogonToChgPwd' DESC 'Force Users to logon for password change (default: 0 => off, 2 => on)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.61 NAME 'sambaMaxPwdAge' DESC 'Maximum password age, in seconds (default: -1 => never expire passwords)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.62 NAME 'sambaMinPwdAge' DESC 'Minimum password age, in seconds (default: 0 => allow immediate password change)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.63 NAME 'sambaLockoutDuration' DESC 'Lockout duration in minutes (default: 30, -1 => forever)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.64 NAME 'sambaLockoutObservationWindow' DESC 'Reset time after lockout in minutes (default: 30)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.65 NAME 'sambaLockoutThreshold' DESC 'Lockout users after bad logon attempts (default: 0 => off)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.66 NAME 'sambaForceLogoff' DESC 'Disconnect Users outside logon hours (default: -1 => off, 0 => on)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.67 NAME 'sambaRefuseMachinePwdChange' DESC 'Allow Machine Password changes (default: 0 => off)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.42.2.27.1.1.12 NAME 'nisNetIdUser' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.42.2.27.1.1.13 NAME 'nisNetIdGroup' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.42.2.27.1.1.14 NAME 'nisNetIdHost' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.42.2.27.2.1.15 NAME 'rfc822mailMember' DESC 'rfc822 mail addresss of group member' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +attributeTypes: ( 2.16.840.1.113730.3.1.30 NAME 'mgrpRFC822MailMember' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.1 NAME 'SolarisProjectID' DESC 'Unique ID for a Solaris Project entry' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.2 NAME 'SolarisProjectName' DESC 'Name of a Solaris Project Entry' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.3 NAME 'SolarisProjectAttr' DESC 'Attributes of a Solaris Project entry' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) @@ -931,10 +1097,10 @@ attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.30 NAME 'memberGid' DESC 'Posix Group attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.31 NAME 'SolarisBindTimeLimit' DESC 'Time Limit in seconds for bind operations' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.57 NAME 'nisplusTimeZone' DESC 'tzone column from NIS+ timezone table' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.62 NAME 'winAccountName' DESC 'Windows user or group Name corresponding to a Unix user or group' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -attributetypes:( 1.3.6.1.4.1.42.2.27.5.1.63 NAME 'sun-printer-bsdaddr' DESC 'Sets the server, print queue destination name and whether the client generates protocol extensions. "Solaris" specifies a Solaris print server extension. The value is represented by the following value: server "," destination ", Solaris".' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -attributetypes:( 1.3.6.1.4.1.42.2.27.5.1.64 NAME 'sun-printer-kvp' DESC 'This attribute contains a set of key value pairs which may have meaning to the print subsystem or may be user defined. Each value is represented by the following: key "=" value.' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -attributetypes:( 1.3.6.1.4.1.42.2.27.5.1.67 NAME 'ipTnetTemplateName' DESC 'Trusted Solaris network template template_name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -attributetypes:( 1.3.6.1.4.1.42.2.27.5.1.68 NAME 'ipTnetNumber' DESC 'Trusted Solaris network template ip_address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.63 NAME 'sun-printer-bsdaddr' DESC 'Sets the server, print queue destination name and whether the client generates protocol extensions. "Solaris" specifies a Solaris print server extension. The value is represented by the following value: server "," destination ", Solaris".' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.64 NAME 'sun-printer-kvp' DESC 'This attribute contains a set of key value pairs which may have meaning to the print subsystem or may be user defined. Each value is represented by the following: key "=" value.' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.67 NAME 'ipTnetTemplateName' DESC 'Trusted Solaris network template template_name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.42.2.27.5.1.68 NAME 'ipTnetNumber' DESC 'Trusted Solaris network template ip_address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) attributeTypes: ( 2.16.840.1.113730.3.1.587 NAME 'nsds50ruv' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Sun Directory Server' X-SCHEMA-FILE '06-compat.ldif' ) objectClasses: ( 2.5.6.0 NAME 'top' ABSTRACT MUST objectClass X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' ) objectClasses: ( 2.5.6.1 NAME 'alias' SUP top STRUCTURAL MUST aliasedObjectName X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' ) @@ -958,6 +1124,9 @@ objectClasses: ( 2.5.6.17 NAME 'groupOfUniqueNames' SUP top STRUCTURAL MUST cn M objectClasses: ( 2.5.6.18 NAME 'userSecurityInformation' SUP top AUXILIARY MAY ( supportedAlgorithms ) X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' ) objectClasses: ( 2.5.6.19 NAME 'cRLDistributionPoint' SUP top STRUCTURAL MUST cn MAY ( certificateRevocationList $ authorityRevocationList $ deltaRevocationList ) X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' ) objectClasses: ( 2.5.6.20 NAME 'dmd' SUP top STRUCTURAL MUST dmdName MAY ( userPassword $ searchGuide $ seeAlso $ businessCategory $ x121Address $ registeredAddress $ destinationIndicator $ preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $ telephoneNumber $ internationaliSDNNumber $ facsimileTelephoneNumber $ street $ postOfficeBox $ postalCode $ postalAddress $ physicalDeliveryOfficeName $ st $ l $ description ) X-ORIGIN 'RFC 2256' X-SCHEMA-FILE '00-core.ldif' ) +objectClasses: ( 2.5.6.21 NAME 'pkiUser' DESC 'X.509 PKI User' SUP top AUXILIARY MAY userCertificate X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' ) +objectClasses: ( 2.5.6.22 NAME 'pkiCA' DESC 'X.509 PKI Certificate Authority' SUP top AUXILIARY MAY ( cACertificate $ certificateRevocationList $ authorityRevocationList $ crossCertificatePair ) X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' ) +objectClasses: ( 2.5.6.23 NAME 'deltaCRL' DESC 'X.509 delta CRL' SUP top AUXILIARY MAY deltaRevocationList X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' ) objectClasses: ( 1.3.6.1.4.1.1466.101.120.111 NAME 'extensibleObject' SUP top AUXILIARY X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' ) objectClasses: ( 2.5.20.1 NAME 'subschema' AUXILIARY MAY ( dITStructureRules $ nameForms $ ditContentRules $ objectClasses $ attributeTypes $ matchingRules $ matchingRuleUse ) X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' ) objectClasses: ( 0.9.2342.19200300.100.4.5 NAME 'account' SUP top STRUCTURAL MUST uid MAY ( description $ seeAlso $ l $ o $ ou $ host ) X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' ) @@ -997,7 +1166,7 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.2 NAME 'ds-cfg-alert-handler' SUP top STR objectClasses: ( 1.3.6.1.4.1.26027.1.2.3 NAME 'ds-cfg-attribute-syntax' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.4 NAME 'ds-cfg-telephone-number-attribute-syntax' SUP ds-cfg-attribute-syntax STRUCTURAL MAY ds-cfg-strict-format X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.5 NAME 'ds-cfg-backend' SUP top STRUCTURAL MUST ( ds-cfg-backend-id $ ds-cfg-base-dn $ ds-cfg-java-class $ ds-cfg-enabled $ ds-cfg-writability-mode ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.6 NAME 'ds-cfg-local-db-backend' SUP ds-cfg-backend STRUCTURAL MUST ds-cfg-db-directory MAY ( ds-cfg-index-entry-limit $ ds-cfg-preload-time-limit $ ds-cfg-import-thread-count $ ds-cfg-import-queue-size $ ds-cfg-entries-compressed $ ds-cfg-db-directory-permissions $ ds-cfg-db-cache-percent $ ds-cfg-db-cache-size $ ds-cfg-db-txn-no-sync $ ds-cfg-db-txn-write-no-sync $ ds-cfg-db-run-cleaner $ ds-cfg-db-cleaner-min-utilization $ ds-cfg-db-evictor-lru-only $ ds-cfg-db-evictor-core-threads $ ds-cfg-db-evictor-max-threads $ ds-cfg-db-evictor-keep-alive $ ds-cfg-db-evictor-nodes-per-scan $ ds-cfg-db-log-file-max $ ds-cfg-db-logging-file-handler-on $ ds-cfg-db-logging-level $ ds-cfg-db-checkpointer-bytes-interval $ ds-cfg-db-checkpointer-wakeup-interval $ ds-cfg-db-num-lock-tables $ ds-cfg-db-num-cleaner-threads $ ds-cfg-compact-encoding $ ds-cfg-je-property $ ds-cfg-disk-full-threshold $ ds-cfg-disk-low-threshold $ ds-cfg-index-filter-analyzer-enabled $ ds-cfg-max-entries ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.6 NAME 'ds-cfg-local-db-backend' SUP ds-cfg-backend STRUCTURAL MUST ds-cfg-db-directory MAY ( ds-cfg-index-entry-limit $ ds-cfg-preload-time-limit $ ds-cfg-import-thread-count $ ds-cfg-import-queue-size $ ds-cfg-entries-compressed $ ds-cfg-db-directory-permissions $ ds-cfg-db-cache-percent $ ds-cfg-db-cache-size $ ds-cfg-db-txn-no-sync $ ds-cfg-db-txn-write-no-sync $ ds-cfg-db-run-cleaner $ ds-cfg-db-cleaner-min-utilization $ ds-cfg-db-evictor-lru-only $ ds-cfg-db-evictor-core-threads $ ds-cfg-db-evictor-max-threads $ ds-cfg-db-evictor-keep-alive $ ds-cfg-db-evictor-nodes-per-scan $ ds-cfg-db-log-file-max $ ds-cfg-db-log-filecache-size $ ds-cfg-db-logging-file-handler-on $ ds-cfg-db-logging-level $ ds-cfg-db-checkpointer-bytes-interval $ ds-cfg-db-checkpointer-wakeup-interval $ ds-cfg-db-num-lock-tables $ ds-cfg-db-num-cleaner-threads $ ds-cfg-compact-encoding $ ds-cfg-je-property $ ds-cfg-disk-full-threshold $ ds-cfg-disk-low-threshold $ ds-cfg-index-filter-analyzer-enabled $ ds-cfg-index-filter-analyzer-max-filters $ ds-cfg-subordinate-indexes-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.7 NAME 'ds-cfg-local-db-index' SUP top STRUCTURAL MUST ( ds-cfg-attribute $ ds-cfg-index-type ) MAY ( ds-cfg-index-entry-limit $ ds-cfg-substring-length $ ds-cfg-index-extensible-matching-rule ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.8 NAME 'ds-cfg-schema-backend' SUP ds-cfg-backend STRUCTURAL MAY ( ds-cfg-schema-entry-dn $ ds-cfg-show-all-attributes ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.9 NAME 'ds-cfg-task-backend' SUP ds-cfg-backend STRUCTURAL MAY ( ds-cfg-task-backing-file $ ds-cfg-task-retention-time $ ds-cfg-notification-sender-address ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1005,6 +1174,7 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.10 NAME 'ds-cfg-branch' SUP top STRUCTURA objectClasses: ( 1.3.6.1.4.1.26027.1.2.11 NAME 'ds-cfg-certificate-mapper' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.12 NAME 'ds-cfg-connection-handler' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) MAY ( ds-cfg-allowed-client $ ds-cfg-denied-client ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.13 NAME 'ds-cfg-ldap-connection-handler' SUP ds-cfg-connection-handler STRUCTURAL MUST ds-cfg-listen-port MAY ( ds-cfg-listen-address $ ds-cfg-allow-ldap-v2 $ ds-cfg-keep-stats $ ds-cfg-use-tcp-keep-alive $ ds-cfg-use-tcp-no-delay $ ds-cfg-allow-tcp-reuse-address $ ds-cfg-send-rejection-notice $ ds-cfg-max-request-size $ ds-cfg-num-request-handlers $ ds-cfg-allow-start-tls $ ds-cfg-use-ssl $ ds-cfg-ssl-client-auth-policy $ ds-cfg-ssl-cert-nickname $ ds-cfg-accept-backlog $ ds-cfg-key-manager-provider $ ds-cfg-trust-manager-provider $ ds-cfg-ssl-protocol $ ds-cfg-ssl-cipher-suite $ ds-cfg-max-blocked-write-time-limit $ ds-cfg-buffer-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.15 NAME 'ds-cfg-http-connection-handler' SUP ds-cfg-connection-handler STRUCTURAL MUST ds-cfg-listen-port MAY ( ds-cfg-listen-address $ ds-cfg-keep-stats $ ds-cfg-use-tcp-keep-alive $ ds-cfg-use-tcp-no-delay $ ds-cfg-allow-tcp-reuse-address $ ds-cfg-max-request-size $ ds-cfg-num-request-handlers $ ds-cfg-use-ssl $ ds-cfg-ssl-client-auth-policy $ ds-cfg-ssl-cert-nickname $ ds-cfg-accept-backlog $ ds-cfg-key-manager-provider $ ds-cfg-trust-manager-provider $ ds-cfg-ssl-protocol $ ds-cfg-ssl-cipher-suite $ ds-cfg-max-blocked-write-time-limit $ ds-cfg-buffer-size $ ds-cfg-config-file $ ds-cfg-authentication-required $ ds-cfg-max-concurrent-ops-per-connection ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.14 NAME 'ds-cfg-entry-cache' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled $ ds-cfg-cache-level ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.15 NAME 'ds-cfg-fifo-entry-cache' SUP ds-cfg-entry-cache STRUCTURAL MAY ( ds-cfg-max-entries $ ds-cfg-max-memory-percent $ ds-cfg-lock-timeout $ ds-cfg-exclude-filter $ ds-cfg-include-filter ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.16 NAME 'ds-cfg-soft-reference-entry-cache' SUP ds-cfg-entry-cache STRUCTURAL MAY ( ds-cfg-lock-timeout $ ds-cfg-exclude-filter $ ds-cfg-include-filter ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1013,10 +1183,12 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.18 NAME 'ds-cfg-key-manager-provider' SUP objectClasses: ( 1.3.6.1.4.1.26027.1.2.19 NAME 'ds-cfg-file-based-key-manager-provider' SUP ds-cfg-key-manager-provider STRUCTURAL MUST ds-cfg-key-store-file MAY ( ds-cfg-key-store-type $ ds-cfg-key-store-pin $ ds-cfg-key-store-pin-property $ ds-cfg-key-store-pin-environment-variable $ ds-cfg-key-store-pin-file ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.20 NAME 'ds-cfg-pkcs11-key-manager-provider' SUP ds-cfg-key-manager-provider STRUCTURAL MAY ( ds-cfg-key-store-pin $ ds-cfg-key-store-pin-property $ ds-cfg-key-store-pin-environment-variable $ ds-cfg-key-store-pin-file ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.21 NAME 'ds-cfg-log-publisher' SUP top STRUCTURAL MUST ( cn $ ds-cfg-enabled $ ds-cfg-java-class ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.22 NAME 'ds-cfg-access-log-publisher' SUP ds-cfg-log-publisher STRUCTURAL MAY ( ds-cfg-suppress-internal-operations $ ds-cfg-suppress-synchronization-operations ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.22 NAME 'ds-cfg-access-log-publisher' SUP ds-cfg-log-publisher STRUCTURAL MAY ( ds-cfg-filtering-policy $ ds-cfg-suppress-internal-operations $ ds-cfg-suppress-synchronization-operations ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.16 NAME 'ds-cfg-http-access-log-publisher' SUP ds-cfg-log-publisher STRUCTURAL X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.23 NAME 'ds-cfg-error-log-publisher' SUP ds-cfg-log-publisher STRUCTURAL MAY ( ds-cfg-default-severity $ ds-cfg-override-severity ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.24 NAME 'ds-cfg-debug-log-publisher' SUP ds-cfg-log-publisher STRUCTURAL MUST ds-cfg-default-debug-level MAY ( ds-cfg-default-debug-category $ ds-cfg-default-omit-method-entry-arguments $ ds-cfg-default-omit-method-return-value $ ds-cfg-default-include-throwable-cause $ ds-cfg-default-throwable-stack-frames ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.25 NAME 'ds-cfg-file-based-access-log-publisher' SUP ds-cfg-access-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.25 NAME 'ds-cfg-file-based-access-log-publisher' SUP ds-cfg-access-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size $ ds-cfg-log-format $ ds-cfg-log-record-time-format $ ds-cfg-log-control-oids ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.17 NAME 'ds-cfg-file-based-http-access-log-publisher' SUP ds-cfg-http-access-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size $ ds-cfg-log-format $ ds-cfg-log-record-time-format ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.26 NAME 'ds-cfg-file-based-debug-log-publisher' SUP ds-cfg-debug-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.27 NAME 'ds-cfg-file-based-error-log-publisher' SUP ds-cfg-error-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.28 NAME 'ds-cfg-matching-rule' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1030,7 +1202,7 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.35 NAME 'ds-cfg-password-validator' SUP t objectClasses: ( 1.3.6.1.4.1.26027.1.2.36 NAME 'ds-cfg-plugin' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled $ ds-cfg-plugin-type ) MAY ds-cfg-invoke-for-internal-operations X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.37 NAME 'ds-cfg-profiler-plugin' SUP ds-cfg-plugin STRUCTURAL MAY ( ds-cfg-enable-profiling-on-startup $ ds-cfg-profile-directory $ ds-cfg-profile-sample-interval $ ds-cfg-profile-action ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.198 NAME 'ds-recurring-task' SUP top AUXILIARY MUST ( ds-recurring-task-schedule $ ds-recurring-task-id ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.39 NAME 'ds-cfg-root-config' SUP top STRUCTURAL MUST ( cn $ ds-cfg-default-password-policy ) MAY ( ds-cfg-check-schema $ ds-cfg-add-missing-rdn-attributes $ ds-cfg-allow-attribute-name-exceptions $ ds-cfg-invalid-attribute-syntax-behavior $ ds-cfg-server-error-result-code $ ds-cfg-single-structural-objectclass-behavior $ ds-cfg-notify-abandoned-operations $ ds-cfg-size-limit $ ds-cfg-time-limit $ ds-cfg-proxied-authorization-identity-mapper $ ds-cfg-writability-mode $ ds-cfg-reject-unauthenticated-requests $ ds-cfg-bind-with-dn-requires-password $ ds-cfg-lookthrough-limit $ ds-cfg-smtp-server $ ds-cfg-allowed-task $ ds-cfg-disabled-privilege $ ds-cfg-return-bind-error-messages $ ds-cfg-idle-time-limit $ ds-cfg-workflow-configuration-mode $ ds-cfg-save-config-on-successful-startup $ ds-cfg-etime-resolution $ ds-cfg-entry-cache-preload $ ds-cfg-max-allowed-client-connections $ ds-cfg-max-psearches ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.39 NAME 'ds-cfg-root-config' SUP top STRUCTURAL MUST ( cn $ ds-cfg-default-password-policy ) MAY ( ds-cfg-check-schema $ ds-cfg-add-missing-rdn-attributes $ ds-cfg-allow-attribute-name-exceptions $ ds-cfg-invalid-attribute-syntax-behavior $ ds-cfg-server-error-result-code $ ds-cfg-single-structural-objectclass-behavior $ ds-cfg-notify-abandoned-operations $ ds-cfg-size-limit $ ds-cfg-time-limit $ ds-cfg-proxied-authorization-identity-mapper $ ds-cfg-writability-mode $ ds-cfg-reject-unauthenticated-requests $ ds-cfg-bind-with-dn-requires-password $ ds-cfg-lookthrough-limit $ ds-cfg-smtp-server $ ds-cfg-allowed-task $ ds-cfg-disabled-privilege $ ds-cfg-return-bind-error-messages $ ds-cfg-idle-time-limit $ ds-cfg-workflow-configuration-mode $ ds-cfg-save-config-on-successful-startup $ ds-cfg-etime-resolution $ ds-cfg-entry-cache-preload $ ds-cfg-max-allowed-client-connections $ ds-cfg-max-psearches $ ds-cfg-max-internal-buffer-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.40 NAME 'ds-cfg-root-dn-user' SUP top AUXILIARY MAY ds-cfg-alternate-bind-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.41 NAME 'ds-cfg-root-dse-backend' SUP top STRUCTURAL MUST cn MAY ( ds-cfg-subordinate-base-dn $ ds-cfg-show-all-attributes ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.42 NAME 'ds-cfg-sasl-mechanism-handler' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1048,14 +1220,15 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.53 NAME 'ds-root-dse' SUP top STRUCTURAL objectClasses: ( 1.3.6.1.4.1.26027.1.2.54 NAME 'ds-cfg-identity-mapper' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.55 NAME 'ds-cfg-exact-match-identity-mapper' SUP ds-cfg-identity-mapper STRUCTURAL MUST ds-cfg-match-attribute MAY ds-cfg-match-base-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.56 NAME 'ds-cfg-synchronization-provider' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.57 NAME 'ds-cfg-replication-domain' SUP top STRUCTURAL MUST ( ds-cfg-replication-server $ ds-cfg-server-id $ ds-cfg-base-dn ) MAY ( cn $ ds-cfg-receive-status $ ds-cfg-max-receive-queue $ ds-cfg-max-receive-delay $ ds-cfg-max-send-queue $ ds-cfg-max-send-delay $ ds-cfg-window-size $ ds-cfg-heartbeat-interval $ ds-cfg-isolation-policy $ ds-cfg-assured-type $ ds-cfg-assured-sd-level $ ds-cfg-assured-timeout $ ds-cfg-group-id $ ds-cfg-referrals-url $ ds-cfg-fractional-exclude $ ds-cfg-fractional-include $ ds-cfg-solve-conflicts $ ds-cfg-conflicts-historical-purge-delay $ ds-cfg-changetime-heartbeat-interval $ ds-cfg-log-changenumber $ ds-cfg-initialization-window-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.57 NAME 'ds-cfg-replication-domain' SUP top STRUCTURAL MUST ( ds-cfg-replication-server $ ds-cfg-server-id $ ds-cfg-base-dn ) MAY ( cn $ ds-cfg-receive-status $ ds-cfg-max-receive-queue $ ds-cfg-max-receive-delay $ ds-cfg-max-send-queue $ ds-cfg-max-send-delay $ ds-cfg-window-size $ ds-cfg-heartbeat-interval $ ds-cfg-isolation-policy $ ds-cfg-assured-type $ ds-cfg-assured-sd-level $ ds-cfg-assured-timeout $ ds-cfg-group-id $ ds-cfg-referrals-url $ ds-cfg-fractional-exclude $ ds-cfg-fractional-include $ ds-cfg-solve-conflicts $ ds-cfg-conflicts-historical-purge-delay $ ds-cfg-changetime-heartbeat-interval $ ds-cfg-log-changenumber $ ds-cfg-initialization-window-size $ ds-cfg-source-address ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.58 NAME 'ds-cfg-length-based-password-validator' SUP ds-cfg-password-validator STRUCTURAL MAY ( ds-cfg-max-password-length $ ds-cfg-min-password-length ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.59 NAME 'ds-cfg-password-generator' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.60 NAME 'ds-cfg-random-password-generator' SUP ds-cfg-password-generator STRUCTURAL MUST ( ds-cfg-password-character-set $ ds-cfg-password-format ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.61 NAME 'ds-cfg-password-policy' SUP top STRUCTURAL MUST ( cn $ ds-cfg-password-attribute $ ds-cfg-default-password-storage-scheme ) MAY ( ds-cfg-account-status-notification-handler $ ds-cfg-allow-expired-password-changes $ ds-cfg-allow-multiple-password-values $ ds-cfg-allow-pre-encoded-passwords $ ds-cfg-allow-user-password-changes $ ds-cfg-deprecated-password-storage-scheme $ ds-cfg-expire-passwords-without-warning $ ds-cfg-force-change-on-add $ ds-cfg-force-change-on-reset $ ds-cfg-grace-login-count $ ds-cfg-idle-lockout-interval $ ds-cfg-last-login-time-attribute $ ds-cfg-last-login-time-format $ ds-cfg-lockout-duration $ ds-cfg-lockout-failure-count $ ds-cfg-lockout-failure-expiration-interval $ ds-cfg-max-password-age $ ds-cfg-max-password-reset-age $ ds-cfg-min-password-age $ ds-cfg-password-change-requires-current-password $ ds-cfg-password-expiration-warning-interval $ ds-cfg-password-generator $ ds-cfg-password-validator $ ds-cfg-previous-last-login-time-format $ ds-cfg-require-change-by-time $ ds-cfg-require-secure-authentication $ ds-cfg-require-secure-password-changes $ ds-cfg-skip-validation-for-administrators $ ds-cfg-state-update-failure-policy $ ds-cfg-password-history-count $ ds-cfg-password-history-duration ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.3 NAME 'ds-cfg-authentication-policy' SUP top STRUCTURAL MUST ( cn ) MAY ( ds-cfg-java-class ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.61 NAME 'ds-cfg-password-policy' SUP ds-cfg-authentication-policy STRUCTURAL MUST ( ds-cfg-password-attribute $ ds-cfg-default-password-storage-scheme ) MAY ( ds-cfg-account-status-notification-handler $ ds-cfg-allow-expired-password-changes $ ds-cfg-allow-multiple-password-values $ ds-cfg-allow-pre-encoded-passwords $ ds-cfg-allow-user-password-changes $ ds-cfg-deprecated-password-storage-scheme $ ds-cfg-expire-passwords-without-warning $ ds-cfg-force-change-on-add $ ds-cfg-force-change-on-reset $ ds-cfg-grace-login-count $ ds-cfg-idle-lockout-interval $ ds-cfg-last-login-time-attribute $ ds-cfg-last-login-time-format $ ds-cfg-lockout-duration $ ds-cfg-lockout-failure-count $ ds-cfg-lockout-failure-expiration-interval $ ds-cfg-max-password-age $ ds-cfg-max-password-reset-age $ ds-cfg-min-password-age $ ds-cfg-password-change-requires-current-password $ ds-cfg-password-expiration-warning-interval $ ds-cfg-password-generator $ ds-cfg-password-validator $ ds-cfg-previous-last-login-time-format $ ds-cfg-require-change-by-time $ ds-cfg-require-secure-authentication $ ds-cfg-require-secure-password-changes $ ds-cfg-skip-validation-for-administrators $ ds-cfg-state-update-failure-policy $ ds-cfg-password-history-count $ ds-cfg-password-history-duration ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.62 NAME 'ds-cfg-jmx-connection-handler' SUP ds-cfg-connection-handler STRUCTURAL MUST ds-cfg-listen-port MAY ( ds-cfg-listen-address $ ds-cfg-ssl-cert-nickname $ ds-cfg-use-ssl $ ds-cfg-key-manager-provider ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.63 NAME 'ds-task-import' SUP ds-task STRUCTURAL MAY ( ds-task-import-append $ ds-task-import-replace-existing $ ds-task-import-include-branch $ ds-task-import-exclude-branch $ ds-task-import-include-attribute $ ds-task-import-exclude-attribute $ ds-task-import-include-filter $ ds-task-import-exclude-filter $ ds-task-import-ldif-file $ ds-task-import-template-file $ ds-task-import-random-seed $ ds-task-import-reject-file $ ds-task-import-overwrite-rejects $ ds-task-import-skip-file $ ds-task-import-skip-schema-validation $ ds-task-import-skip-dn-validation $ ds-task-import-tmp-directory $ ds-task-import-is-compressed $ ds-task-import-is-encrypted $ ds-task-import-backend-id $ ds-task-import-thread-count $ ds-task-import-clear-backend ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.64 NAME 'ds-cfg-replication-server' SUP top STRUCTURAL MUST ( ds-cfg-replication-server-id $ ds-cfg-replication-port ) MAY ( ds-cfg-replication-server $ cn $ ds-cfg-window-size $ ds-cfg-queue-size $ ds-cfg-replication-db-directory $ ds-cfg-replication-purge-delay $ ds-cfg-group-id $ ds-cfg-assured-timeout $ ds-cfg-degraded-status-threshold $ ds-cfg-weight $ ds-cfg-monitoring-period) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.64 NAME 'ds-cfg-replication-server' SUP top STRUCTURAL MUST ( ds-cfg-replication-server-id $ ds-cfg-replication-port ) MAY ( ds-cfg-replication-server $ cn $ ds-cfg-window-size $ ds-cfg-queue-size $ ds-cfg-replication-db-directory $ ds-cfg-replication-purge-delay $ ds-cfg-group-id $ ds-cfg-assured-timeout $ ds-cfg-degraded-status-threshold $ ds-cfg-weight $ ds-cfg-monitoring-period $ ds-cfg-source-address ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.65 NAME 'ds-backup-directory' SUP top STRUCTURAL MUST ( ds-backup-directory-path $ ds-backup-backend-dn ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.66 NAME 'ds-backup-info' SUP top STRUCTURAL MUST ( ds-backup-id $ ds-backup-directory-path ) MAY ( ds-backup-compressed $ ds-backup-date $ ds-backup-dependency $ ds-backup-encrypted $ ds-backup-incremental $ ds-backup-signed-hash $ ds-backup-unsigned-hash ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.67 NAME 'ds-cfg-backup-backend' SUP ds-cfg-backend STRUCTURAL MAY ds-cfg-backup-directory X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1081,14 +1254,14 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.86 NAME 'ds-cfg-dsee-compat-access-contro objectClasses: ( 1.3.6.1.4.1.26027.1.2.87 NAME 'ds-cfg-similarity-based-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ds-cfg-min-password-difference X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.88 NAME 'ds-cfg-unique-characters-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ( ds-cfg-min-unique-characters $ ds-cfg-case-sensitive-validation ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.89 NAME 'ds-cfg-repeated-characters-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ( ds-cfg-max-consecutive-length $ ds-cfg-case-sensitive-validation ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.90 NAME 'ds-cfg-virtual-attribute' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled $ ds-cfg-attribute-type ) MAY ( ds-cfg-base-dn $ ds-cfg-group-dn $ ds-cfg-filter $ ds-cfg-conflict-behavior ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.90 NAME 'ds-cfg-virtual-attribute' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled $ ds-cfg-attribute-type ) MAY ( ds-cfg-base-dn $ ds-cfg-scope $ ds-cfg-group-dn $ ds-cfg-filter $ ds-cfg-conflict-behavior ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.91 NAME 'ds-task-initialize-from-remote-replica' SUP ds-task STRUCTURAL MUST ( ds-task-initialize-domain-dn $ ds-task-initialize-replica-server-id ) MAY ( ds-task-processed-entry-count $ ds-task-unprocessed-entry-count ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.92 NAME 'ds-task-initialize-remote-replica' SUP ds-task STRUCTURAL MUST ( ds-task-initialize-domain-dn $ ds-task-initialize-replica-server-id ) MAY ( ds-task-processed-entry-count $ ds-task-unprocessed-entry-count ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.93 NAME 'ds-cfg-replication-synchronization-provider' SUP ds-cfg-synchronization-provider STRUCTURAL MAY ( ds-cfg-num-update-replay-threads ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.94 NAME 'ds-cfg-dictionary-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ( ds-cfg-dictionary-file $ ds-cfg-case-sensitive-validation $ ds-cfg-test-reversed-password ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.95 NAME 'ds-cfg-attribute-value-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ds-cfg-test-reversed-password MAY ds-cfg-match-attribute X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.96 NAME 'ds-cfg-character-set-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ( ds-cfg-character-set $ ds-cfg-allow-unclassified-characters ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.97 NAME 'ds-task-rebuild' SUP ds-task STRUCTURAL MUST ( ds-task-rebuild-base-dn $ ds-task-rebuild-index ) MAY ds-task-rebuild-tmp-directory X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.93 NAME 'ds-cfg-replication-synchronization-provider' SUP ds-cfg-synchronization-provider STRUCTURAL MAY ( ds-cfg-num-update-replay-threads $ ds-cfg-connection-timeout ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.94 NAME 'ds-cfg-dictionary-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ( ds-cfg-dictionary-file $ ds-cfg-case-sensitive-validation $ ds-cfg-test-reversed-password ) MAY ( ds-cfg-check-substrings $ ds-cfg-min-substring-length ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.95 NAME 'ds-cfg-attribute-value-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ds-cfg-test-reversed-password MAY ( ds-cfg-match-attribute $ ds-cfg-check-substrings $ ds-cfg-min-substring-length ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.96 NAME 'ds-cfg-character-set-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ds-cfg-allow-unclassified-characters MAY ( ds-cfg-min-character-sets $ ds-cfg-character-set $ ds-cfg-character-set-ranges ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.97 NAME 'ds-task-rebuild' SUP ds-task STRUCTURAL MUST ( ds-task-rebuild-base-dn $ ds-task-rebuild-index ) MAY ( ds-task-rebuild-tmp-directory $ ds-task-rebuild-index-clear-degraded-state ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.98 NAME 'ds-virtual-static-group' SUP top AUXILIARY MUST ds-target-group-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.99 NAME 'ds-cfg-user-defined-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL MUST ds-cfg-value X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.100 NAME 'ds-cfg-debug-target' SUP top STRUCTURAL MUST ( ds-cfg-debug-scope $ ds-cfg-debug-level ) MAY ( ds-cfg-debug-category $ ds-cfg-omit-method-entry-arguments $ ds-cfg-omit-method-return-value $ ds-cfg-include-throwable-cause $ ds-cfg-throwable-stack-frames ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1110,7 +1283,7 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.115 NAME 'ds-cfg-smtp-alert-handler' SUP objectClasses: ( 1.3.6.1.4.1.26027.1.2.116 NAME 'ds-task-disconnect' SUP ds-task STRUCTURAL MUST ds-task-disconnect-connection-id MAY ( ds-task-disconnect-message $ ds-task-disconnect-notify-client ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.117 NAME 'ds-cfg-unique-attribute-plugin' SUP ds-cfg-plugin STRUCTURAL MUST ds-cfg-type MAY ds-cfg-base-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.118 NAME 'ds-cfg-regular-expression-identity-mapper' SUP ds-cfg-identity-mapper STRUCTURAL MUST ( ds-cfg-match-attribute $ ds-cfg-match-pattern ) MAY ( ds-cfg-match-base-dn $ ds-cfg-replace-pattern ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.119 NAME 'ds-cfg-referential-integrity-plugin' SUP ds-cfg-plugin STRUCTURAL MUST ds-cfg-attribute-type MAY ( ds-cfg-base-dn $ ds-cfg-update-interval $ ds-cfg-log-file ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.119 NAME 'ds-cfg-referential-integrity-plugin' SUP ds-cfg-plugin STRUCTURAL MUST ds-cfg-attribute-type MAY ( ds-cfg-base-dn $ ds-cfg-update-interval $ ds-cfg-log-file $ ds-cfg-check-references $ ds-cfg-check-references-filter-criteria $ ds-cfg-check-references-scope-criteria ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.120 NAME 'ds-cfg-smtp-account-status-notification-handler' SUP ds-cfg-account-status-notification-handler STRUCTURAL MUST ( ds-cfg-sender-address $ ds-cfg-send-message-without-end-user-address $ ds-cfg-message-template-file ) MAY ( ds-cfg-email-address-attribute-type $ ds-cfg-recipient-address $ ds-cfg-message-subject ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.121 NAME 'ds-task-reset-generation-id' SUP ds-task STRUCTURAL MUST ds-task-reset-generation-id-domain-base-dn MAY ds-task-reset-generation-id-new-value X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.122 NAME 'ds-cfg-entry-uuid-plugin' SUP ds-cfg-plugin STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1173,15 +1346,13 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.178 NAME 'ds-cfg-workflow-element' SUP to objectClasses: ( 1.3.6.1.4.1.26027.1.2.179 NAME 'ds-cfg-local-backend-workflow-element' SUP ds-cfg-workflow-element STRUCTURAL MUST ( ds-cfg-backend ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.181 NAME 'ds-cfg-snmp-connection-handler' SUP ds-cfg-connection-handler STRUCTURAL MUST ( ds-cfg-listen-port $ ds-cfg-trap-port ) MAY ( ds-cfg-listen-address $ ds-cfg-traps-destination $ ds-cfg-registered-mbean $ ds-cfg-community $ ds-cfg-allowed-manager $ ds-cfg-allowed-user $ ds-cfg-security-level $ ds-cfg-traps-community $ ds-cfg-security-agent-file $ ds-cfg-opendmk-jarfile ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.182 NAME 'ds-cfg-extension' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.183 NAME 'ds-cfg-administration-connector' SUP top STRUCTURAL MUST ( cn $ ds-cfg-listen-port $ ds-cfg-key-manager-provider $ ds-cfg-trust-manager-provider $ ds-cfg-ssl-cert-nickname ) MAY ( ds-cfg-listen-address ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.183 NAME 'ds-cfg-administration-connector' SUP top STRUCTURAL MUST ( cn $ ds-cfg-listen-port $ ds-cfg-key-manager-provider $ ds-cfg-trust-manager-provider $ ds-cfg-ssl-cert-nickname ) MAY ( ds-cfg-listen-address $ ds-cfg-ssl-cipher-suite $ ds-cfg-ssl-protocol ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.199 NAME 'ds-cfg-qos-policy' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.185 NAME 'ds-cfg-resource-limits-qos-policy' SUP ds-cfg-qos-policy STRUCTURAL MAY ( ds-cfg-max-connections $ ds-cfg-max-connections-from-same-ip $ ds-cfg-max-ops-per-connection $ ds-cfg-max-concurrent-ops-per-connection $ ds-cfg-size-limit $ ds-cfg-time-limit $ ds-cfg-min-substring-length $ ds-cfg-max-ops-per-interval $ ds-cfg-max-ops-interval) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.186 NAME 'ds-cfg-network-group-plugin' SUP ds-cfg-plugin STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.187 NAME 'ds-cfg-change-number-control-plugin' SUP ds-cfg-plugin STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.188 NAME 'ds-cfg-request-filtering-qos-policy' SUP ds-cfg-qos-policy STRUCTURAL MAY ( ds-cfg-allowed-operations $ ds-cfg-allowed-attributes $ ds-cfg-prohibited-attributes $ ds-cfg-allowed-search-scopes $ ds-cfg-allowed-subtrees $ ds-cfg-prohibited-subtrees ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.195 NAME 'ds-cfg-collation-matching-rule' SUP ds-cfg-matching-rule STRUCTURAL MUST ( ds-cfg-matching-rule-type $ ds-cfg-collation ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.196 NAME 'ds-cfg-ndb-backend' SUP ds-cfg-backend STRUCTURAL MUST ( ds-cfg-ndb-connect-string $ ds-cfg-sql-connect-string $ ds-cfg-ndb-dbname ) MAY ( ds-cfg-sql-user $ ds-cfg-sql-passwd $ ds-cfg-ndb-attr-len $ ds-cfg-ndb-attr-blob $ ds-cfg-ndb-thread-count $ ds-cfg-ndb-num-connections $ ds-cfg-deadlock-retry-limit $ ds-cfg-import-thread-count $ ds-cfg-import-queue-size $ ds-cfg-index-entry-limit ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.197 NAME 'ds-cfg-ndb-index' SUP top STRUCTURAL MUST ( ds-cfg-attribute ) MAY ( ds-cfg-index-type $ ds-cfg-index-entry-limit $ ds-cfg-substring-length ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.950 NAME 'ds-mon-branch' SUP top STRUCTURAL MUST cn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.200 NAME 'ds-cfg-null-backend' SUP ds-cfg-backend STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.201 NAME 'ds-cfg-structural-object-class-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1189,12 +1360,25 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.202 NAME 'ds-cfg-governing-structure-rule objectClasses: ( 1.3.6.1.4.1.26027.1.2.231 NAME 'ds-cfg-extensible-matching-rule' SUP ds-cfg-matching-rule STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.232 NAME 'ds-cfg-fractional-ldif-import-plugin' SUP ds-cfg-plugin STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.233 NAME 'ds-cfg-parallel-work-queue' SUP ds-cfg-work-queue STRUCTURAL MAY ( ds-cfg-num-worker-threads ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.234 NAME 'ds-cfg-external-changelog-domain' SUP top STRUCTURAL MUST ( cn $ ds-cfg-enabled ) MAY ( ds-cfg-ecl-include ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.234 NAME 'ds-cfg-external-changelog-domain' SUP top STRUCTURAL MUST ( cn $ ds-cfg-enabled ) MAY ( ds-cfg-ecl-include $ ds-cfg-ecl-include-for-deletes ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.235 NAME 'ds-cfg-collective-attribute-subentries-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.236 NAME 'ds-cfg-password-policy-subentry-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.237 NAME 'ds-task-purge-conflicts-historical' SUP ds-task STRUCTURAL MUST ( ds-task-purge-conflicts-historical-domain-dn ) MAY ( ds-task-purge-conflicts-historical-maximum-duration $ ds-task-purge-conflicts-historical-first-purged-changenumber $ ds-task-purge-conflicts-historical-last-purged-changenumber $ ds-task-purge-conflicts-historical-purge-completed-in-time $ ds-task-purge-conflicts-historical-purged-values-count ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 2.16.840.1.113730.3.2.1 NAME 'changeLogEntry' SUP top STRUCTURAL MUST ( changeNumber $ targetDN $ changeType $ changeTime ) MAY ( changes $ newRDN $ deleteOldRDN $ newSuperior $ replicaIdentifier $ replicationCSN $ targetEntryUUID $ changeLogCookie ) X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) -objectClasses: ( 1.2.840.113556.1.3.23 NAME 'container' SUP top STRUCTURAL MUST cn X-ORIGIN 'Microsoft Active Directory' X-SCHEMA-FILE '03-changelog.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.2 NAME 'ds-cfg-samba-password-plugin' SUP ds-cfg-plugin STRUCTURAL MUST ( ds-cfg-pwd-sync-policy ) MAY ( ds-cfg-samba-administrator-dn ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.4 NAME 'ds-cfg-ldap-pass-through-authentication-policy' SUP ds-cfg-authentication-policy STRUCTURAL MUST ( ds-cfg-java-class $ ds-cfg-primary-remote-ldap-server $ ds-cfg-mapping-policy $ ds-cfg-use-password-caching ) MAY ( ds-cfg-secondary-remote-ldap-server $ ds-cfg-mapped-attribute $ ds-cfg-mapped-search-bind-dn $ ds-cfg-mapped-search-bind-password $ ds-cfg-mapped-search-bind-password-property $ ds-cfg-mapped-search-bind-password-environment-variable $ ds-cfg-mapped-search-bind-password-file $ ds-cfg-mapped-search-base-dn $ ds-cfg-connection-timeout $ ds-cfg-trust-manager-provider $ ds-cfg-use-ssl $ ds-cfg-use-tcp-keep-alive $ ds-cfg-use-tcp-no-delay $ ds-cfg-ssl-protocol $ ds-cfg-ssl-cipher-suite $ ds-cfg-cached-password-storage-scheme $ ds-cfg-cached-password-ttl $ ds-cfg-source-address ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.5 NAME 'ds-cfg-attribute-cleanup-plugin' SUP ds-cfg-plugin STRUCTURAL MAY ( ds-cfg-remove-inbound-attributes $ ds-cfg-rename-inbound-attributes ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.6 NAME 'ds-cfg-file-based-audit-log-publisher' SUP ds-cfg-access-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.7 NAME 'ds-cfg-access-log-filtering-criteria' SUP top STRUCTURAL MUST ( cn ) MAY ( ds-cfg-log-record-type $ ds-cfg-connection-client-address-equal-to $ ds-cfg-connection-client-address-not-equal-to $ ds-cfg-connection-protocol-equal-to $ ds-cfg-connection-port-equal-to $ ds-cfg-user-dn-equal-to $ ds-cfg-user-dn-not-equal-to $ ds-cfg-user-is-member-of $ ds-cfg-user-is-not-member-of $ ds-cfg-request-target-dn-equal-to $ ds-cfg-request-target-dn-not-equal-to $ ds-cfg-response-result-code-equal-to $ ds-cfg-response-result-code-not-equal-to $ ds-cfg-response-etime-greater-than $ ds-cfg-response-etime-less-than $ ds-cfg-search-response-nentries-greater-than $ ds-cfg-search-response-nentries-less-than $ ds-cfg-search-response-is-indexed ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.8 NAME 'ds-cfg-entity-tag-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL MAY ( ds-cfg-checksum-algorithm $ ds-cfg-excluded-attribute ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.9 NAME 'ds-cfg-password-expiration-time-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.10 NAME 'ds-cfg-certificate-attribute-syntax' SUP ds-cfg-attribute-syntax STRUCTURAL MAY ds-cfg-strict-format X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.11 NAME 'ds-cfg-jpeg-attribute-syntax' SUP ds-cfg-attribute-syntax STRUCTURAL MAY ds-cfg-strict-format X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.12 NAME 'ds-cfg-country-string-attribute-syntax' SUP ds-cfg-attribute-syntax STRUCTURAL MAY ds-cfg-strict-format X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.13 NAME 'ds-connectionhandler-statistics-monitor-entry' SUP ds-monitor-entry STRUCTURAL MAY ( connectionsEstablished $ connectionsClosed $ bytesRead $ bytesWritten $ ldapMessagesRead $ ldapMessagesWritten $ operationsAbandoned $ operationsInitiated $ operationsCompleted $ abandonRequests $ addRequests $ addResponses $ bindRequests $ bindResponses $ compareRequests $ compareResponses $ deleteRequests $ deleteResponses $ extendedRequests $ extendedResponses $ modifyRequests $ modifyResponses $ modifyDNRequests $ modifyDNResponses $ searchRequests $ searchOneRequests $ searchSubRequests $ searchResultEntries $ searchResultReferences $ searchResultsDone $ unbindRequests $ ds-mon-add-operations-total-count $ ds-mon-resident-time-add-operations-total-time $ ds-mon-search-operations-total-count $ ds-mon-resident-time-search-operations-total-time $ ds-mon-bind-operations-total-count $ ds-mon-resident-time-bind-operations-total-time $ ds-mon-unbind-operations-total-count $ ds-mon-resident-time-unbind-operations-total-time $ ds-mon-compare-operations-total-count $ ds-mon-resident-time-compare-operations-total-time $ ds-mon-delete-operations-total-count $ ds-mon-resident-time-delete-operations-total-time $ ds-mon-mod-operations-total-count $ ds-mon-resident-time-mod-operations-total-time $ ds-mon-moddn-operations-total-count $ ds-mon-resident-time-moddn-operations-total-time $ ds-mon-abandon-operations-total-count $ ds-mon-resident-time-abandon-operations-total-time $ ds-mon-extended-operations-total-count $ ds-mon-resident-time-extended-operations-total-time $ ds-mon-http-requests-total-count $ ds-mon-resident-time-http-requests-total-time $ ds-mon-http-delete-requests-total-count $ ds-mon-resident-time-http-delete-requests-total-time $ ds-mon-http-get-requests-total-count $ ds-mon-resident-time-http-get-requests-total-time $ ds-mon-http-patch-requests-total-count $ ds-mon-resident-time-http-patch-requests-total-time $ ds-mon-http-post-requests-total-count $ ds-mon-resident-time-http-post-requests-total-time $ ds-mon-http-put-requests-total-count $ ds-mon-resident-time-http-put-requests-total-time ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.14 NAME 'ds-cfg-pbkdf2-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL MAY ds-cfg-pbkdf2-iterations X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 2.16.840.1.113730.3.2.1 NAME 'changeLogEntry' SUP top STRUCTURAL MUST ( changeNumber $ targetDN $ changeType $ changeTime ) MAY ( changes $ newRDN $ deleteOldRDN $ newSuperior ) X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) +objectClasses: ( 1.2.840.113556.1.3.23 NAME 'container' SUP top STRUCTURAL MUST cn X-ORIGIN 'Microsoft Active Directory' X-SCHEMA-FILE '03-changelog.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.18 NAME 'pwdValidatorPolicy' SUP top AUXILIARY MUST (ds-cfg-password-validator) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '03-pwpolicyextension.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.1 NAME 'javaContainer' DESC 'Container for a Java object' SUP top STRUCTURAL MUST ( cn ) X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.4 NAME 'javaObject' DESC 'Java object representation' SUP top ABSTRACT MUST ( javaClassName ) MAY ( javaClassNames $ javaCodebase $ javaDoc $ description ) X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.5 NAME 'javaSerializedObject' DESC 'Java serialized object' SUP javaObject AUXILIARY MUST ( javaSerializedData ) X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' ) @@ -1240,20 +1424,31 @@ objectClasses: ( 1.3.6.1.1.1.2.15 NAME 'nisDomainObject' SUP top AUXILIARY DESC objectClasses: ( 1.3.6.1.1.1.2.16 NAME 'automountMap' SUP top STRUCTURAL MUST ( automountMapName ) MAY description X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' ) objectClasses: ( 1.3.6.1.1.1.2.17 NAME 'automount' SUP top STRUCTURAL DESC 'Automount information' MUST ( automountKey $ automountInformation ) MAY description X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' ) objectClasses: ( 1.3.6.1.4.1.11.1.3.1.2.5 NAME 'DUAConfigProfile' SUP top STRUCTURAL DESC 'Abstraction of a base configuration for a DUA' MUST ( cn ) MAY ( defaultServerList $ preferredServerList $ defaultSearchBase $ defaultSearchScope $ searchTimeLimit $ bindTimeLimit $ credentialLevel $ authenticationMethod $ followReferrals $ dereferenceAliases $ serviceSearchDescriptor $ serviceCredentialLevel $ serviceAuthenticationMethod $ objectclassMap $ attributeMap $ profileTTL ) X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) -objectclasses: ( 1.3.6.1.4.1.42.2.27.1.2.5 NAME 'nisMailAlias' SUP top MUST cn MAY rfc822mailMember X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -objectclasses: ( 1.3.6.1.4.1.42.2.27.1.2.6 NAME 'nisNetId' SUP top MUST cn MAY ( nisNetIdUser $ nisNetIdGroup $ nisNetIdHost ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.6 NAME 'sambaSamAccount' DESC 'Samba 3.0 Auxilary SAM Account' SUP top AUXILIARY MUST ( uid $ sambaSID ) MAY ( cn $ sambaLMPassword $ sambaNTPassword $ sambaPwdLastSet $ sambaLogonTime $ sambaLogoffTime $ sambaKickoffTime $ sambaPwdCanChange $ sambaPwdMustChange $ sambaAcctFlags $ displayName $ sambaHomePath $ sambaHomeDrive $ sambaLogonScript $ sambaProfilePath $ description $ sambaUserWorkstations $ sambaPrimaryGroupSID $ sambaDomainName $ sambaMungedDial $ sambaBadPasswordCount $ sambaBadPasswordTime $ sambaPasswordHistory $ sambaLogonHours) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.4 NAME 'sambaGroupMapping' DESC 'Samba Group Mapping' SUP top AUXILIARY MUST ( gidNumber $ sambaSID $ sambaGroupType ) MAY ( displayName $ description $ sambaSIDList) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.14 NAME 'sambaTrustPassword' DESC 'Samba Trust Password' SUP top STRUCTURAL MUST ( sambaDomainName $ sambaNTPassword $ sambaTrustFlags ) MAY ( sambaSID $ sambaPwdLastSet ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.5 NAME 'sambaDomain' DESC 'Samba Domain Information' SUP top STRUCTURAL MUST ( sambaDomainName $ sambaSID ) MAY ( sambaNextRid $ sambaNextGroupRid $ sambaNextUserRid $ sambaAlgorithmicRidBase $ sambaMinPwdLength $ sambaPwdHistoryLength $ sambaLogonToChgPwd $ sambaMaxPwdAge $ sambaMinPwdAge $ sambaLockoutDuration $ sambaLockoutObservationWindow $ sambaLockoutThreshold $ sambaForceLogoff $ sambaRefuseMachinePwdChange ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.1.2.2.7 NAME 'sambaUnixIdPool' DESC 'Pool for allocating UNIX uids/gids' SUP top AUXILIARY MUST ( uidNumber $ gidNumber ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.1.2.2.8 NAME 'sambaIdmapEntry' DESC 'Mapping from a SID to an ID' SUP top AUXILIARY MUST ( sambaSID ) MAY ( uidNumber $ gidNumber ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.1.2.2.9 NAME 'sambaSidEntry' DESC 'Structural Class for a SID' SUP top STRUCTURAL MUST ( sambaSID ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.1.2.2.10 NAME 'sambaConfig' DESC 'Samba Configuration Section' SUP top AUXILIARY MAY ( description ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.11 NAME 'sambaShare' DESC 'Samba Share Section' SUP top STRUCTURAL MUST ( sambaShareName ) MAY ( description ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.12 NAME 'sambaConfigOption' DESC 'Samba Configuration Option' SUP top STRUCTURAL MUST ( sambaOptionName ) MAY ( sambaBoolOption $ sambaIntegerOption $ sambaStringOption $ sambaStringListoption $ description ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.13 NAME 'sambaPrivilege' DESC 'Samba Privilege' SUP top AUXILIARY MUST ( sambaSID ) MAY ( sambaPrivilegeList ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.42.2.27.1.2.5 NAME 'nisMailAlias' SUP top MUST cn MAY rfc822mailMember X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +objectClasses: ( 1.3.6.1.4.1.42.2.27.1.2.6 NAME 'nisNetId' SUP top MUST cn MAY ( nisNetIdUser $ nisNetIdGroup $ nisNetIdHost ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.1 NAME 'SolarisProject' SUP top STRUCTURAL MUST ( SolarisProjectID $ SolarisProjectName ) MAY ( memberUid $ memberGid $ description $ SolarisProjectAttr ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -objectclasses: ( 1.3.6.1.4.1.42.2.27.5.2.2 NAME 'SolarisAuditUser' SUP top AUXILIARY MAY ( SolarisAuditAlways $ SolarisAuditNever ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.2 NAME 'SolarisAuditUser' SUP top AUXILIARY MAY ( SolarisAuditAlways $ SolarisAuditNever ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.3 NAME 'SolarisUserAttr' SUP top AUXILIARY DESC 'User attributes' MAY ( SolarisUserQualifier $ SolarisAttrReserved1 $ SolarisAttrReserved2 $ SolarisAttrKeyValue ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.4 NAME 'SolarisAuthAttr' SUP top STRUCTURAL DESC 'Authorizations data' MUST cn MAY ( SolarisAttrReserved1 $ SolarisAttrReserved2 $ SolarisAttrShortDesc $ SolarisAttrLongDesc $ SolarisAttrKeyValue ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.5 NAME 'SolarisProfAttr' SUP top STRUCTURAL DESC 'Profiles data' MUST cn MAY ( SolarisAttrReserved1 $ SolarisAttrReserved2 $ SolarisAttrLongDesc $ SolarisAttrKeyValue ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.6 NAME 'SolarisExecAttr' SUP top AUXILIARY DESC 'Profiles execution attributes' MAY ( SolarisKernelSecurityPolicy $ SolarisProfileType $ SolarisAttrReserved1 $ SolarisAttrReserved2 $ SolarisProfileId $ SolarisAttrKeyValue ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.7 NAME 'SolarisNamingProfile' SUP top STRUCTURAL DESC 'Solaris LDAP Naming client profile objectClass' MUST ( cn $ SolarisLDAPServers $ SolarisSearchBaseDN ) MAY ( SolarisBindDN $ SolarisBindPassword $ SolarisAuthMethod $ SolarisTransportSecurity $ SolarisCertificatePath $ SolarisCertificatePassword $ SolarisDataSearchDN $ SolarisSearchScope $ SolarisSearchTimeLimit $ SolarisPreferredServer $ SolarisPreferredServerOnly $ SolarisCacheTTL $ SolarisSearchReferral $ SolarisBindTimeLimit ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -objectclasses: ( 2.16.840.1.113730.3.2.4 NAME 'mailGroup' SUP top STRUCTURAL MUST mail MAY ( cn $ mgrpRFC822MailMember ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -objectclasses: ( 1.3.6.1.4.1.42.2.27.5.2.14 NAME 'sunPrinter' DESC 'Sun printer information' SUP top AUXILIARY MUST printer-name MAY (sun-printer-bsdaddr $ sun-printer-kvp) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -objectclasses: ( 1.3.6.1.4.1.42.2.27.5.2.12 NAME 'nisplusTimeZoneData' DESC 'NIS+ timezone table data' SUP top STRUCTURAL MUST cn MAY ( nisplusTimeZone $ description ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -objectclasses: ( 1.3.6.1.4.1.42.2.27.5.2.8 NAME 'ipTnetTemplate' DESC 'Object class for TSOL network templates' SUP top STRUCTURAL MUST ipTnetTemplateName MAY SolarisAttrKeyValue X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) -objectclasses: ( 1.3.6.1.4.1.42.2.27.5.2.9 NAME 'ipTnetHost' DESC 'Associates an IP address or wildcard with a TSOL template_name' SUP top AUXILIARY MUST ipTnetNumber X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +objectClasses: ( 2.16.840.1.113730.3.2.4 NAME 'mailGroup' SUP top STRUCTURAL MUST mail MAY ( cn $ mgrpRFC822MailMember ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.14 NAME 'sunPrinter' DESC 'Sun printer information' SUP top AUXILIARY MUST printer-name MAY (sun-printer-bsdaddr $ sun-printer-kvp) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.12 NAME 'nisplusTimeZoneData' DESC 'NIS+ timezone table data' SUP top STRUCTURAL MUST cn MAY ( nisplusTimeZone $ description ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.8 NAME 'ipTnetTemplate' DESC 'Object class for TSOL network templates' SUP top STRUCTURAL MUST ipTnetTemplateName MAY SolarisAttrKeyValue X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) +objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.9 NAME 'ipTnetHost' DESC 'Associates an IP address or wildcard with a TSOL template_name' SUP top AUXILIARY MUST ipTnetNumber X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) objectClasses: ( 2.16.840.1.113730.3.2.30 NAME 'glue' SUP top X-ORIGIN 'Sun Directory Server' X-SCHEMA-FILE '06-compat.ldif' ) nameForms: ( 1.3.6.1.1.10.15.1 NAME 'uddiBusinessEntityNameForm' OC uddiBusinessEntity MUST ( uddiBusinessKey ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' ) nameForms: ( 1.3.6.1.1.10.15.2 NAME 'uddiContactNameForm' OC uddiContact MUST ( uddiUUID ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' ) diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/schema.ldif.current b/infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/schema.ldif.current index 7172f08b230..d139ff2f8a5 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/schema.ldif.current +++ b/infra/test-util/src/main/resources/test-data/opendj.template/config/upgrade/schema.ldif.current @@ -10,7 +10,7 @@ attributeTypes: ( 2.5.4.2 NAME 'knowledgeInformation' EQUALITY caseIgnoreMatch S attributeTypes: ( 2.5.4.3 NAME ( 'cn' 'commonName' ) SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.4 NAME ( 'sn' 'surname' ) SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.5 NAME 'serialNumber' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.44{64} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) -attributeTypes: ( 2.5.4.6 NAME ( 'c' 'countryName' ) SUP name SINGLE-VALUE X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) +attributeTypes: ( 2.5.4.6 NAME ( 'c' 'countryName' ) SUP name SYNTAX 1.3.6.1.4.1.1466.115.121.1.11 SINGLE-VALUE X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.7 NAME ( 'l' 'localityName' ) SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.8 NAME ( 'st' 'stateOrProvinceName' ) SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.9 NAME ( 'street' 'streetAddress' ) EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) @@ -54,9 +54,9 @@ attributeTypes: ( 2.5.4.47 NAME 'enhancedSearchGuide' SYNTAX 1.3.6.1.4.1.1466.11 attributeTypes: ( 1.3.6.1.1.16.4 NAME 'entryUUID' DESC 'UUID of the entry' EQUALITY uuidMatch ORDERING uuidOrderingMatch SYNTAX 1.3.6.1.1.16.1 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'RFC 4530' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.48 NAME 'protocolInformation' EQUALITY protocolInformationMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.42 X-ORIGIN 'RFC 2256' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.50 NAME 'uniqueMember' EQUALITY uniqueMemberMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.34 X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.585 NAME 'lastExternalChangelogCookie' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '00-core.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.593 NAME 'firstChangeNumber' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '00-core.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.594 NAME 'lastChangeNumber' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '00-core.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.585 NAME 'lastExternalChangelogCookie' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '00-core.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.593 NAME 'firstChangeNumber' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '00-core.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.594 NAME 'lastChangeNumber' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.51 NAME 'houseIdentifier' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.52 NAME 'supportedAlgorithms' SYNTAX 1.3.6.1.4.1.1466.115.121.1.49 X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 2.5.4.53 NAME 'deltaRevocationList' SYNTAX 1.3.6.1.4.1.1466.115.121.1.9 X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' ) @@ -178,7 +178,9 @@ attributeTypes: ( 0.9.2342.19200300.100.1.30 NAME 'sOARecord' SYNTAX 1.3.6.1.4.1 attributeTypes: ( 0.9.2342.19200300.100.1.31 NAME 'cNAMERecord' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 1.3.6.1.1.20 NAME 'entryDN' DESC 'DN of the entry' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'RFC 5020' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 1.3.6.1.4.1.453.16.2.103 NAME 'numSubordinates' DESC 'Count of immediate subordinates' EQUALITY integerMatch ORDERING integerOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-ietf-boreham-numsubordinates' X-SCHEMA-FILE '00-core.ldif' ) -attributeTypes: ( 2.16.840.1.113730.3.1.35 NAME 'changelog' DESC 'the distinguished name of the entry which contains the set of entries comprising this servers changelog' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '00-core.ldif' ) +attributeTypes: ( 2.16.840.1.113730.3.1.35 NAME 'changelog' DESC 'the distinguished name of the entry which contains the set of entries comprising this servers changelog' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '00-core.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.59 NAME 'etag' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.44 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '00-core.ldif' ) +attributeTypes: ( 1.2.840.113549.1.9.1 NAME 'emailAddress' DESC 'represents the email address part of an X.509 certificate' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 2985' X-SCHEMA-FILE '00-core.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.1 NAME 'pwdAttribute' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.2 NAME 'pwdMinAge' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.3 NAME 'pwdMaxAge' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' ) @@ -201,529 +203,646 @@ attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.20 NAME 'pwdHistory' DESC 'The history attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.21 NAME 'pwdGraceUseTime' DESC 'The timestamps of the grace authentication after the password has expired' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.22 NAME 'pwdReset' DESC 'The indication that the password has been reset' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.23 NAME 'pwdPolicySubentry' DESC 'The pwdPolicy subentry in effect for this object' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.1 NAME 'ds-cfg-java-class' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.2 NAME 'ds-cfg-enabled' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.3 NAME 'ds-cfg-allow-attribute-name-exceptions' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.4 NAME 'ds-cfg-allowed-client' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.5 NAME 'ds-cfg-allow-ldap-v2' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.6 NAME 'ds-cfg-allow-start-tls' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.7 NAME 'ds-cfg-allow-tcp-reuse-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.8 NAME 'ds-cfg-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.9 NAME 'ds-cfg-db-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.10 NAME 'ds-cfg-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.11 NAME 'ds-cfg-index-entry-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.13 NAME 'ds-cfg-alternate-bind-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.14 NAME 'ds-cfg-certificate-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.15 NAME 'ds-cfg-check-schema' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.16 NAME 'ds-cfg-certificate-validation-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.17 NAME 'ds-cfg-db-cache-percent' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.18 NAME 'ds-cfg-db-cleaner-min-utilization' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.19 NAME 'ds-cfg-db-cache-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.20 NAME 'ds-cfg-db-run-cleaner' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.21 NAME 'ds-cfg-db-txn-no-sync' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.22 NAME 'ds-cfg-db-txn-write-no-sync' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.23 NAME 'ds-cfg-default-severity' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.24 NAME 'ds-cfg-denied-client' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.25 NAME 'ds-cfg-enable-profiling-on-startup' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.26 NAME 'ds-cfg-exclude-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.27 NAME 'ds-cfg-rotation-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.28 NAME 'ds-cfg-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.29 NAME 'ds-cfg-index-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.30 NAME 'ds-cfg-include-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.31 NAME 'ds-cfg-invalid-attribute-syntax-behavior' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.32 NAME 'ds-cfg-kdc-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.33 NAME 'ds-cfg-keytab' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.34 NAME 'ds-cfg-keep-stats' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.35 NAME 'ds-cfg-key-store-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.36 NAME 'ds-cfg-key-store-pin' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.37 NAME 'ds-cfg-key-store-pin-environment-variable' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.38 NAME 'ds-cfg-key-store-pin-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.39 NAME 'ds-cfg-key-store-pin-property' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.40 NAME 'ds-cfg-key-store-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.41 NAME 'ds-cfg-listen-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.42 NAME 'ds-cfg-listen-port' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.43 NAME 'ds-cfg-lock-timeout' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.44 NAME 'ds-cfg-log-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.45 NAME 'ds-cfg-max-allowed-client-connections' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.46 NAME 'ds-cfg-max-entries' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.47 NAME 'ds-cfg-max-memory-percent' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.48 NAME 'ds-cfg-max-request-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.49 NAME 'ds-cfg-max-work-queue-capacity' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.50 NAME 'ds-cfg-notify-abandoned-operations' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.51 NAME 'ds-cfg-num-request-handlers' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.52 NAME 'ds-cfg-num-worker-threads' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.53 NAME 'ds-cfg-override-severity' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.54 NAME 'ds-cfg-plugin-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.55 NAME 'ds-cfg-profile-action' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.56 NAME 'ds-cfg-profile-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.57 NAME 'ds-cfg-profiler-state' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.58 NAME 'ds-cfg-profile-sample-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.59 NAME 'ds-cfg-realm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.515 NAME 'ds-recurring-task-schedule' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.61 NAME 'ds-recurring-task-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.62 NAME 'ds-cfg-rotation-action' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.63 NAME 'ds-cfg-rotation-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.64 NAME 'ds-cfg-retention-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.65 NAME 'ds-cfg-number-of-files' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.66 NAME 'ds-cfg-disk-space-used' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.67 NAME 'ds-cfg-free-disk-space' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.68 NAME 'ds-task-shutdown-message' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.69 NAME 'ds-task-actual-start-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.70 NAME 'ds-cfg-task-backing-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.71 NAME 'ds-task-class-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.72 NAME 'ds-task-completion-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.73 NAME 'ds-task-dependency-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.74 NAME 'ds-task-failed-dependency-action' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.75 NAME 'ds-task-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.76 NAME 'ds-task-log-message' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.77 NAME 'ds-task-notify-on-completion' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.78 NAME 'ds-task-notify-on-error' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.79 NAME 'ds-cfg-task-retention-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.80 NAME 'ds-task-scheduled-start-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.81 NAME 'ds-task-state' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.82 NAME 'ds-cfg-time-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.83 NAME 'ds-cfg-buffer-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.84 NAME 'ds-cfg-schema-entry-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.85 NAME 'ds-cfg-send-rejection-notice' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.86 NAME 'ds-cfg-server-fqdn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.87 NAME 'ds-task-shutdown-password' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.88 NAME 'ds-cfg-single-structural-objectclass-behavior' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.89 NAME 'ds-cfg-size-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.90 NAME 'ds-cfg-ssl-client-auth-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.91 NAME 'ds-cfg-ssl-cert-nickname' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.92 NAME 'ds-cfg-strict-format' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.93 NAME 'ds-cfg-subordinate-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.94 NAME 'ds-cfg-suppress-internal-operations' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.95 NAME 'ds-cfg-time-of-day' SYNTAX 1.3.6.1.4.1.1466.115.121.1.36 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.96 NAME 'ds-cfg-trust-store-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.97 NAME 'ds-cfg-trust-store-pin' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.98 NAME 'ds-cfg-trust-store-pin-environment-variable' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.99 NAME 'ds-cfg-trust-store-pin-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.100 NAME 'ds-cfg-trust-store-pin-property' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.101 NAME 'ds-cfg-trust-store-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.102 NAME 'ds-cfg-user-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.103 NAME 'ds-cfg-user-name-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.104 NAME 'ds-cfg-use-ssl' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.105 NAME 'ds-cfg-use-tcp-keep-alive' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.106 NAME 'ds-cfg-use-tcp-no-delay' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.107 NAME 'ds-cfg-allow-zero-length-values' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.108 NAME 'ds-cfg-show-all-attributes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.109 NAME 'ds-cfg-add-missing-rdn-attributes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.110 NAME 'ds-cfg-server-error-result-code' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.111 NAME 'ds-cfg-match-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.112 NAME 'ds-cfg-match-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.113 NAME 'ds-cfg-identity-mapper' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.114 NAME 'ds-cfg-proxied-authorization-identity-mapper' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.115 NAME 'ds-cfg-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.116 NAME 'ds-rlim-size-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.117 NAME 'ds-rlim-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.118 NAME 'ds-cfg-accept-backlog' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.119 NAME 'ds-sync-hist' ORDERING historicalCsnOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.120 NAME 'ds-cfg-receive-status' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.121 NAME 'ds-cfg-replication-port' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.122 NAME 'ds-cfg-replication-server' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.123 NAME 'ds-cfg-writability-mode' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.124 NAME 'ds-cfg-bind-with-dn-requires-password' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.125 NAME 'ds-cfg-max-receive-queue' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.126 NAME 'ds-cfg-max-receive-delay' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.127 NAME 'ds-cfg-max-send-queue' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.128 NAME 'ds-cfg-max-send-delay' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.129 NAME 'ds-cfg-max-password-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.130 NAME 'ds-cfg-min-password-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.131 NAME 'ds-cfg-password-character-set' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.132 NAME 'ds-cfg-password-format' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.133 NAME 'ds-cfg-account-status-notification-handler' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.134 NAME 'ds-cfg-allow-expired-password-changes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.135 NAME 'ds-cfg-allow-pre-encoded-passwords' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.136 NAME 'ds-cfg-allow-user-password-changes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.137 NAME 'ds-cfg-default-password-storage-scheme' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.138 NAME 'ds-cfg-deprecated-password-storage-scheme' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.139 NAME 'ds-cfg-expire-passwords-without-warning' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.140 NAME 'ds-cfg-force-change-on-reset' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.141 NAME 'ds-cfg-grace-login-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.142 NAME 'ds-cfg-idle-lockout-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.143 NAME 'ds-cfg-last-login-time-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.144 NAME 'ds-cfg-last-login-time-format' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.145 NAME 'ds-cfg-lockout-duration' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.146 NAME 'ds-cfg-lockout-failure-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.147 NAME 'ds-cfg-lockout-failure-expiration-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.148 NAME 'ds-cfg-max-password-age' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.149 NAME 'ds-cfg-max-password-reset-age' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.150 NAME 'ds-cfg-min-password-age' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.151 NAME 'ds-cfg-password-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.152 NAME 'ds-cfg-password-expiration-warning-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.153 NAME 'ds-cfg-password-generator' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.154 NAME 'ds-cfg-password-validator' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.155 NAME 'ds-cfg-previous-last-login-time-format' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.156 NAME 'ds-cfg-require-change-by-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.157 NAME 'ds-cfg-password-change-requires-current-password' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.158 NAME 'ds-cfg-require-secure-authentication' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.159 NAME 'ds-cfg-require-secure-password-changes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.160 NAME 'ds-cfg-skip-validation-for-administrators' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.161 NAME 'ds-cfg-default-password-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.162 NAME 'ds-pwp-last-login-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.163 NAME 'ds-pwp-password-changed-by-required-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.164 NAME 'ds-pwp-reset-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.165 NAME 'ds-pwp-warned-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.166 NAME 'ds-pwp-account-disabled' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.167 NAME 'ds-cfg-force-change-on-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.168 NAME 'ds-cfg-allow-multiple-password-values' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.169 NAME 'ds-task-import-ldif-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.170 NAME 'ds-task-import-append' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.171 NAME 'ds-task-import-replace-existing' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.172 NAME 'ds-task-import-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.173 NAME 'ds-task-import-include-branch' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.174 NAME 'ds-task-import-exclude-branch' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.175 NAME 'ds-task-import-include-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.176 NAME 'ds-task-import-exclude-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.177 NAME 'ds-task-import-include-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.178 NAME 'ds-task-import-exclude-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.179 NAME 'ds-task-import-reject-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.598 NAME 'ds-task-import-tmp-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.180 NAME 'ds-task-import-overwrite-rejects' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.181 NAME 'ds-task-import-skip-schema-validation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.597 NAME 'ds-task-import-skip-dn-validation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.519 NAME 'ds-task-import-skip-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.182 NAME 'ds-task-import-is-compressed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.183 NAME 'ds-task-import-is-encrypted' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.222 NAME 'ds-cfg-import-queue-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.184 NAME 'ds-task-restart-server' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.185 NAME 'ds-sync-state' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.1 NAME 'ds-cfg-java-class' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.2 NAME 'ds-cfg-enabled' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.3 NAME 'ds-cfg-allow-attribute-name-exceptions' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.4 NAME 'ds-cfg-allowed-client' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.5 NAME 'ds-cfg-allow-ldap-v2' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.6 NAME 'ds-cfg-allow-start-tls' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.7 NAME 'ds-cfg-allow-tcp-reuse-address' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.8 NAME 'ds-cfg-base-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.9 NAME 'ds-cfg-db-directory' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.10 NAME 'ds-cfg-backend-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.11 NAME 'ds-cfg-index-entry-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.13 NAME 'ds-cfg-alternate-bind-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.14 NAME 'ds-cfg-certificate-attribute' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.15 NAME 'ds-cfg-check-schema' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.16 NAME 'ds-cfg-certificate-validation-policy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.17 NAME 'ds-cfg-db-cache-percent' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.18 NAME 'ds-cfg-db-cleaner-min-utilization' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.19 NAME 'ds-cfg-db-cache-size' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.20 NAME 'ds-cfg-db-run-cleaner' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.21 NAME 'ds-cfg-db-txn-no-sync' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.22 NAME 'ds-cfg-db-txn-write-no-sync' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.23 NAME 'ds-cfg-default-severity' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.24 NAME 'ds-cfg-denied-client' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.25 NAME 'ds-cfg-enable-profiling-on-startup' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.26 NAME 'ds-cfg-exclude-filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.27 NAME 'ds-cfg-rotation-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.28 NAME 'ds-cfg-attribute' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.29 NAME 'ds-cfg-index-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.30 NAME 'ds-cfg-include-filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.31 NAME 'ds-cfg-invalid-attribute-syntax-behavior' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.32 NAME 'ds-cfg-kdc-address' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.33 NAME 'ds-cfg-keytab' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.34 NAME 'ds-cfg-keep-stats' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.35 NAME 'ds-cfg-key-store-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.36 NAME 'ds-cfg-key-store-pin' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.37 NAME 'ds-cfg-key-store-pin-environment-variable' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.38 NAME 'ds-cfg-key-store-pin-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.39 NAME 'ds-cfg-key-store-pin-property' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.40 NAME 'ds-cfg-key-store-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.41 NAME 'ds-cfg-listen-address' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.42 NAME 'ds-cfg-listen-port' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.43 NAME 'ds-cfg-lock-timeout' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.44 NAME 'ds-cfg-log-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.45 NAME 'ds-cfg-max-allowed-client-connections' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.46 NAME 'ds-cfg-max-entries' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.47 NAME 'ds-cfg-max-memory-percent' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.48 NAME 'ds-cfg-max-request-size' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.49 NAME 'ds-cfg-max-work-queue-capacity' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.50 NAME 'ds-cfg-notify-abandoned-operations' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.51 NAME 'ds-cfg-num-request-handlers' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.52 NAME 'ds-cfg-num-worker-threads' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.53 NAME 'ds-cfg-override-severity' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.54 NAME 'ds-cfg-plugin-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.55 NAME 'ds-cfg-profile-action' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.56 NAME 'ds-cfg-profile-directory' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.57 NAME 'ds-cfg-profiler-state' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.58 NAME 'ds-cfg-profile-sample-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.59 NAME 'ds-cfg-realm' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.515 NAME 'ds-recurring-task-schedule' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.61 NAME 'ds-recurring-task-id' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.62 NAME 'ds-cfg-rotation-action' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.63 NAME 'ds-cfg-rotation-policy' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.64 NAME 'ds-cfg-retention-policy' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.65 NAME 'ds-cfg-number-of-files' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.66 NAME 'ds-cfg-disk-space-used' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.67 NAME 'ds-cfg-free-disk-space' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.68 NAME 'ds-task-shutdown-message' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.69 NAME 'ds-task-actual-start-time' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.70 NAME 'ds-cfg-task-backing-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.71 NAME 'ds-task-class-name' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.72 NAME 'ds-task-completion-time' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.73 NAME 'ds-task-dependency-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.74 NAME 'ds-task-failed-dependency-action' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.75 NAME 'ds-task-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.76 NAME 'ds-task-log-message' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.77 NAME 'ds-task-notify-on-completion' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.78 NAME 'ds-task-notify-on-error' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.79 NAME 'ds-cfg-task-retention-time' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.80 NAME 'ds-task-scheduled-start-time' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.81 NAME 'ds-task-state' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.82 NAME 'ds-cfg-time-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.83 NAME 'ds-cfg-buffer-size' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.84 NAME 'ds-cfg-schema-entry-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.85 NAME 'ds-cfg-send-rejection-notice' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.86 NAME 'ds-cfg-server-fqdn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.87 NAME 'ds-task-shutdown-password' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.88 NAME 'ds-cfg-single-structural-objectclass-behavior' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.89 NAME 'ds-cfg-size-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.90 NAME 'ds-cfg-ssl-client-auth-policy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.91 NAME 'ds-cfg-ssl-cert-nickname' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.92 NAME 'ds-cfg-strict-format' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.93 NAME 'ds-cfg-subordinate-base-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.94 NAME 'ds-cfg-suppress-internal-operations' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.95 NAME 'ds-cfg-time-of-day' EQUALITY numericStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.36 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.96 NAME 'ds-cfg-trust-store-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.97 NAME 'ds-cfg-trust-store-pin' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.98 NAME 'ds-cfg-trust-store-pin-environment-variable' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.99 NAME 'ds-cfg-trust-store-pin-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.100 NAME 'ds-cfg-trust-store-pin-property' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.101 NAME 'ds-cfg-trust-store-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.102 NAME 'ds-cfg-user-base-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.103 NAME 'ds-cfg-user-name-attribute' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.104 NAME 'ds-cfg-use-ssl' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.105 NAME 'ds-cfg-use-tcp-keep-alive' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.106 NAME 'ds-cfg-use-tcp-no-delay' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.107 NAME 'ds-cfg-allow-zero-length-values' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.108 NAME 'ds-cfg-show-all-attributes' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.109 NAME 'ds-cfg-add-missing-rdn-attributes' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.110 NAME 'ds-cfg-server-error-result-code' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.111 NAME 'ds-cfg-match-attribute' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.112 NAME 'ds-cfg-match-base-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.113 NAME 'ds-cfg-identity-mapper' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.114 NAME 'ds-cfg-proxied-authorization-identity-mapper' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.115 NAME 'ds-cfg-time-limit' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.116 NAME 'ds-rlim-size-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.117 NAME 'ds-rlim-time-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.118 NAME 'ds-cfg-accept-backlog' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.119 NAME 'ds-sync-hist' ORDERING historicalCsnOrderingMatch EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.120 NAME 'ds-cfg-receive-status' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.121 NAME 'ds-cfg-replication-port' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.122 NAME 'ds-cfg-replication-server' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.123 NAME 'ds-cfg-writability-mode' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.124 NAME 'ds-cfg-bind-with-dn-requires-password' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.125 NAME 'ds-cfg-max-receive-queue' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.126 NAME 'ds-cfg-max-receive-delay' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.127 NAME 'ds-cfg-max-send-queue' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.128 NAME 'ds-cfg-max-send-delay' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.129 NAME 'ds-cfg-max-password-length' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.130 NAME 'ds-cfg-min-password-length' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.131 NAME 'ds-cfg-password-character-set' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.132 NAME 'ds-cfg-password-format' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.133 NAME 'ds-cfg-account-status-notification-handler' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.134 NAME 'ds-cfg-allow-expired-password-changes' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.135 NAME 'ds-cfg-allow-pre-encoded-passwords' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.136 NAME 'ds-cfg-allow-user-password-changes' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.137 NAME 'ds-cfg-default-password-storage-scheme' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.138 NAME 'ds-cfg-deprecated-password-storage-scheme' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.139 NAME 'ds-cfg-expire-passwords-without-warning' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.140 NAME 'ds-cfg-force-change-on-reset' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.141 NAME 'ds-cfg-grace-login-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.142 NAME 'ds-cfg-idle-lockout-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.143 NAME 'ds-cfg-last-login-time-attribute' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.144 NAME 'ds-cfg-last-login-time-format' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.145 NAME 'ds-cfg-lockout-duration' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.146 NAME 'ds-cfg-lockout-failure-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.147 NAME 'ds-cfg-lockout-failure-expiration-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.148 NAME 'ds-cfg-max-password-age' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.149 NAME 'ds-cfg-max-password-reset-age' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.150 NAME 'ds-cfg-min-password-age' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.151 NAME 'ds-cfg-password-attribute' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.152 NAME 'ds-cfg-password-expiration-warning-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.153 NAME 'ds-cfg-password-generator' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.154 NAME 'ds-cfg-password-validator' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.155 NAME 'ds-cfg-previous-last-login-time-format' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.156 NAME 'ds-cfg-require-change-by-time' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.157 NAME 'ds-cfg-password-change-requires-current-password' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.158 NAME 'ds-cfg-require-secure-authentication' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.159 NAME 'ds-cfg-require-secure-password-changes' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.160 NAME 'ds-cfg-skip-validation-for-administrators' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.161 NAME 'ds-cfg-default-password-policy' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.162 NAME 'ds-pwp-last-login-time' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.163 NAME 'ds-pwp-password-changed-by-required-time' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.164 NAME 'ds-pwp-reset-time' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.165 NAME 'ds-pwp-warned-time' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.166 NAME 'ds-pwp-account-disabled' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.167 NAME 'ds-cfg-force-change-on-add' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.168 NAME 'ds-cfg-allow-multiple-password-values' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.169 NAME 'ds-task-import-ldif-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.170 NAME 'ds-task-import-append' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.171 NAME 'ds-task-import-replace-existing' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.172 NAME 'ds-task-import-backend-id' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.173 NAME 'ds-task-import-include-branch' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.174 NAME 'ds-task-import-exclude-branch' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.175 NAME 'ds-task-import-include-attribute' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.176 NAME 'ds-task-import-exclude-attribute' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.177 NAME 'ds-task-import-include-filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.178 NAME 'ds-task-import-exclude-filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.179 NAME 'ds-task-import-reject-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.598 NAME 'ds-task-import-tmp-directory' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.180 NAME 'ds-task-import-overwrite-rejects' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.181 NAME 'ds-task-import-skip-schema-validation' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.597 NAME 'ds-task-import-skip-dn-validation' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.519 NAME 'ds-task-import-skip-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.182 NAME 'ds-task-import-is-compressed' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.183 NAME 'ds-task-import-is-encrypted' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.222 NAME 'ds-cfg-import-queue-size' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.184 NAME 'ds-task-restart-server' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.185 NAME 'ds-sync-state' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.186 NAME 'ds-cfg-backup-directory' EQUALITY caseExactMatch SUBSTR caseExactSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.187 NAME 'ds-backup-compressed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.188 NAME 'ds-backup-date' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.189 NAME 'ds-backup-dependency' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.187 NAME 'ds-backup-compressed' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.188 NAME 'ds-backup-date' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.189 NAME 'ds-backup-dependency' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.190 NAME 'ds-backup-directory-path' EQUALITY caseExactMatch SUBSTR caseExactSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.191 NAME 'ds-backup-encrypted' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.192 NAME 'ds-backup-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.193 NAME 'ds-backup-incremental' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.194 NAME 'ds-backup-signed-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.195 NAME 'ds-backup-unsigned-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.196 NAME 'ds-backup-backend-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.197 NAME 'ds-task-export-ldif-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.198 NAME 'ds-task-export-append-to-ldif' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.199 NAME 'ds-task-export-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.200 NAME 'ds-task-export-include-branch' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.201 NAME 'ds-task-export-exclude-branch' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.202 NAME 'ds-task-export-include-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.203 NAME 'ds-task-export-exclude-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.204 NAME 'ds-task-export-include-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.205 NAME 'ds-task-export-exclude-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.206 NAME 'ds-task-export-wrap-column' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.207 NAME 'ds-task-export-compress-ldif' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.208 NAME 'ds-task-export-encrypt-ldif' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.209 NAME 'ds-task-export-sign-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.210 NAME 'ds-task-restore-verify-only' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.211 NAME 'ds-task-backup-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.212 NAME 'ds-task-backup-all' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.213 NAME 'ds-task-backup-incremental' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.214 NAME 'ds-task-backup-incremental-base-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.215 NAME 'ds-task-backup-compress' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.216 NAME 'ds-task-backup-encrypt' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.217 NAME 'ds-task-backup-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.218 NAME 'ds-task-backup-sign-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.219 NAME 'ds-cfg-preload-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.223 NAME 'ds-cfg-import-thread-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.224 NAME 'ds-cfg-entries-compressed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.225 NAME 'ds-cfg-deadlock-retry-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.226 NAME 'ds-cfg-db-evictor-lru-only' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.227 NAME 'ds-cfg-db-evictor-nodes-per-scan' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.228 NAME 'ds-cfg-db-log-file-max' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.229 NAME 'ds-cfg-db-logging-file-handler-on' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.230 NAME 'ds-cfg-db-logging-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.231 NAME 'ds-cfg-db-checkpointer-bytes-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.232 NAME 'ds-cfg-db-checkpointer-wakeup-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.233 NAME 'ds-cfg-db-num-lock-tables' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.235 NAME 'ds-cfg-replication-server-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.236 NAME 'ds-cfg-server-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.237 NAME 'ds-pwp-account-expiration-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.238 NAME 'ds-cfg-account-status-notification-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.239 NAME 'ds-cfg-db-num-cleaner-threads' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.240 NAME 'ds-cfg-lookthrough-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.241 NAME 'ds-rlim-lookthrough-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.242 NAME 'ds-cfg-db-directory-permissions' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.243 NAME 'ds-cfg-window-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.244 NAME 'ds-pwp-password-policy-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.245 NAME 'ds-cfg-queue-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.246 NAME 'ds-private-naming-contexts' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.247 NAME 'ds-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.248 NAME 'ds-backend-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.249 NAME 'ds-backend-entry-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.250 NAME 'ds-backend-writability-mode' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.251 NAME 'ds-connectionhandler-connection' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.252 NAME 'ds-connectionhandler-listener' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.253 NAME 'ds-connectionhandler-num-connections' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.254 NAME 'ds-connectionhandler-protocol' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.255 NAME 'ds-backend-is-private' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.256 NAME 'ds-cfg-reject-unauthenticated-requests' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.257 NAME 'ds-task-schema-file-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.258 NAME 'ds-cfg-heartbeat-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.259 NAME 'ds-cfg-replication-db-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.260 NAME 'ds-privilege-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.261 NAME 'ds-cfg-default-root-privilege-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.262 NAME 'ds-cfg-certificate-mapper' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.263 NAME 'ds-cfg-key-manager-provider' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.264 NAME 'ds-cfg-trust-manager-provider' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.265 NAME 'ds-cfg-subject-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.266 NAME 'ds-certificate-subject-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.267 NAME 'ds-cfg-subject-attribute-mapping' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.268 NAME 'ds-certificate-fingerprint' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.269 NAME 'ds-cfg-fingerprint-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.270 NAME 'ds-cfg-fingerprint-algorithm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.271 NAME 'ds-cfg-replication-purge-delay' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.191 NAME 'ds-backup-encrypted' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.192 NAME 'ds-backup-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.193 NAME 'ds-backup-incremental' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.194 NAME 'ds-backup-signed-hash' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.195 NAME 'ds-backup-unsigned-hash' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.196 NAME 'ds-backup-backend-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.197 NAME 'ds-task-export-ldif-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.198 NAME 'ds-task-export-append-to-ldif' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.199 NAME 'ds-task-export-backend-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.200 NAME 'ds-task-export-include-branch' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.201 NAME 'ds-task-export-exclude-branch' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.202 NAME 'ds-task-export-include-attribute' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.203 NAME 'ds-task-export-exclude-attribute' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.204 NAME 'ds-task-export-include-filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.205 NAME 'ds-task-export-exclude-filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.206 NAME 'ds-task-export-wrap-column' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.207 NAME 'ds-task-export-compress-ldif' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.208 NAME 'ds-task-export-encrypt-ldif' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.209 NAME 'ds-task-export-sign-hash' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.210 NAME 'ds-task-restore-verify-only' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.211 NAME 'ds-task-backup-backend-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.212 NAME 'ds-task-backup-all' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.213 NAME 'ds-task-backup-incremental' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.214 NAME 'ds-task-backup-incremental-base-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.215 NAME 'ds-task-backup-compress' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.216 NAME 'ds-task-backup-encrypt' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.217 NAME 'ds-task-backup-hash' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.218 NAME 'ds-task-backup-sign-hash' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.219 NAME 'ds-cfg-preload-time-limit' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.223 NAME 'ds-cfg-import-thread-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.224 NAME 'ds-cfg-entries-compressed' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.225 NAME 'ds-cfg-deadlock-retry-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.226 NAME 'ds-cfg-db-evictor-lru-only' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.227 NAME 'ds-cfg-db-evictor-nodes-per-scan' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.228 NAME 'ds-cfg-db-log-file-max' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.229 NAME 'ds-cfg-db-logging-file-handler-on' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.230 NAME 'ds-cfg-db-logging-level' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.231 NAME 'ds-cfg-db-checkpointer-bytes-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.232 NAME 'ds-cfg-db-checkpointer-wakeup-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.233 NAME 'ds-cfg-db-num-lock-tables' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.235 NAME 'ds-cfg-replication-server-id' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.236 NAME 'ds-cfg-server-id' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.237 NAME 'ds-pwp-account-expiration-time' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.238 NAME 'ds-cfg-account-status-notification-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.239 NAME 'ds-cfg-db-num-cleaner-threads' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.240 NAME 'ds-cfg-lookthrough-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.241 NAME 'ds-rlim-lookthrough-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.242 NAME 'ds-cfg-db-directory-permissions' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.243 NAME 'ds-cfg-window-size' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.244 NAME 'ds-pwp-password-policy-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.245 NAME 'ds-cfg-queue-size' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.246 NAME 'ds-private-naming-contexts' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.247 NAME 'ds-backend-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.248 NAME 'ds-backend-base-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.249 NAME 'ds-backend-entry-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.250 NAME 'ds-backend-writability-mode' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.251 NAME 'ds-connectionhandler-connection' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.252 NAME 'ds-connectionhandler-listener' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.253 NAME 'ds-connectionhandler-num-connections' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.254 NAME 'ds-connectionhandler-protocol' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.255 NAME 'ds-backend-is-private' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.256 NAME 'ds-cfg-reject-unauthenticated-requests' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.257 NAME 'ds-task-schema-file-name' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.258 NAME 'ds-cfg-heartbeat-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.259 NAME 'ds-cfg-replication-db-directory' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.260 NAME 'ds-privilege-name' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.261 NAME 'ds-cfg-default-root-privilege-name' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.262 NAME 'ds-cfg-certificate-mapper' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.263 NAME 'ds-cfg-key-manager-provider' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.264 NAME 'ds-cfg-trust-manager-provider' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.265 NAME 'ds-cfg-subject-attribute' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.266 NAME 'ds-certificate-subject-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.267 NAME 'ds-cfg-subject-attribute-mapping' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.268 NAME 'ds-certificate-fingerprint' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.269 NAME 'ds-cfg-fingerprint-attribute' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.270 NAME 'ds-cfg-fingerprint-algorithm' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.271 NAME 'ds-cfg-replication-purge-delay' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.272 NAME 'ds-cfg-global-aci' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.26027.1.3.4 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.273 NAME 'ds-cfg-min-password-difference' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.274 NAME 'ds-cfg-min-unique-characters' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.275 NAME 'ds-cfg-max-consecutive-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.276 NAME 'ds-cfg-case-sensitive-validation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.277 NAME 'ds-cfg-attribute-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.278 NAME 'ds-cfg-group-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.279 NAME 'ds-cfg-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.280 NAME 'ds-cfg-conflict-behavior' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.281 NAME 'ds-task-initialize-domain-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.282 NAME 'ds-task-initialize-replica-server-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.283 NAME 'ds-task-unprocessed-entry-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.284 NAME 'ds-task-processed-entry-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.285 NAME 'ds-cfg-dictionary-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.286 NAME 'ds-cfg-test-reversed-password' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.273 NAME 'ds-cfg-min-password-difference' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.274 NAME 'ds-cfg-min-unique-characters' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.275 NAME 'ds-cfg-max-consecutive-length' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.276 NAME 'ds-cfg-case-sensitive-validation' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.277 NAME 'ds-cfg-attribute-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.278 NAME 'ds-cfg-group-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.279 NAME 'ds-cfg-filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.280 NAME 'ds-cfg-conflict-behavior' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.281 NAME 'ds-task-initialize-domain-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.282 NAME 'ds-task-initialize-replica-server-id' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.283 NAME 'ds-task-unprocessed-entry-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.284 NAME 'ds-task-processed-entry-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.285 NAME 'ds-cfg-dictionary-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.286 NAME 'ds-cfg-test-reversed-password' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.287 NAME 'ds-cfg-character-set' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.288 NAME 'ds-cfg-allow-unclassified-characters' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.289 NAME 'ds-task-rebuild-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.290 NAME 'ds-task-rebuild-index' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.291 NAME 'ds-task-rebuild-tmp-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.292 NAME 'ds-target-group-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.293 NAME 'ds-cfg-value' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.294 NAME 'ds-cfg-default-debug-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.295 NAME 'ds-cfg-default-debug-category' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.296 NAME 'ds-cfg-default-omit-method-entry-arguments' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.297 NAME 'ds-cfg-default-omit-method-return-value' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.298 NAME 'ds-cfg-default-include-throwable-cause' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.299 NAME 'ds-cfg-default-throwable-stack-frames' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.300 NAME 'ds-cfg-debug-scope' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.301 NAME 'ds-cfg-debug-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.302 NAME 'ds-cfg-debug-category' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.303 NAME 'ds-cfg-omit-method-entry-arguments' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.304 NAME 'ds-cfg-omit-method-return-value' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.305 NAME 'ds-cfg-include-throwable-cause' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.306 NAME 'ds-cfg-throwable-stack-frames' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.307 NAME 'ds-cfg-asynchronous' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.308 NAME 'ds-cfg-log-file-permissions' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.309 NAME 'ds-cfg-auto-flush' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.310 NAME 'ds-cfg-append' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.311 NAME 'ds-cfg-max-memory-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.312 NAME 'ds-cfg-cache-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.313 NAME 'ds-cfg-cache-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.314 NAME 'ds-cfg-persistent-cache' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.315 NAME 'ds-cfg-allow-retrieving-membership' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.316 NAME 'ds-cfg-file-size-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.288 NAME 'ds-cfg-allow-unclassified-characters' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.289 NAME 'ds-task-rebuild-base-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.290 NAME 'ds-task-rebuild-index' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.291 NAME 'ds-task-rebuild-tmp-directory' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.292 NAME 'ds-target-group-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.293 NAME 'ds-cfg-value' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.294 NAME 'ds-cfg-default-debug-level' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.295 NAME 'ds-cfg-default-debug-category' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.296 NAME 'ds-cfg-default-omit-method-entry-arguments' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.297 NAME 'ds-cfg-default-omit-method-return-value' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.298 NAME 'ds-cfg-default-include-throwable-cause' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.299 NAME 'ds-cfg-default-throwable-stack-frames' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.300 NAME 'ds-cfg-debug-scope' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.301 NAME 'ds-cfg-debug-level' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.302 NAME 'ds-cfg-debug-category' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.303 NAME 'ds-cfg-omit-method-entry-arguments' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.304 NAME 'ds-cfg-omit-method-return-value' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.305 NAME 'ds-cfg-include-throwable-cause' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.306 NAME 'ds-cfg-throwable-stack-frames' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.307 NAME 'ds-cfg-asynchronous' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.308 NAME 'ds-cfg-log-file-permissions' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.309 NAME 'ds-cfg-auto-flush' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.310 NAME 'ds-cfg-append' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.311 NAME 'ds-cfg-max-memory-size' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.312 NAME 'ds-cfg-cache-type' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.313 NAME 'ds-cfg-cache-directory' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.314 NAME 'ds-cfg-persistent-cache' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.315 NAME 'ds-cfg-allow-retrieving-membership' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.316 NAME 'ds-cfg-file-size-limit' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.317 NAME 'ds-sync-conflict' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.319 NAME 'ds-cfg-substring-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.320 NAME 'ds-cfg-plugin-order-startup' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.321 NAME 'ds-cfg-plugin-order-shutdown' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.322 NAME 'ds-cfg-plugin-order-post-connect' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.323 NAME 'ds-cfg-plugin-order-post-disconnect' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.324 NAME 'ds-cfg-plugin-order-ldif-import' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.325 NAME 'ds-cfg-plugin-order-ldif-export' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.326 NAME 'ds-cfg-plugin-order-pre-parse-abandon' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.327 NAME 'ds-cfg-plugin-order-pre-parse-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.328 NAME 'ds-cfg-plugin-order-pre-parse-bind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.329 NAME 'ds-cfg-plugin-order-pre-parse-compare' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.330 NAME 'ds-cfg-plugin-order-pre-parse-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.331 NAME 'ds-cfg-plugin-order-pre-parse-extended' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.332 NAME 'ds-cfg-plugin-order-pre-parse-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.333 NAME 'ds-cfg-plugin-order-pre-parse-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.334 NAME 'ds-cfg-plugin-order-pre-parse-search' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.335 NAME 'ds-cfg-plugin-order-pre-parse-unbind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.336 NAME 'ds-cfg-plugin-order-pre-operation-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.337 NAME 'ds-cfg-plugin-order-pre-operation-bind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.338 NAME 'ds-cfg-plugin-order-pre-operation-compare' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.339 NAME 'ds-cfg-plugin-order-pre-operation-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.340 NAME 'ds-cfg-plugin-order-pre-operation-extended' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.341 NAME 'ds-cfg-plugin-order-pre-operation-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.342 NAME 'ds-cfg-plugin-order-pre-operation-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.343 NAME 'ds-cfg-plugin-order-pre-operation-search' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.344 NAME 'ds-cfg-plugin-order-post-operation-abandon' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.345 NAME 'ds-cfg-plugin-order-post-operation-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.346 NAME 'ds-cfg-plugin-order-post-operation-bind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.347 NAME 'ds-cfg-plugin-order-post-operation-compare' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.348 NAME 'ds-cfg-plugin-order-post-operation-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.349 NAME 'ds-cfg-plugin-order-post-operation-extended' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.350 NAME 'ds-cfg-plugin-order-post-operation-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.351 NAME 'ds-cfg-plugin-order-post-operation-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.352 NAME 'ds-cfg-plugin-order-post-operation-search' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.353 NAME 'ds-cfg-plugin-order-post-operation-unbind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.354 NAME 'ds-cfg-plugin-order-post-response-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.355 NAME 'ds-cfg-plugin-order-post-response-bind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.356 NAME 'ds-cfg-plugin-order-post-response-compare' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.357 NAME 'ds-cfg-plugin-order-post-response-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.358 NAME 'ds-cfg-plugin-order-post-response-extended' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.359 NAME 'ds-cfg-plugin-order-post-response-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.360 NAME 'ds-cfg-plugin-order-post-response-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.361 NAME 'ds-cfg-plugin-order-post-response-search' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.362 NAME 'ds-cfg-plugin-order-search-result-entry' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.363 NAME 'ds-cfg-plugin-order-search-result-reference' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.364 NAME 'ds-cfg-plugin-order-intermediate-response' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.365 NAME 'ds-cfg-default-user-password-storage-scheme' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.366 NAME 'ds-cfg-default-auth-password-storage-scheme' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.367 NAME 'ds-cfg-strip-syntax-min-upper-bound' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.368 NAME 'ds-cfg-suppress-synchronization-operations' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.369 NAME 'ds-cfg-scope' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.370 NAME 'ds-cfg-sort-order' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.371 NAME 'ds-cfg-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.372 NAME 'ds-cfg-max-block-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.373 NAME 'ds-cfg-state-update-failure-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.374 NAME 'ds-cfg-password-history-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.375 NAME 'ds-cfg-password-history-duration' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.376 NAME 'ds-cfg-smtp-server' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.377 NAME 'ds-cfg-sender-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.378 NAME 'ds-cfg-recipient-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.379 NAME 'ds-cfg-message-subject' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.380 NAME 'ds-cfg-message-body' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.381 NAME 'ds-task-import-clear-backend' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.382 NAME 'ds-cfg-je-property' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.383 NAME 'ds-task-disconnect-connection-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.384 NAME 'ds-task-disconnect-message' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.385 NAME 'ds-task-disconnect-notify-client' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.386 NAME 'ds-cfg-allowed-task' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.387 NAME 'ds-cfg-disabled-privilege' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.388 NAME 'ds-cfg-return-bind-error-messages' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.389 NAME 'ds-cfg-enabled-alert-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.390 NAME 'ds-cfg-disabled-alert-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.391 NAME 'ds-cfg-ssl-protocol' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.392 NAME 'ds-cfg-ssl-cipher-suite' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.393 NAME 'ds-cfg-idle-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.394 NAME 'ds-rlim-idle-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.395 NAME 'ds-cfg-notification-sender-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.396 NAME 'ds-cfg-plugin-order-subordinate-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.397 NAME 'ds-cfg-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.398 NAME 'ds-cfg-match-pattern' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.399 NAME 'ds-cfg-replace-pattern' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.400 NAME 'ds-cfg-compact-encoding' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.401 NAME 'ds-cfg-update-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.402 NAME 'ds-cfg-email-address-attribute-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.403 NAME 'ds-cfg-send-message-without-end-user-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.404 NAME 'ds-cfg-message-template-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.405 NAME 'ds-sync-generation-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.406 NAME 'ds-task-reset-generation-id-domain-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.407 NAME 'ds-cfg-ssl-encryption' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.319 NAME 'ds-cfg-substring-length' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.320 NAME 'ds-cfg-plugin-order-startup' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.321 NAME 'ds-cfg-plugin-order-shutdown' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.322 NAME 'ds-cfg-plugin-order-post-connect' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.323 NAME 'ds-cfg-plugin-order-post-disconnect' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.324 NAME 'ds-cfg-plugin-order-ldif-import' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.325 NAME 'ds-cfg-plugin-order-ldif-export' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.326 NAME 'ds-cfg-plugin-order-pre-parse-abandon' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.327 NAME 'ds-cfg-plugin-order-pre-parse-add' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.328 NAME 'ds-cfg-plugin-order-pre-parse-bind' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.329 NAME 'ds-cfg-plugin-order-pre-parse-compare' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.330 NAME 'ds-cfg-plugin-order-pre-parse-delete' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.331 NAME 'ds-cfg-plugin-order-pre-parse-extended' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.332 NAME 'ds-cfg-plugin-order-pre-parse-modify' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.333 NAME 'ds-cfg-plugin-order-pre-parse-modify-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.334 NAME 'ds-cfg-plugin-order-pre-parse-search' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.335 NAME 'ds-cfg-plugin-order-pre-parse-unbind' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.336 NAME 'ds-cfg-plugin-order-pre-operation-add' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.337 NAME 'ds-cfg-plugin-order-pre-operation-bind' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.338 NAME 'ds-cfg-plugin-order-pre-operation-compare' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.339 NAME 'ds-cfg-plugin-order-pre-operation-delete' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.340 NAME 'ds-cfg-plugin-order-pre-operation-extended' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.341 NAME 'ds-cfg-plugin-order-pre-operation-modify' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.342 NAME 'ds-cfg-plugin-order-pre-operation-modify-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.343 NAME 'ds-cfg-plugin-order-pre-operation-search' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.344 NAME 'ds-cfg-plugin-order-post-operation-abandon' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.345 NAME 'ds-cfg-plugin-order-post-operation-add' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.346 NAME 'ds-cfg-plugin-order-post-operation-bind' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.347 NAME 'ds-cfg-plugin-order-post-operation-compare' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.348 NAME 'ds-cfg-plugin-order-post-operation-delete' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.349 NAME 'ds-cfg-plugin-order-post-operation-extended' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.350 NAME 'ds-cfg-plugin-order-post-operation-modify' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.351 NAME 'ds-cfg-plugin-order-post-operation-modify-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.352 NAME 'ds-cfg-plugin-order-post-operation-search' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.353 NAME 'ds-cfg-plugin-order-post-operation-unbind' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.354 NAME 'ds-cfg-plugin-order-post-response-add' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.355 NAME 'ds-cfg-plugin-order-post-response-bind' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.356 NAME 'ds-cfg-plugin-order-post-response-compare' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.357 NAME 'ds-cfg-plugin-order-post-response-delete' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.358 NAME 'ds-cfg-plugin-order-post-response-extended' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.359 NAME 'ds-cfg-plugin-order-post-response-modify' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.360 NAME 'ds-cfg-plugin-order-post-response-modify-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.361 NAME 'ds-cfg-plugin-order-post-response-search' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.362 NAME 'ds-cfg-plugin-order-search-result-entry' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.363 NAME 'ds-cfg-plugin-order-search-result-reference' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.364 NAME 'ds-cfg-plugin-order-intermediate-response' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.365 NAME 'ds-cfg-default-user-password-storage-scheme' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.366 NAME 'ds-cfg-default-auth-password-storage-scheme' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.367 NAME 'ds-cfg-strip-syntax-min-upper-bound' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.368 NAME 'ds-cfg-suppress-synchronization-operations' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.369 NAME 'ds-cfg-scope' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.370 NAME 'ds-cfg-sort-order' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.371 NAME 'ds-cfg-name' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.372 NAME 'ds-cfg-max-block-size' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.373 NAME 'ds-cfg-state-update-failure-policy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.374 NAME 'ds-cfg-password-history-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.375 NAME 'ds-cfg-password-history-duration' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.376 NAME 'ds-cfg-smtp-server' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.377 NAME 'ds-cfg-sender-address' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.378 NAME 'ds-cfg-recipient-address' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.379 NAME 'ds-cfg-message-subject' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.380 NAME 'ds-cfg-message-body' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.381 NAME 'ds-task-import-clear-backend' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.382 NAME 'ds-cfg-je-property' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.383 NAME 'ds-task-disconnect-connection-id' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.384 NAME 'ds-task-disconnect-message' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.385 NAME 'ds-task-disconnect-notify-client' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.386 NAME 'ds-cfg-allowed-task' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.387 NAME 'ds-cfg-disabled-privilege' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.388 NAME 'ds-cfg-return-bind-error-messages' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.389 NAME 'ds-cfg-enabled-alert-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.390 NAME 'ds-cfg-disabled-alert-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.391 NAME 'ds-cfg-ssl-protocol' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.392 NAME 'ds-cfg-ssl-cipher-suite' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.393 NAME 'ds-cfg-idle-time-limit' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.394 NAME 'ds-rlim-idle-time-limit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.395 NAME 'ds-cfg-notification-sender-address' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.396 NAME 'ds-cfg-plugin-order-subordinate-modify-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.397 NAME 'ds-cfg-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.398 NAME 'ds-cfg-match-pattern' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.399 NAME 'ds-cfg-replace-pattern' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.400 NAME 'ds-cfg-compact-encoding' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.401 NAME 'ds-cfg-update-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.402 NAME 'ds-cfg-email-address-attribute-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.403 NAME 'ds-cfg-send-message-without-end-user-address' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.404 NAME 'ds-cfg-message-template-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.405 NAME 'ds-sync-generation-id' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.406 NAME 'ds-task-reset-generation-id-domain-base-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.407 NAME 'ds-cfg-ssl-encryption' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.408 NAME 'ds-cfg-public-key-certificate' DESC 'cryptographic public-key certificate' SYNTAX 1.3.6.1.4.1.1466.115.121.1.8 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.409 NAME 'ds-cfg-key-id' DESC 'cryptographic cipher-key unique identifier' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.410 NAME 'ds-cfg-key-compromised-time' DESC 'The time a cryptographic cipher key was suspected to be compromised' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.411 NAME 'ds-cfg-save-config-on-successful-startup' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.412 NAME 'ds-cfg-max-blocked-write-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.413 NAME 'ds-cfg-ldif-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.414 NAME 'ds-cfg-poll-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.415 NAME 'ds-cfg-plugin-order-post-synchronization-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.416 NAME 'ds-cfg-plugin-order-post-synchronization-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.417 NAME 'ds-cfg-plugin-order-post-synchronization-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.418 NAME 'ds-cfg-plugin-order-post-synchronization-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.419 NAME 'ds-cfg-invoke-for-internal-operations' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.420 NAME 'ds-cfg-ldif-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.421 NAME 'ds-cfg-is-private-backend' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.422 NAME 'ds-cfg-isolation-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.423 NAME 'ds-cfg-cipher-transformation-name' DESC 'The name of a cryptographic cipher transformation consisting of an algorithm, a mode, and a padding specification, separated by slashes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.424 NAME 'ds-cfg-mac-algorithm-name' DESC 'The name of a cryptographic message authentication code (MAC) algorithm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.425 NAME 'ds-cfg-key-length-bits' DESC 'The length of a cryptographic secret key' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.426 NAME 'ds-cfg-initialization-vector-length-bits' DESC 'The length of a cryptographic cipher initialization vector' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.427 NAME 'ds-cfg-symmetric-key' DESC 'A cryptographic secret-key wrapped by a public-key' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.428 NAME 'ds-cfg-digest-algorithm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.429 NAME 'ds-cfg-mac-algorithm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.430 NAME 'ds-cfg-mac-key-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.431 NAME 'ds-cfg-cipher-transformation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.432 NAME 'ds-cfg-cipher-key-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.433 NAME 'ds-cfg-key-wrapping-transformation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.434 NAME 'ds-base-dn-entry-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.437 NAME 'ds-cfg-workflow' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.439 NAME 'ds-cfg-workflow-element' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.440 NAME 'ds-cfg-workflow-configuration-mode' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.441 NAME 'ds-cfg-backend' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.442 NAME 'ds-cfg-etime-resolution' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.444 NAME 'ds-task-reset-generation-id-new-value' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.445 NAME 'ds-cfg-cache-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.446 NAME 'ds-cfg-entry-cache-preload' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.447 NAME 'ds-cfg-num-update-replay-threads' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.448 NAME 'ds-cfg-trap-port' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.449 NAME 'ds-cfg-community' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.450 NAME 'ds-cfg-allowed-manager' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.451 NAME 'ds-cfg-allowed-user' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.452 NAME 'ds-cfg-security-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.453 NAME 'ds-cfg-traps-community' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.454 NAME 'ds-cfg-traps-destination' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.455 NAME 'ds-cfg-security-agent-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.456 NAME 'ds-cfg-registered-mbean' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.457 NAME 'ds-cfg-opendmk-jarfile' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.458 NAME 'ds-task-export-include-operational-attributes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.459 NAME 'ds-task-import-template-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.460 NAME 'ds-task-import-random-seed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.596 NAME 'ds-task-import-thread-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.461 NAME 'ds-cfg-allowed-auth-method' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.462 NAME 'ds-cfg-allowed-protocol' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.463 NAME 'ds-cfg-allowed-bind-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.465 NAME 'ds-cfg-is-security-mandatory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.467 NAME 'ds-cfg-priority' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.468 NAME 'ds-cfg-max-connections' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.469 NAME 'ds-cfg-max-connections-from-same-ip' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.470 NAME 'ds-cfg-max-ops-per-connection' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.471 NAME 'ds-cfg-max-concurrent-ops-per-connection' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.474 NAME 'ds-cfg-min-substring-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.478 NAME 'ds-cfg-assured-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.479 NAME 'ds-cfg-assured-sd-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.480 NAME 'ds-cfg-assured-timeout' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.481 NAME 'ds-cfg-group-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.482 NAME 'ds-cfg-referrals-url' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.483 NAME 'ds-cfg-degraded-status-threshold' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.484 NAME 'ds-cfg-allowed-operations' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.485 NAME 'ds-cfg-allowed-attributes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.486 NAME 'ds-cfg-prohibited-attributes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.487 NAME 'ds-cfg-allowed-search-scopes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.488 NAME 'ds-cfg-allowed-subtrees' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.489 NAME 'ds-cfg-prohibited-subtrees' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.499 NAME 'ds-cfg-matching-rule-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.500 NAME 'ds-cfg-collation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.501 NAME 'ds-cfg-ndb-connect-string' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.502 NAME 'ds-cfg-ndb-thread-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.503 NAME 'ds-cfg-ndb-num-connections' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.504 NAME 'ds-cfg-sql-user' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.505 NAME 'ds-cfg-sql-passwd' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.506 NAME 'ds-cfg-ndb-dbname' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.507 NAME 'ds-cfg-ndb-attr-len' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.508 NAME 'ds-cfg-ndb-attr-blob' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.509 NAME 'ds-cfg-sql-connect-string' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.511 NAME 'ds-cfg-quality-of-protection' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.512 NAME 'ds-cfg-cipher-strength' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.513 NAME 'ds-cfg-principal-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.518 NAME 'ds-cfg-index-extensible-matching-rule' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.586 NAME 'ds-cfg-fractional-include' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.587 NAME 'ds-cfg-fractional-exclude' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.588 NAME 'ds-sync-fractional-include' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.589 NAME 'ds-sync-fractional-exclude' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.595 NAME 'ds-cfg-changetime-heartbeat-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.592 NAME 'ds-cfg-solve-conflicts' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.599 NAME 'ds-cfg-plugin-order-ldif-import-end' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.600 NAME 'ds-cfg-plugin-order-ldif-import-begin' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.601 NAME 'ds-cfg-ecl-include' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.603 NAME 'ds-cfg-weight' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.605 NAME 'ds-cfg-monitoring-period' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.607 NAME 'ds-cfg-initialization-window-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.608 NAME 'ds-cfg-log-changenumber' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.609 NAME 'ds-cfg-plugin-order-subordinate-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.610 NAME 'ds-cfg-disk-full-threshold' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.611 NAME 'ds-cfg-disk-low-threshold' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.612 NAME 'ds-cfg-index-filter-analyzer-enabled' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.613 NAME 'ds-cfg-max-psearches' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.614 NAME 'ds-cfg-conflicts-historical-purge-delay' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.615 NAME 'ds-task-purge-conflicts-historical-domain-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.616 NAME 'ds-task-purge-conflicts-historical-maximum-duration' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.617 NAME 'ds-task-purge-conflicts-historical-last-purged-changenumber' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.618 NAME 'ds-task-purge-conflicts-historical-purge-completed-in-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.619 NAME 'ds-task-purge-conflicts-historical-purged-values-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.620 NAME 'ds-task-purge-conflicts-historical-first-purged-changenumber' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.627 NAME 'ds-cfg-max-ops-per-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.628 NAME 'ds-cfg-max-ops-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.1 NAME 'ds-cfg-crypt-password-storage-encryption-algorithm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.2 NAME 'ds-cfg-db-evictor-core-threads' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.3 NAME 'ds-cfg-db-evictor-max-threads' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.4 NAME 'ds-cfg-db-evictor-keep-alive' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.409 NAME 'ds-cfg-key-id' DESC 'cryptographic cipher-key unique identifier' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.410 NAME 'ds-cfg-key-compromised-time' DESC 'The time a cryptographic cipher key was suspected to be compromised' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.411 NAME 'ds-cfg-save-config-on-successful-startup' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.412 NAME 'ds-cfg-max-blocked-write-time-limit' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.413 NAME 'ds-cfg-ldif-directory' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.414 NAME 'ds-cfg-poll-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.415 NAME 'ds-cfg-plugin-order-post-synchronization-add' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.416 NAME 'ds-cfg-plugin-order-post-synchronization-delete' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.417 NAME 'ds-cfg-plugin-order-post-synchronization-modify' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.418 NAME 'ds-cfg-plugin-order-post-synchronization-modify-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.419 NAME 'ds-cfg-invoke-for-internal-operations' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.420 NAME 'ds-cfg-ldif-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.421 NAME 'ds-cfg-is-private-backend' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.422 NAME 'ds-cfg-isolation-policy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.423 NAME 'ds-cfg-cipher-transformation-name' DESC 'The name of a cryptographic cipher transformation consisting of an algorithm, a mode, and a padding specification, separated by slashes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.424 NAME 'ds-cfg-mac-algorithm-name' DESC 'The name of a cryptographic message authentication code (MAC) algorithm' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.425 NAME 'ds-cfg-key-length-bits' DESC 'The length of a cryptographic secret key' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.426 NAME 'ds-cfg-initialization-vector-length-bits' DESC 'The length of a cryptographic cipher initialization vector' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.427 NAME 'ds-cfg-symmetric-key' DESC 'A cryptographic secret-key wrapped by a public-key' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.428 NAME 'ds-cfg-digest-algorithm' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.429 NAME 'ds-cfg-mac-algorithm' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.430 NAME 'ds-cfg-mac-key-length' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.431 NAME 'ds-cfg-cipher-transformation' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.432 NAME 'ds-cfg-cipher-key-length' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.433 NAME 'ds-cfg-key-wrapping-transformation' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.434 NAME 'ds-base-dn-entry-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.437 NAME 'ds-cfg-workflow' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.439 NAME 'ds-cfg-workflow-element' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.440 NAME 'ds-cfg-workflow-configuration-mode' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.441 NAME 'ds-cfg-backend' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.442 NAME 'ds-cfg-etime-resolution' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.444 NAME 'ds-task-reset-generation-id-new-value' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.445 NAME 'ds-cfg-cache-level' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.446 NAME 'ds-cfg-entry-cache-preload' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.447 NAME 'ds-cfg-num-update-replay-threads' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.448 NAME 'ds-cfg-trap-port' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.449 NAME 'ds-cfg-community' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.450 NAME 'ds-cfg-allowed-manager' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.451 NAME 'ds-cfg-allowed-user' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.452 NAME 'ds-cfg-security-level' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.453 NAME 'ds-cfg-traps-community' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.454 NAME 'ds-cfg-traps-destination' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.455 NAME 'ds-cfg-security-agent-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.456 NAME 'ds-cfg-registered-mbean' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.457 NAME 'ds-cfg-opendmk-jarfile' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.458 NAME 'ds-task-export-include-operational-attributes' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.459 NAME 'ds-task-import-template-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.460 NAME 'ds-task-import-random-seed' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.596 NAME 'ds-task-import-thread-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.461 NAME 'ds-cfg-allowed-auth-method' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.462 NAME 'ds-cfg-allowed-protocol' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.463 NAME 'ds-cfg-allowed-bind-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.465 NAME 'ds-cfg-is-security-mandatory' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.467 NAME 'ds-cfg-priority' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.468 NAME 'ds-cfg-max-connections' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.469 NAME 'ds-cfg-max-connections-from-same-ip' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.470 NAME 'ds-cfg-max-ops-per-connection' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.471 NAME 'ds-cfg-max-concurrent-ops-per-connection' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.474 NAME 'ds-cfg-min-substring-length' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.478 NAME 'ds-cfg-assured-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.479 NAME 'ds-cfg-assured-sd-level' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.480 NAME 'ds-cfg-assured-timeout' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.481 NAME 'ds-cfg-group-id' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.482 NAME 'ds-cfg-referrals-url' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.483 NAME 'ds-cfg-degraded-status-threshold' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.484 NAME 'ds-cfg-allowed-operations' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.485 NAME 'ds-cfg-allowed-attributes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.486 NAME 'ds-cfg-prohibited-attributes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.487 NAME 'ds-cfg-allowed-search-scopes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.488 NAME 'ds-cfg-allowed-subtrees' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.489 NAME 'ds-cfg-prohibited-subtrees' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.499 NAME 'ds-cfg-matching-rule-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.500 NAME 'ds-cfg-collation' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.511 NAME 'ds-cfg-quality-of-protection' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.512 NAME 'ds-cfg-cipher-strength' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.513 NAME 'ds-cfg-principal-name' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.518 NAME 'ds-cfg-index-extensible-matching-rule' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.586 NAME 'ds-cfg-fractional-include' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.587 NAME 'ds-cfg-fractional-exclude' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.588 NAME 'ds-sync-fractional-include' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.589 NAME 'ds-sync-fractional-exclude' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.595 NAME 'ds-cfg-changetime-heartbeat-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.592 NAME 'ds-cfg-solve-conflicts' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.599 NAME 'ds-cfg-plugin-order-ldif-import-end' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.600 NAME 'ds-cfg-plugin-order-ldif-import-begin' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.601 NAME 'ds-cfg-ecl-include' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.7 NAME 'ds-cfg-ecl-include-for-deletes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.603 NAME 'ds-cfg-weight' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.605 NAME 'ds-cfg-monitoring-period' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.607 NAME 'ds-cfg-initialization-window-size' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.608 NAME 'ds-cfg-log-changenumber' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.609 NAME 'ds-cfg-plugin-order-subordinate-delete' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.610 NAME 'ds-cfg-disk-full-threshold' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.611 NAME 'ds-cfg-disk-low-threshold' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.612 NAME 'ds-cfg-index-filter-analyzer-enabled' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.613 NAME 'ds-cfg-max-psearches' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.614 NAME 'ds-cfg-conflicts-historical-purge-delay' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.615 NAME 'ds-task-purge-conflicts-historical-domain-dn' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.616 NAME 'ds-task-purge-conflicts-historical-maximum-duration' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.617 NAME 'ds-task-purge-conflicts-historical-last-purged-changenumber' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.618 NAME 'ds-task-purge-conflicts-historical-purge-completed-in-time' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.619 NAME 'ds-task-purge-conflicts-historical-purged-values-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.620 NAME 'ds-task-purge-conflicts-historical-first-purged-changenumber' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.627 NAME 'ds-cfg-max-ops-per-interval' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.628 NAME 'ds-cfg-max-ops-interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.1 NAME 'ds-cfg-crypt-password-storage-encryption-algorithm' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.2 NAME 'ds-cfg-db-evictor-core-threads' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.3 NAME 'ds-cfg-db-evictor-max-threads' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.4 NAME 'ds-cfg-db-evictor-keep-alive' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.5 NAME 'ds-cfg-min-character-sets' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.8 NAME 'ds-cfg-pwd-sync-policy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.9 NAME 'ds-cfg-samba-administrator-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.10 NAME 'ds-cfg-index-filter-analyzer-max-filters' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.11 NAME 'ds-cfg-subordinate-indexes-enabled' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.12 NAME 'ds-cfg-primary-remote-ldap-server' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.13 NAME 'ds-cfg-secondary-remote-ldap-server' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.14 NAME 'ds-cfg-mapping-policy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.15 NAME 'ds-cfg-mapped-attribute' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.16 NAME 'ds-cfg-mapped-search-bind-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.17 NAME 'ds-cfg-mapped-search-bind-password' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.18 NAME 'ds-cfg-mapped-search-base-dn' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.19 NAME 'ds-cfg-connection-timeout' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.20 NAME 'ds-cfg-mapped-search-bind-password-property' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.21 NAME 'ds-cfg-mapped-search-bind-password-environment-variable' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.22 NAME 'ds-cfg-mapped-search-bind-password-file' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.23 NAME 'ds-cfg-use-password-caching' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.24 NAME 'ds-cfg-cached-password-storage-scheme' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.25 NAME 'ds-cfg-cached-password-ttl' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.26 NAME 'ds-pta-cached-password' SYNTAX 1.3.6.1.4.1.26027.1.3.1 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.27 NAME 'ds-pta-cached-password-time' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.28 NAME 'ds-cfg-remove-inbound-attributes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.29 NAME 'ds-cfg-rename-inbound-attributes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.30 NAME 'ds-cfg-filtering-policy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.31 NAME 'ds-cfg-log-record-type' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.32 NAME 'ds-cfg-connection-client-address-equal-to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.33 NAME 'ds-cfg-connection-client-address-not-equal-to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.34 NAME 'ds-cfg-connection-protocol-equal-to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.35 NAME 'ds-cfg-connection-port-equal-to' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.36 NAME 'ds-cfg-user-dn-equal-to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.37 NAME 'ds-cfg-user-dn-not-equal-to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.38 NAME 'ds-cfg-user-is-member-of' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.39 NAME 'ds-cfg-user-is-not-member-of' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.40 NAME 'ds-cfg-request-target-dn-equal-to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.41 NAME 'ds-cfg-request-target-dn-not-equal-to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.42 NAME 'ds-cfg-response-result-code-equal-to' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.43 NAME 'ds-cfg-response-result-code-not-equal-to' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.44 NAME 'ds-cfg-response-etime-greater-than' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.45 NAME 'ds-cfg-response-etime-less-than' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.46 NAME 'ds-cfg-search-response-nentries-greater-than' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.47 NAME 'ds-cfg-search-response-nentries-less-than' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.48 NAME 'ds-cfg-search-response-is-indexed' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.49 NAME 'ds-cfg-log-format' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.50 NAME 'ds-cfg-log-record-time-format' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.51 NAME 'ds-cfg-log-control-oids' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.52 NAME 'ds-cfg-check-substrings' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.53 NAME 'ds-cfg-check-references' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.54 NAME 'ds-cfg-check-references-filter-criteria' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.55 NAME 'ds-cfg-check-references-scope-criteria' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.56 NAME 'ds-cfg-db-log-filecache-size' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.57 NAME 'ds-cfg-excluded-attribute' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.58 NAME 'ds-cfg-checksum-algorithm' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.60 NAME ( 'ds-pwp-password-expiration-time' 'pwdExpirationTime' ) EQUALITY generalizedTimeMatch ORDERING generalizedTimeOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.61 NAME 'ds-cfg-max-internal-buffer-size' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.62 NAME 'ds-cfg-character-set-ranges' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.63 NAME 'supportedTLSProtocols' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE dSAOperation X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.64 NAME 'supportedTLSCiphers' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE dSAOperation X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.65 NAME 'connectionsEstablished' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.66 NAME 'connectionsClosed' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.67 NAME 'bytesRead' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.68 NAME 'bytesWritten' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.69 NAME 'ldapMessagesRead' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.70 NAME 'ldapMessagesWritten' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.71 NAME 'operationsAbandoned' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.72 NAME 'operationsInitiated' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.73 NAME 'operationsCompleted' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.74 NAME 'abandonRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.75 NAME 'addRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.76 NAME 'addResponses' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.77 NAME 'bindRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.78 NAME 'bindResponses' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.79 NAME 'compareRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.80 NAME 'compareResponses' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.81 NAME 'deleteRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.82 NAME 'deleteResponses' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.83 NAME 'extendedRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.84 NAME 'extendedResponses' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.85 NAME 'modifyRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.86 NAME 'modifyResponses' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.87 NAME 'modifyDNRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.88 NAME 'modifyDNResponses' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.89 NAME 'searchRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.90 NAME 'searchOneRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.91 NAME 'searchSubRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.92 NAME 'searchResultEntries' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.93 NAME 'searchResultReferences' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.94 NAME 'searchResultsDone' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.95 NAME 'unbindRequests' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.96 NAME 'ds-mon-add-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.97 NAME 'ds-mon-resident-time-add-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.98 NAME 'ds-mon-search-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.99 NAME 'ds-mon-resident-time-search-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.100 NAME 'ds-mon-bind-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.101 NAME 'ds-mon-resident-time-bind-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.102 NAME 'ds-mon-unbind-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.103 NAME 'ds-mon-resident-time-unbind-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.104 NAME 'ds-mon-compare-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.105 NAME 'ds-mon-resident-time-compare-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.106 NAME 'ds-mon-delete-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.107 NAME 'ds-mon-resident-time-delete-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.108 NAME 'ds-mon-mod-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.109 NAME 'ds-mon-resident-time-mod-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.110 NAME 'ds-mon-moddn-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.111 NAME 'ds-mon-resident-time-moddn-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.112 NAME 'ds-mon-abandon-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.113 NAME 'ds-mon-resident-time-abandon-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.114 NAME 'ds-mon-extended-operations-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.115 NAME 'ds-mon-resident-time-extended-operations-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.116 NAME 'ds-task-rebuild-index-clear-degraded-state' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.117 NAME 'ds-cfg-pbkdf2-iterations' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.118 NAME 'ds-cfg-config-file' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.119 NAME 'ds-cfg-authentication-required' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.120 NAME 'ds-mon-http-requests-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.121 NAME 'ds-mon-resident-time-http-requests-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.122 NAME 'ds-mon-http-delete-requests-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.123 NAME 'ds-mon-resident-time-http-delete-requests-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.124 NAME 'ds-mon-http-get-requests-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.125 NAME 'ds-mon-resident-time-http-get-requests-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.126 NAME 'ds-mon-http-patch-requests-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.127 NAME 'ds-mon-resident-time-http-patch-requests-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.128 NAME 'ds-mon-http-post-requests-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.129 NAME 'ds-mon-resident-time-http-post-requests-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.130 NAME 'ds-mon-http-put-requests-total-count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.131 NAME 'ds-mon-resident-time-http-put-requests-total-time' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.143 NAME 'ds-cfg-source-address' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) attributeTypes: ( 2.16.840.1.113730.3.1.5 NAME 'changeNumber' DESC 'a number which uniquely identifies a change made to a directory entry' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 EQUALITY integerMatch ORDERING integerOrderingMatch SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 2.16.840.1.113730.3.1.6 NAME 'targetDN' DESC 'the DN of the entry which was modified' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 2.16.840.1.113730.3.1.7 NAME 'changeType' DESC 'the type of change made to an entry' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) @@ -731,12 +850,13 @@ attributeTypes: ( 2.16.840.1.113730.3.1.8 NAME 'changes' DESC 'a set of changes attributeTypes: ( 2.16.840.1.113730.3.1.9 NAME 'newRDN' DESC 'the new RDN of an entry which is the target of a modrdn operation' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 2.16.840.1.113730.3.1.10 NAME 'deleteOldRDN' DESC 'a flag which indicates if the old RDN should be retained as an attribute of the entry' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 2.16.840.1.113730.3.1.11 NAME 'newSuperior' DESC 'the new parent of an entry which is the target of a moddn operation' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) -attributeTypes: ( 2.16.840.1.113730.3.1.77 NAME 'changeTime' DESC 'the time when the change was processed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'Sun DSEE6 Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) +attributeTypes: ( 2.16.840.1.113730.3.1.77 NAME 'changeTime' DESC 'the time when the change was processed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'Sun Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.9.1.724 NAME 'replicaIdentifier' DESC 'the OpenDS replication domain server identifier for the change' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.9.1.725 NAME 'replicationCSN' DESC 'The OpenDS replication change number for the change' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.26027.1.1.590 NAME 'targetEntryUUID' DESC 'The OpenDS unique id of the entry targeted by the change' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.26027.1.1.590 NAME ( 'targetEntryUUID' 'targetUniqueID' ) DESC 'The OpenDS unique id of the entry targeted by the change' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.591 NAME 'changeLogCookie' DESC 'The OpenDS opaque cookie for the External Changelog' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 1.3.6.1.4.1.26027.1.1.604 NAME 'changeInitiatorsName' DESC 'The initiator user of the change' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.36733.2.1.1.6 NAME 'includedAttributes' DESC 'A set of attributes which were part of the entry before the changes were applied' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '03-changelog.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.6 NAME 'javaClassName' DESC 'Fully qualified name of distinguished Java class or interface' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.7 NAME 'javaCodebase' DESC 'URL(s) specifying the location of class definition' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.13 NAME 'javaClassNames' DESC 'Fully qualified Java class or interface name' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' ) @@ -886,12 +1006,58 @@ attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.6 NAME 'authenticationMethod' DESC 'Ide attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.7 NAME 'profileTTL' DESC 'Time to live, in seconds, before a profile is considered stale' EQUALITY integerMatch ORDERING integerOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.9 NAME 'attributeMap' DESC 'Attribute mappings used, required, or supported by an agent or service' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.10 NAME 'credentialLevel' DESC 'Identifies type of credentials either used, required, or supported by an agent or service' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) -attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.11 NAME 'objectclassMap' DESC 'Object class mappings used, required, or supported by an agent or service' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.11 NAME 'objectclassMap' DESC 'Object class mappings used, required, or supported by an agent or service' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.12 NAME 'defaultSearchScope' DESC 'Default scope used when performing a search' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.13 NAME 'serviceCredentialLevel' DESC 'Specifies the type of credentials either used, required, or supported by a specific service' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.14 NAME 'serviceSearchDescriptor' DESC 'Specifies search descriptors required, used, or supported by a particular service or agent' EQUALITY caseExactMatch SUBSTR caseExactSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.15 NAME 'serviceAuthenticationMethod' DESC 'Specifies types authentication methods either used, required, or supported by a particular service' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) attributeTypes: ( 1.3.6.1.4.1.11.1.3.1.1.16 NAME 'dereferenceAliases' DESC 'Specifies if a service or agent either requires, supports, or uses dereferencing of aliases.' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.24 NAME 'sambaLMPassword' DESC 'LanManager Password' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{32} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.25 NAME 'sambaNTPassword' DESC 'MD4 hash of the unicode password' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{32} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.26 NAME 'sambaAcctFlags' DESC 'Account Flags' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{16} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.27 NAME 'sambaPwdLastSet' DESC 'Timestamp of the last password update' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.28 NAME 'sambaPwdCanChange' DESC 'Timestamp of when the user is allowed to update the password' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.29 NAME 'sambaPwdMustChange' DESC 'Timestamp of when the password will expire' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.30 NAME 'sambaLogonTime' DESC 'Timestamp of last logon' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.31 NAME 'sambaLogoffTime' DESC 'Timestamp of last logoff' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.32 NAME 'sambaKickoffTime' DESC 'Timestamp of when the user will be logged off automatically' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.48 NAME 'sambaBadPasswordCount' DESC 'Bad password attempt count' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.49 NAME 'sambaBadPasswordTime' DESC 'Time of the last bad password attempt' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.55 NAME 'sambaLogonHours' DESC 'Logon Hours' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.33 NAME 'sambaHomeDrive' DESC 'Driver letter of home directory mapping' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{4} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.34 NAME 'sambaLogonScript' DESC 'Logon script path' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.35 NAME 'sambaProfilePath' DESC 'Roaming profile path' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.36 NAME 'sambaUserWorkstations' DESC 'List of user workstations the user is allowed to logon to' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.37 NAME 'sambaHomePath' DESC 'Home directory UNC path' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.38 NAME 'sambaDomainName' DESC 'Windows NT domain to which the user belongs' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.47 NAME 'sambaMungedDial' DESC 'Base64 encoded user parameter string' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{1050} X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.54 NAME 'sambaPasswordHistory' DESC 'Concatenated MD4 hashes of the unicode passwords used on this account' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{1024} X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.20 NAME 'sambaSID' DESC 'Security ID' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{64} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.23 NAME 'sambaPrimaryGroupSID' DESC 'Primary Group Security ID' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{64} SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.51 NAME 'sambaSIDList' DESC 'Security ID List' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{64} X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.19 NAME 'sambaGroupType' DESC 'NT Group Type' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.21 NAME 'sambaNextUserRid' DESC 'Next NT rid to give our for users' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.22 NAME 'sambaNextGroupRid' DESC 'Next NT rid to give out for groups' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.39 NAME 'sambaNextRid' DESC 'Next NT rid to give out for anything' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.40 NAME 'sambaAlgorithmicRidBase' DESC 'Base at which the samba RID generation algorithm should operate' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.41 NAME 'sambaShareName' DESC 'Share Name' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.42 NAME 'sambaOptionName' DESC 'Option Name' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.43 NAME 'sambaBoolOption' DESC 'A boolean option' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.44 NAME 'sambaIntegerOption' DESC 'An integer option' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.45 NAME 'sambaStringOption' DESC 'A string option' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.46 NAME 'sambaStringListOption' DESC 'A string list option' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.52 NAME 'sambaPrivilegeList' DESC 'Privileges List' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{64} X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.53 NAME 'sambaTrustFlags' DESC 'Trust Password Flags' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.58 NAME 'sambaMinPwdLength' DESC 'Minimal password length (default: 5)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.59 NAME 'sambaPwdHistoryLength' DESC 'Length of Password History Entries (default: 0 => off)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.60 NAME 'sambaLogonToChgPwd' DESC 'Force Users to logon for password change (default: 0 => off, 2 => on)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.61 NAME 'sambaMaxPwdAge' DESC 'Maximum password age, in seconds (default: -1 => never expire passwords)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.62 NAME 'sambaMinPwdAge' DESC 'Minimum password age, in seconds (default: 0 => allow immediate password change)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.63 NAME 'sambaLockoutDuration' DESC 'Lockout duration in minutes (default: 30, -1 => forever)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.64 NAME 'sambaLockoutObservationWindow' DESC 'Reset time after lockout in minutes (default: 30)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.65 NAME 'sambaLockoutThreshold' DESC 'Lockout users after bad logon attempts (default: 0 => off)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.66 NAME 'sambaForceLogoff' DESC 'Disconnect Users outside logon hours (default: -1 => off, 0 => on)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) +attributeTypes: ( 1.3.6.1.4.1.7165.2.1.67 NAME 'sambaRefuseMachinePwdChange' DESC 'Allow Machine Password changes (default: 0 => off)' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-SCHEMA-FILE '05-samba.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.1.1.12 NAME 'nisNetIdUser' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.1.1.13 NAME 'nisNetIdGroup' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) attributeTypes: ( 1.3.6.1.4.1.42.2.27.1.1.14 NAME 'nisNetIdHost' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) @@ -957,6 +1123,9 @@ objectClasses: ( 2.5.6.17 NAME 'groupOfUniqueNames' SUP top STRUCTURAL MUST cn M objectClasses: ( 2.5.6.18 NAME 'userSecurityInformation' SUP top AUXILIARY MAY ( supportedAlgorithms ) X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' ) objectClasses: ( 2.5.6.19 NAME 'cRLDistributionPoint' SUP top STRUCTURAL MUST cn MAY ( certificateRevocationList $ authorityRevocationList $ deltaRevocationList ) X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' ) objectClasses: ( 2.5.6.20 NAME 'dmd' SUP top STRUCTURAL MUST dmdName MAY ( userPassword $ searchGuide $ seeAlso $ businessCategory $ x121Address $ registeredAddress $ destinationIndicator $ preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $ telephoneNumber $ internationaliSDNNumber $ facsimileTelephoneNumber $ street $ postOfficeBox $ postalCode $ postalAddress $ physicalDeliveryOfficeName $ st $ l $ description ) X-ORIGIN 'RFC 2256' X-SCHEMA-FILE '00-core.ldif' ) +objectClasses: ( 2.5.6.21 NAME 'pkiUser' DESC 'X.509 PKI User' SUP top AUXILIARY MAY userCertificate X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' ) +objectClasses: ( 2.5.6.22 NAME 'pkiCA' DESC 'X.509 PKI Certificate Authority' SUP top AUXILIARY MAY ( cACertificate $ certificateRevocationList $ authorityRevocationList $ crossCertificatePair ) X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' ) +objectClasses: ( 2.5.6.23 NAME 'deltaCRL' DESC 'X.509 delta CRL' SUP top AUXILIARY MAY deltaRevocationList X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' ) objectClasses: ( 1.3.6.1.4.1.1466.101.120.111 NAME 'extensibleObject' SUP top AUXILIARY X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' ) objectClasses: ( 2.5.20.1 NAME 'subschema' AUXILIARY MAY ( dITStructureRules $ nameForms $ ditContentRules $ objectClasses $ attributeTypes $ matchingRules $ matchingRuleUse ) X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' ) objectClasses: ( 0.9.2342.19200300.100.4.5 NAME 'account' SUP top STRUCTURAL MUST uid MAY ( description $ seeAlso $ l $ o $ ou $ host ) X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' ) @@ -996,7 +1165,7 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.2 NAME 'ds-cfg-alert-handler' SUP top STR objectClasses: ( 1.3.6.1.4.1.26027.1.2.3 NAME 'ds-cfg-attribute-syntax' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.4 NAME 'ds-cfg-telephone-number-attribute-syntax' SUP ds-cfg-attribute-syntax STRUCTURAL MAY ds-cfg-strict-format X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.5 NAME 'ds-cfg-backend' SUP top STRUCTURAL MUST ( ds-cfg-backend-id $ ds-cfg-base-dn $ ds-cfg-java-class $ ds-cfg-enabled $ ds-cfg-writability-mode ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.6 NAME 'ds-cfg-local-db-backend' SUP ds-cfg-backend STRUCTURAL MUST ds-cfg-db-directory MAY ( ds-cfg-index-entry-limit $ ds-cfg-preload-time-limit $ ds-cfg-import-thread-count $ ds-cfg-import-queue-size $ ds-cfg-entries-compressed $ ds-cfg-db-directory-permissions $ ds-cfg-db-cache-percent $ ds-cfg-db-cache-size $ ds-cfg-db-txn-no-sync $ ds-cfg-db-txn-write-no-sync $ ds-cfg-db-run-cleaner $ ds-cfg-db-cleaner-min-utilization $ ds-cfg-db-evictor-lru-only $ ds-cfg-db-evictor-core-threads $ ds-cfg-db-evictor-max-threads $ ds-cfg-db-evictor-keep-alive $ ds-cfg-db-evictor-nodes-per-scan $ ds-cfg-db-log-file-max $ ds-cfg-db-logging-file-handler-on $ ds-cfg-db-logging-level $ ds-cfg-db-checkpointer-bytes-interval $ ds-cfg-db-checkpointer-wakeup-interval $ ds-cfg-db-num-lock-tables $ ds-cfg-db-num-cleaner-threads $ ds-cfg-compact-encoding $ ds-cfg-je-property $ ds-cfg-disk-full-threshold $ ds-cfg-disk-low-threshold $ ds-cfg-index-filter-analyzer-enabled $ ds-cfg-max-entries ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.6 NAME 'ds-cfg-local-db-backend' SUP ds-cfg-backend STRUCTURAL MUST ds-cfg-db-directory MAY ( ds-cfg-index-entry-limit $ ds-cfg-preload-time-limit $ ds-cfg-import-thread-count $ ds-cfg-import-queue-size $ ds-cfg-entries-compressed $ ds-cfg-db-directory-permissions $ ds-cfg-db-cache-percent $ ds-cfg-db-cache-size $ ds-cfg-db-txn-no-sync $ ds-cfg-db-txn-write-no-sync $ ds-cfg-db-run-cleaner $ ds-cfg-db-cleaner-min-utilization $ ds-cfg-db-evictor-lru-only $ ds-cfg-db-evictor-core-threads $ ds-cfg-db-evictor-max-threads $ ds-cfg-db-evictor-keep-alive $ ds-cfg-db-evictor-nodes-per-scan $ ds-cfg-db-log-file-max $ ds-cfg-db-log-filecache-size $ ds-cfg-db-logging-file-handler-on $ ds-cfg-db-logging-level $ ds-cfg-db-checkpointer-bytes-interval $ ds-cfg-db-checkpointer-wakeup-interval $ ds-cfg-db-num-lock-tables $ ds-cfg-db-num-cleaner-threads $ ds-cfg-compact-encoding $ ds-cfg-je-property $ ds-cfg-disk-full-threshold $ ds-cfg-disk-low-threshold $ ds-cfg-index-filter-analyzer-enabled $ ds-cfg-index-filter-analyzer-max-filters $ ds-cfg-subordinate-indexes-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.7 NAME 'ds-cfg-local-db-index' SUP top STRUCTURAL MUST ( ds-cfg-attribute $ ds-cfg-index-type ) MAY ( ds-cfg-index-entry-limit $ ds-cfg-substring-length $ ds-cfg-index-extensible-matching-rule ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.8 NAME 'ds-cfg-schema-backend' SUP ds-cfg-backend STRUCTURAL MAY ( ds-cfg-schema-entry-dn $ ds-cfg-show-all-attributes ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.9 NAME 'ds-cfg-task-backend' SUP ds-cfg-backend STRUCTURAL MAY ( ds-cfg-task-backing-file $ ds-cfg-task-retention-time $ ds-cfg-notification-sender-address ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1004,6 +1173,7 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.10 NAME 'ds-cfg-branch' SUP top STRUCTURA objectClasses: ( 1.3.6.1.4.1.26027.1.2.11 NAME 'ds-cfg-certificate-mapper' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.12 NAME 'ds-cfg-connection-handler' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) MAY ( ds-cfg-allowed-client $ ds-cfg-denied-client ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.13 NAME 'ds-cfg-ldap-connection-handler' SUP ds-cfg-connection-handler STRUCTURAL MUST ds-cfg-listen-port MAY ( ds-cfg-listen-address $ ds-cfg-allow-ldap-v2 $ ds-cfg-keep-stats $ ds-cfg-use-tcp-keep-alive $ ds-cfg-use-tcp-no-delay $ ds-cfg-allow-tcp-reuse-address $ ds-cfg-send-rejection-notice $ ds-cfg-max-request-size $ ds-cfg-num-request-handlers $ ds-cfg-allow-start-tls $ ds-cfg-use-ssl $ ds-cfg-ssl-client-auth-policy $ ds-cfg-ssl-cert-nickname $ ds-cfg-accept-backlog $ ds-cfg-key-manager-provider $ ds-cfg-trust-manager-provider $ ds-cfg-ssl-protocol $ ds-cfg-ssl-cipher-suite $ ds-cfg-max-blocked-write-time-limit $ ds-cfg-buffer-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.15 NAME 'ds-cfg-http-connection-handler' SUP ds-cfg-connection-handler STRUCTURAL MUST ds-cfg-listen-port MAY ( ds-cfg-listen-address $ ds-cfg-keep-stats $ ds-cfg-use-tcp-keep-alive $ ds-cfg-use-tcp-no-delay $ ds-cfg-allow-tcp-reuse-address $ ds-cfg-max-request-size $ ds-cfg-num-request-handlers $ ds-cfg-use-ssl $ ds-cfg-ssl-client-auth-policy $ ds-cfg-ssl-cert-nickname $ ds-cfg-accept-backlog $ ds-cfg-key-manager-provider $ ds-cfg-trust-manager-provider $ ds-cfg-ssl-protocol $ ds-cfg-ssl-cipher-suite $ ds-cfg-max-blocked-write-time-limit $ ds-cfg-buffer-size $ ds-cfg-config-file $ ds-cfg-authentication-required $ ds-cfg-max-concurrent-ops-per-connection ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.14 NAME 'ds-cfg-entry-cache' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled $ ds-cfg-cache-level ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.15 NAME 'ds-cfg-fifo-entry-cache' SUP ds-cfg-entry-cache STRUCTURAL MAY ( ds-cfg-max-entries $ ds-cfg-max-memory-percent $ ds-cfg-lock-timeout $ ds-cfg-exclude-filter $ ds-cfg-include-filter ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.16 NAME 'ds-cfg-soft-reference-entry-cache' SUP ds-cfg-entry-cache STRUCTURAL MAY ( ds-cfg-lock-timeout $ ds-cfg-exclude-filter $ ds-cfg-include-filter ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1012,10 +1182,12 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.18 NAME 'ds-cfg-key-manager-provider' SUP objectClasses: ( 1.3.6.1.4.1.26027.1.2.19 NAME 'ds-cfg-file-based-key-manager-provider' SUP ds-cfg-key-manager-provider STRUCTURAL MUST ds-cfg-key-store-file MAY ( ds-cfg-key-store-type $ ds-cfg-key-store-pin $ ds-cfg-key-store-pin-property $ ds-cfg-key-store-pin-environment-variable $ ds-cfg-key-store-pin-file ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.20 NAME 'ds-cfg-pkcs11-key-manager-provider' SUP ds-cfg-key-manager-provider STRUCTURAL MAY ( ds-cfg-key-store-pin $ ds-cfg-key-store-pin-property $ ds-cfg-key-store-pin-environment-variable $ ds-cfg-key-store-pin-file ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.21 NAME 'ds-cfg-log-publisher' SUP top STRUCTURAL MUST ( cn $ ds-cfg-enabled $ ds-cfg-java-class ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.22 NAME 'ds-cfg-access-log-publisher' SUP ds-cfg-log-publisher STRUCTURAL MAY ( ds-cfg-suppress-internal-operations $ ds-cfg-suppress-synchronization-operations ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.22 NAME 'ds-cfg-access-log-publisher' SUP ds-cfg-log-publisher STRUCTURAL MAY ( ds-cfg-filtering-policy $ ds-cfg-suppress-internal-operations $ ds-cfg-suppress-synchronization-operations ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.16 NAME 'ds-cfg-http-access-log-publisher' SUP ds-cfg-log-publisher STRUCTURAL X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.23 NAME 'ds-cfg-error-log-publisher' SUP ds-cfg-log-publisher STRUCTURAL MAY ( ds-cfg-default-severity $ ds-cfg-override-severity ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.24 NAME 'ds-cfg-debug-log-publisher' SUP ds-cfg-log-publisher STRUCTURAL MUST ds-cfg-default-debug-level MAY ( ds-cfg-default-debug-category $ ds-cfg-default-omit-method-entry-arguments $ ds-cfg-default-omit-method-return-value $ ds-cfg-default-include-throwable-cause $ ds-cfg-default-throwable-stack-frames ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.25 NAME 'ds-cfg-file-based-access-log-publisher' SUP ds-cfg-access-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.25 NAME 'ds-cfg-file-based-access-log-publisher' SUP ds-cfg-access-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size $ ds-cfg-log-format $ ds-cfg-log-record-time-format $ ds-cfg-log-control-oids ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.17 NAME 'ds-cfg-file-based-http-access-log-publisher' SUP ds-cfg-http-access-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size $ ds-cfg-log-format $ ds-cfg-log-record-time-format ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.26 NAME 'ds-cfg-file-based-debug-log-publisher' SUP ds-cfg-debug-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.27 NAME 'ds-cfg-file-based-error-log-publisher' SUP ds-cfg-error-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.28 NAME 'ds-cfg-matching-rule' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1029,7 +1201,7 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.35 NAME 'ds-cfg-password-validator' SUP t objectClasses: ( 1.3.6.1.4.1.26027.1.2.36 NAME 'ds-cfg-plugin' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled $ ds-cfg-plugin-type ) MAY ds-cfg-invoke-for-internal-operations X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.37 NAME 'ds-cfg-profiler-plugin' SUP ds-cfg-plugin STRUCTURAL MAY ( ds-cfg-enable-profiling-on-startup $ ds-cfg-profile-directory $ ds-cfg-profile-sample-interval $ ds-cfg-profile-action ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.198 NAME 'ds-recurring-task' SUP top AUXILIARY MUST ( ds-recurring-task-schedule $ ds-recurring-task-id ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.39 NAME 'ds-cfg-root-config' SUP top STRUCTURAL MUST ( cn $ ds-cfg-default-password-policy ) MAY ( ds-cfg-check-schema $ ds-cfg-add-missing-rdn-attributes $ ds-cfg-allow-attribute-name-exceptions $ ds-cfg-invalid-attribute-syntax-behavior $ ds-cfg-server-error-result-code $ ds-cfg-single-structural-objectclass-behavior $ ds-cfg-notify-abandoned-operations $ ds-cfg-size-limit $ ds-cfg-time-limit $ ds-cfg-proxied-authorization-identity-mapper $ ds-cfg-writability-mode $ ds-cfg-reject-unauthenticated-requests $ ds-cfg-bind-with-dn-requires-password $ ds-cfg-lookthrough-limit $ ds-cfg-smtp-server $ ds-cfg-allowed-task $ ds-cfg-disabled-privilege $ ds-cfg-return-bind-error-messages $ ds-cfg-idle-time-limit $ ds-cfg-workflow-configuration-mode $ ds-cfg-save-config-on-successful-startup $ ds-cfg-etime-resolution $ ds-cfg-entry-cache-preload $ ds-cfg-max-allowed-client-connections $ ds-cfg-max-psearches ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.39 NAME 'ds-cfg-root-config' SUP top STRUCTURAL MUST ( cn $ ds-cfg-default-password-policy ) MAY ( ds-cfg-check-schema $ ds-cfg-add-missing-rdn-attributes $ ds-cfg-allow-attribute-name-exceptions $ ds-cfg-invalid-attribute-syntax-behavior $ ds-cfg-server-error-result-code $ ds-cfg-single-structural-objectclass-behavior $ ds-cfg-notify-abandoned-operations $ ds-cfg-size-limit $ ds-cfg-time-limit $ ds-cfg-proxied-authorization-identity-mapper $ ds-cfg-writability-mode $ ds-cfg-reject-unauthenticated-requests $ ds-cfg-bind-with-dn-requires-password $ ds-cfg-lookthrough-limit $ ds-cfg-smtp-server $ ds-cfg-allowed-task $ ds-cfg-disabled-privilege $ ds-cfg-return-bind-error-messages $ ds-cfg-idle-time-limit $ ds-cfg-workflow-configuration-mode $ ds-cfg-save-config-on-successful-startup $ ds-cfg-etime-resolution $ ds-cfg-entry-cache-preload $ ds-cfg-max-allowed-client-connections $ ds-cfg-max-psearches $ ds-cfg-max-internal-buffer-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.40 NAME 'ds-cfg-root-dn-user' SUP top AUXILIARY MAY ds-cfg-alternate-bind-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.41 NAME 'ds-cfg-root-dse-backend' SUP top STRUCTURAL MUST cn MAY ( ds-cfg-subordinate-base-dn $ ds-cfg-show-all-attributes ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.42 NAME 'ds-cfg-sasl-mechanism-handler' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1047,14 +1219,15 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.53 NAME 'ds-root-dse' SUP top STRUCTURAL objectClasses: ( 1.3.6.1.4.1.26027.1.2.54 NAME 'ds-cfg-identity-mapper' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.55 NAME 'ds-cfg-exact-match-identity-mapper' SUP ds-cfg-identity-mapper STRUCTURAL MUST ds-cfg-match-attribute MAY ds-cfg-match-base-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.56 NAME 'ds-cfg-synchronization-provider' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.57 NAME 'ds-cfg-replication-domain' SUP top STRUCTURAL MUST ( ds-cfg-replication-server $ ds-cfg-server-id $ ds-cfg-base-dn ) MAY ( cn $ ds-cfg-receive-status $ ds-cfg-max-receive-queue $ ds-cfg-max-receive-delay $ ds-cfg-max-send-queue $ ds-cfg-max-send-delay $ ds-cfg-window-size $ ds-cfg-heartbeat-interval $ ds-cfg-isolation-policy $ ds-cfg-assured-type $ ds-cfg-assured-sd-level $ ds-cfg-assured-timeout $ ds-cfg-group-id $ ds-cfg-referrals-url $ ds-cfg-fractional-exclude $ ds-cfg-fractional-include $ ds-cfg-solve-conflicts $ ds-cfg-conflicts-historical-purge-delay $ ds-cfg-changetime-heartbeat-interval $ ds-cfg-log-changenumber $ ds-cfg-initialization-window-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.57 NAME 'ds-cfg-replication-domain' SUP top STRUCTURAL MUST ( ds-cfg-replication-server $ ds-cfg-server-id $ ds-cfg-base-dn ) MAY ( cn $ ds-cfg-receive-status $ ds-cfg-max-receive-queue $ ds-cfg-max-receive-delay $ ds-cfg-max-send-queue $ ds-cfg-max-send-delay $ ds-cfg-window-size $ ds-cfg-heartbeat-interval $ ds-cfg-isolation-policy $ ds-cfg-assured-type $ ds-cfg-assured-sd-level $ ds-cfg-assured-timeout $ ds-cfg-group-id $ ds-cfg-referrals-url $ ds-cfg-fractional-exclude $ ds-cfg-fractional-include $ ds-cfg-solve-conflicts $ ds-cfg-conflicts-historical-purge-delay $ ds-cfg-changetime-heartbeat-interval $ ds-cfg-log-changenumber $ ds-cfg-initialization-window-size $ ds-cfg-source-address ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.58 NAME 'ds-cfg-length-based-password-validator' SUP ds-cfg-password-validator STRUCTURAL MAY ( ds-cfg-max-password-length $ ds-cfg-min-password-length ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.59 NAME 'ds-cfg-password-generator' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.60 NAME 'ds-cfg-random-password-generator' SUP ds-cfg-password-generator STRUCTURAL MUST ( ds-cfg-password-character-set $ ds-cfg-password-format ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.61 NAME 'ds-cfg-password-policy' SUP top STRUCTURAL MUST ( cn $ ds-cfg-password-attribute $ ds-cfg-default-password-storage-scheme ) MAY ( ds-cfg-account-status-notification-handler $ ds-cfg-allow-expired-password-changes $ ds-cfg-allow-multiple-password-values $ ds-cfg-allow-pre-encoded-passwords $ ds-cfg-allow-user-password-changes $ ds-cfg-deprecated-password-storage-scheme $ ds-cfg-expire-passwords-without-warning $ ds-cfg-force-change-on-add $ ds-cfg-force-change-on-reset $ ds-cfg-grace-login-count $ ds-cfg-idle-lockout-interval $ ds-cfg-last-login-time-attribute $ ds-cfg-last-login-time-format $ ds-cfg-lockout-duration $ ds-cfg-lockout-failure-count $ ds-cfg-lockout-failure-expiration-interval $ ds-cfg-max-password-age $ ds-cfg-max-password-reset-age $ ds-cfg-min-password-age $ ds-cfg-password-change-requires-current-password $ ds-cfg-password-expiration-warning-interval $ ds-cfg-password-generator $ ds-cfg-password-validator $ ds-cfg-previous-last-login-time-format $ ds-cfg-require-change-by-time $ ds-cfg-require-secure-authentication $ ds-cfg-require-secure-password-changes $ ds-cfg-skip-validation-for-administrators $ ds-cfg-state-update-failure-policy $ ds-cfg-password-history-count $ ds-cfg-password-history-duration ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.3 NAME 'ds-cfg-authentication-policy' SUP top STRUCTURAL MUST ( cn ) MAY ( ds-cfg-java-class ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.61 NAME 'ds-cfg-password-policy' SUP ds-cfg-authentication-policy STRUCTURAL MUST ( ds-cfg-password-attribute $ ds-cfg-default-password-storage-scheme ) MAY ( ds-cfg-account-status-notification-handler $ ds-cfg-allow-expired-password-changes $ ds-cfg-allow-multiple-password-values $ ds-cfg-allow-pre-encoded-passwords $ ds-cfg-allow-user-password-changes $ ds-cfg-deprecated-password-storage-scheme $ ds-cfg-expire-passwords-without-warning $ ds-cfg-force-change-on-add $ ds-cfg-force-change-on-reset $ ds-cfg-grace-login-count $ ds-cfg-idle-lockout-interval $ ds-cfg-last-login-time-attribute $ ds-cfg-last-login-time-format $ ds-cfg-lockout-duration $ ds-cfg-lockout-failure-count $ ds-cfg-lockout-failure-expiration-interval $ ds-cfg-max-password-age $ ds-cfg-max-password-reset-age $ ds-cfg-min-password-age $ ds-cfg-password-change-requires-current-password $ ds-cfg-password-expiration-warning-interval $ ds-cfg-password-generator $ ds-cfg-password-validator $ ds-cfg-previous-last-login-time-format $ ds-cfg-require-change-by-time $ ds-cfg-require-secure-authentication $ ds-cfg-require-secure-password-changes $ ds-cfg-skip-validation-for-administrators $ ds-cfg-state-update-failure-policy $ ds-cfg-password-history-count $ ds-cfg-password-history-duration ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.62 NAME 'ds-cfg-jmx-connection-handler' SUP ds-cfg-connection-handler STRUCTURAL MUST ds-cfg-listen-port MAY ( ds-cfg-listen-address $ ds-cfg-ssl-cert-nickname $ ds-cfg-use-ssl $ ds-cfg-key-manager-provider ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.63 NAME 'ds-task-import' SUP ds-task STRUCTURAL MAY ( ds-task-import-append $ ds-task-import-replace-existing $ ds-task-import-include-branch $ ds-task-import-exclude-branch $ ds-task-import-include-attribute $ ds-task-import-exclude-attribute $ ds-task-import-include-filter $ ds-task-import-exclude-filter $ ds-task-import-ldif-file $ ds-task-import-template-file $ ds-task-import-random-seed $ ds-task-import-reject-file $ ds-task-import-overwrite-rejects $ ds-task-import-skip-file $ ds-task-import-skip-schema-validation $ ds-task-import-skip-dn-validation $ ds-task-import-tmp-directory $ ds-task-import-is-compressed $ ds-task-import-is-encrypted $ ds-task-import-backend-id $ ds-task-import-thread-count $ ds-task-import-clear-backend ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.64 NAME 'ds-cfg-replication-server' SUP top STRUCTURAL MUST ( ds-cfg-replication-server-id $ ds-cfg-replication-port ) MAY ( ds-cfg-replication-server $ cn $ ds-cfg-window-size $ ds-cfg-queue-size $ ds-cfg-replication-db-directory $ ds-cfg-replication-purge-delay $ ds-cfg-group-id $ ds-cfg-assured-timeout $ ds-cfg-degraded-status-threshold $ ds-cfg-weight $ ds-cfg-monitoring-period) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.64 NAME 'ds-cfg-replication-server' SUP top STRUCTURAL MUST ( ds-cfg-replication-server-id $ ds-cfg-replication-port ) MAY ( ds-cfg-replication-server $ cn $ ds-cfg-window-size $ ds-cfg-queue-size $ ds-cfg-replication-db-directory $ ds-cfg-replication-purge-delay $ ds-cfg-group-id $ ds-cfg-assured-timeout $ ds-cfg-degraded-status-threshold $ ds-cfg-weight $ ds-cfg-monitoring-period $ ds-cfg-source-address ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.65 NAME 'ds-backup-directory' SUP top STRUCTURAL MUST ( ds-backup-directory-path $ ds-backup-backend-dn ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.66 NAME 'ds-backup-info' SUP top STRUCTURAL MUST ( ds-backup-id $ ds-backup-directory-path ) MAY ( ds-backup-compressed $ ds-backup-date $ ds-backup-dependency $ ds-backup-encrypted $ ds-backup-incremental $ ds-backup-signed-hash $ ds-backup-unsigned-hash ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.67 NAME 'ds-cfg-backup-backend' SUP ds-cfg-backend STRUCTURAL MAY ds-cfg-backup-directory X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1080,14 +1253,14 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.86 NAME 'ds-cfg-dsee-compat-access-contro objectClasses: ( 1.3.6.1.4.1.26027.1.2.87 NAME 'ds-cfg-similarity-based-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ds-cfg-min-password-difference X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.88 NAME 'ds-cfg-unique-characters-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ( ds-cfg-min-unique-characters $ ds-cfg-case-sensitive-validation ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.89 NAME 'ds-cfg-repeated-characters-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ( ds-cfg-max-consecutive-length $ ds-cfg-case-sensitive-validation ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.90 NAME 'ds-cfg-virtual-attribute' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled $ ds-cfg-attribute-type ) MAY ( ds-cfg-base-dn $ ds-cfg-group-dn $ ds-cfg-filter $ ds-cfg-conflict-behavior ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.90 NAME 'ds-cfg-virtual-attribute' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled $ ds-cfg-attribute-type ) MAY ( ds-cfg-base-dn $ ds-cfg-scope $ ds-cfg-group-dn $ ds-cfg-filter $ ds-cfg-conflict-behavior ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.91 NAME 'ds-task-initialize-from-remote-replica' SUP ds-task STRUCTURAL MUST ( ds-task-initialize-domain-dn $ ds-task-initialize-replica-server-id ) MAY ( ds-task-processed-entry-count $ ds-task-unprocessed-entry-count ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.92 NAME 'ds-task-initialize-remote-replica' SUP ds-task STRUCTURAL MUST ( ds-task-initialize-domain-dn $ ds-task-initialize-replica-server-id ) MAY ( ds-task-processed-entry-count $ ds-task-unprocessed-entry-count ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.93 NAME 'ds-cfg-replication-synchronization-provider' SUP ds-cfg-synchronization-provider STRUCTURAL MAY ( ds-cfg-num-update-replay-threads ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.94 NAME 'ds-cfg-dictionary-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ( ds-cfg-dictionary-file $ ds-cfg-case-sensitive-validation $ ds-cfg-test-reversed-password ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.95 NAME 'ds-cfg-attribute-value-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ds-cfg-test-reversed-password MAY ds-cfg-match-attribute X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.96 NAME 'ds-cfg-character-set-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ( ds-cfg-character-set $ ds-cfg-allow-unclassified-characters ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.97 NAME 'ds-task-rebuild' SUP ds-task STRUCTURAL MUST ( ds-task-rebuild-base-dn $ ds-task-rebuild-index ) MAY ds-task-rebuild-tmp-directory X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.93 NAME 'ds-cfg-replication-synchronization-provider' SUP ds-cfg-synchronization-provider STRUCTURAL MAY ( ds-cfg-num-update-replay-threads $ ds-cfg-connection-timeout ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.94 NAME 'ds-cfg-dictionary-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ( ds-cfg-dictionary-file $ ds-cfg-case-sensitive-validation $ ds-cfg-test-reversed-password ) MAY ( ds-cfg-check-substrings $ ds-cfg-min-substring-length ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.95 NAME 'ds-cfg-attribute-value-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ds-cfg-test-reversed-password MAY ( ds-cfg-match-attribute $ ds-cfg-check-substrings $ ds-cfg-min-substring-length ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.96 NAME 'ds-cfg-character-set-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ds-cfg-allow-unclassified-characters MAY ( ds-cfg-min-character-sets $ ds-cfg-character-set $ ds-cfg-character-set-ranges ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.97 NAME 'ds-task-rebuild' SUP ds-task STRUCTURAL MUST ( ds-task-rebuild-base-dn $ ds-task-rebuild-index ) MAY ( ds-task-rebuild-tmp-directory $ ds-task-rebuild-index-clear-degraded-state ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.98 NAME 'ds-virtual-static-group' SUP top AUXILIARY MUST ds-target-group-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.99 NAME 'ds-cfg-user-defined-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL MUST ds-cfg-value X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.100 NAME 'ds-cfg-debug-target' SUP top STRUCTURAL MUST ( ds-cfg-debug-scope $ ds-cfg-debug-level ) MAY ( ds-cfg-debug-category $ ds-cfg-omit-method-entry-arguments $ ds-cfg-omit-method-return-value $ ds-cfg-include-throwable-cause $ ds-cfg-throwable-stack-frames ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1109,7 +1282,7 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.115 NAME 'ds-cfg-smtp-alert-handler' SUP objectClasses: ( 1.3.6.1.4.1.26027.1.2.116 NAME 'ds-task-disconnect' SUP ds-task STRUCTURAL MUST ds-task-disconnect-connection-id MAY ( ds-task-disconnect-message $ ds-task-disconnect-notify-client ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.117 NAME 'ds-cfg-unique-attribute-plugin' SUP ds-cfg-plugin STRUCTURAL MUST ds-cfg-type MAY ds-cfg-base-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.118 NAME 'ds-cfg-regular-expression-identity-mapper' SUP ds-cfg-identity-mapper STRUCTURAL MUST ( ds-cfg-match-attribute $ ds-cfg-match-pattern ) MAY ( ds-cfg-match-base-dn $ ds-cfg-replace-pattern ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.119 NAME 'ds-cfg-referential-integrity-plugin' SUP ds-cfg-plugin STRUCTURAL MUST ds-cfg-attribute-type MAY ( ds-cfg-base-dn $ ds-cfg-update-interval $ ds-cfg-log-file ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.119 NAME 'ds-cfg-referential-integrity-plugin' SUP ds-cfg-plugin STRUCTURAL MUST ds-cfg-attribute-type MAY ( ds-cfg-base-dn $ ds-cfg-update-interval $ ds-cfg-log-file $ ds-cfg-check-references $ ds-cfg-check-references-filter-criteria $ ds-cfg-check-references-scope-criteria ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.120 NAME 'ds-cfg-smtp-account-status-notification-handler' SUP ds-cfg-account-status-notification-handler STRUCTURAL MUST ( ds-cfg-sender-address $ ds-cfg-send-message-without-end-user-address $ ds-cfg-message-template-file ) MAY ( ds-cfg-email-address-attribute-type $ ds-cfg-recipient-address $ ds-cfg-message-subject ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.121 NAME 'ds-task-reset-generation-id' SUP ds-task STRUCTURAL MUST ds-task-reset-generation-id-domain-base-dn MAY ds-task-reset-generation-id-new-value X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.122 NAME 'ds-cfg-entry-uuid-plugin' SUP ds-cfg-plugin STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1172,15 +1345,13 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.178 NAME 'ds-cfg-workflow-element' SUP to objectClasses: ( 1.3.6.1.4.1.26027.1.2.179 NAME 'ds-cfg-local-backend-workflow-element' SUP ds-cfg-workflow-element STRUCTURAL MUST ( ds-cfg-backend ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.181 NAME 'ds-cfg-snmp-connection-handler' SUP ds-cfg-connection-handler STRUCTURAL MUST ( ds-cfg-listen-port $ ds-cfg-trap-port ) MAY ( ds-cfg-listen-address $ ds-cfg-traps-destination $ ds-cfg-registered-mbean $ ds-cfg-community $ ds-cfg-allowed-manager $ ds-cfg-allowed-user $ ds-cfg-security-level $ ds-cfg-traps-community $ ds-cfg-security-agent-file $ ds-cfg-opendmk-jarfile ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.182 NAME 'ds-cfg-extension' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.183 NAME 'ds-cfg-administration-connector' SUP top STRUCTURAL MUST ( cn $ ds-cfg-listen-port $ ds-cfg-key-manager-provider $ ds-cfg-trust-manager-provider $ ds-cfg-ssl-cert-nickname ) MAY ( ds-cfg-listen-address ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.183 NAME 'ds-cfg-administration-connector' SUP top STRUCTURAL MUST ( cn $ ds-cfg-listen-port $ ds-cfg-key-manager-provider $ ds-cfg-trust-manager-provider $ ds-cfg-ssl-cert-nickname ) MAY ( ds-cfg-listen-address $ ds-cfg-ssl-cipher-suite $ ds-cfg-ssl-protocol ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.199 NAME 'ds-cfg-qos-policy' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.185 NAME 'ds-cfg-resource-limits-qos-policy' SUP ds-cfg-qos-policy STRUCTURAL MAY ( ds-cfg-max-connections $ ds-cfg-max-connections-from-same-ip $ ds-cfg-max-ops-per-connection $ ds-cfg-max-concurrent-ops-per-connection $ ds-cfg-size-limit $ ds-cfg-time-limit $ ds-cfg-min-substring-length $ ds-cfg-max-ops-per-interval $ ds-cfg-max-ops-interval) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.186 NAME 'ds-cfg-network-group-plugin' SUP ds-cfg-plugin STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.187 NAME 'ds-cfg-change-number-control-plugin' SUP ds-cfg-plugin STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.188 NAME 'ds-cfg-request-filtering-qos-policy' SUP ds-cfg-qos-policy STRUCTURAL MAY ( ds-cfg-allowed-operations $ ds-cfg-allowed-attributes $ ds-cfg-prohibited-attributes $ ds-cfg-allowed-search-scopes $ ds-cfg-allowed-subtrees $ ds-cfg-prohibited-subtrees ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.195 NAME 'ds-cfg-collation-matching-rule' SUP ds-cfg-matching-rule STRUCTURAL MUST ( ds-cfg-matching-rule-type $ ds-cfg-collation ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.196 NAME 'ds-cfg-ndb-backend' SUP ds-cfg-backend STRUCTURAL MUST ( ds-cfg-ndb-connect-string $ ds-cfg-sql-connect-string $ ds-cfg-ndb-dbname ) MAY ( ds-cfg-sql-user $ ds-cfg-sql-passwd $ ds-cfg-ndb-attr-len $ ds-cfg-ndb-attr-blob $ ds-cfg-ndb-thread-count $ ds-cfg-ndb-num-connections $ ds-cfg-deadlock-retry-limit $ ds-cfg-import-thread-count $ ds-cfg-import-queue-size $ ds-cfg-index-entry-limit ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.197 NAME 'ds-cfg-ndb-index' SUP top STRUCTURAL MUST ( ds-cfg-attribute ) MAY ( ds-cfg-index-type $ ds-cfg-index-entry-limit $ ds-cfg-substring-length ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.950 NAME 'ds-mon-branch' SUP top STRUCTURAL MUST cn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.200 NAME 'ds-cfg-null-backend' SUP ds-cfg-backend STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.201 NAME 'ds-cfg-structural-object-class-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) @@ -1188,12 +1359,25 @@ objectClasses: ( 1.3.6.1.4.1.26027.1.2.202 NAME 'ds-cfg-governing-structure-rule objectClasses: ( 1.3.6.1.4.1.26027.1.2.231 NAME 'ds-cfg-extensible-matching-rule' SUP ds-cfg-matching-rule STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.232 NAME 'ds-cfg-fractional-ldif-import-plugin' SUP ds-cfg-plugin STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.233 NAME 'ds-cfg-parallel-work-queue' SUP ds-cfg-work-queue STRUCTURAL MAY ( ds-cfg-num-worker-threads ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 1.3.6.1.4.1.26027.1.2.234 NAME 'ds-cfg-external-changelog-domain' SUP top STRUCTURAL MUST ( cn $ ds-cfg-enabled ) MAY ( ds-cfg-ecl-include ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.26027.1.2.234 NAME 'ds-cfg-external-changelog-domain' SUP top STRUCTURAL MUST ( cn $ ds-cfg-enabled ) MAY ( ds-cfg-ecl-include $ ds-cfg-ecl-include-for-deletes ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.235 NAME 'ds-cfg-collective-attribute-subentries-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.236 NAME 'ds-cfg-password-policy-subentry-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) objectClasses: ( 1.3.6.1.4.1.26027.1.2.237 NAME 'ds-task-purge-conflicts-historical' SUP ds-task STRUCTURAL MUST ( ds-task-purge-conflicts-historical-domain-dn ) MAY ( ds-task-purge-conflicts-historical-maximum-duration $ ds-task-purge-conflicts-historical-first-purged-changenumber $ ds-task-purge-conflicts-historical-last-purged-changenumber $ ds-task-purge-conflicts-historical-purge-completed-in-time $ ds-task-purge-conflicts-historical-purged-values-count ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' ) -objectClasses: ( 2.16.840.1.113730.3.2.1 NAME 'changeLogEntry' SUP top STRUCTURAL MUST ( changeNumber $ targetDN $ changeType $ changeTime ) MAY ( changes $ newRDN $ deleteOldRDN $ newSuperior $ replicaIdentifier $ replicationCSN $ targetEntryUUID $ changeLogCookie ) X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) -objectClasses: ( 1.2.840.113556.1.3.23 NAME 'container' SUP top STRUCTURAL MUST cn X-ORIGIN 'Microsoft Active Directory' X-SCHEMA-FILE '03-changelog.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.2 NAME 'ds-cfg-samba-password-plugin' SUP ds-cfg-plugin STRUCTURAL MUST ( ds-cfg-pwd-sync-policy ) MAY ( ds-cfg-samba-administrator-dn ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.4 NAME 'ds-cfg-ldap-pass-through-authentication-policy' SUP ds-cfg-authentication-policy STRUCTURAL MUST ( ds-cfg-java-class $ ds-cfg-primary-remote-ldap-server $ ds-cfg-mapping-policy $ ds-cfg-use-password-caching ) MAY ( ds-cfg-secondary-remote-ldap-server $ ds-cfg-mapped-attribute $ ds-cfg-mapped-search-bind-dn $ ds-cfg-mapped-search-bind-password $ ds-cfg-mapped-search-bind-password-property $ ds-cfg-mapped-search-bind-password-environment-variable $ ds-cfg-mapped-search-bind-password-file $ ds-cfg-mapped-search-base-dn $ ds-cfg-connection-timeout $ ds-cfg-trust-manager-provider $ ds-cfg-use-ssl $ ds-cfg-use-tcp-keep-alive $ ds-cfg-use-tcp-no-delay $ ds-cfg-ssl-protocol $ ds-cfg-ssl-cipher-suite $ ds-cfg-cached-password-storage-scheme $ ds-cfg-cached-password-ttl $ ds-cfg-source-address ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.5 NAME 'ds-cfg-attribute-cleanup-plugin' SUP ds-cfg-plugin STRUCTURAL MAY ( ds-cfg-remove-inbound-attributes $ ds-cfg-rename-inbound-attributes ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.6 NAME 'ds-cfg-file-based-audit-log-publisher' SUP ds-cfg-access-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.7 NAME 'ds-cfg-access-log-filtering-criteria' SUP top STRUCTURAL MUST ( cn ) MAY ( ds-cfg-log-record-type $ ds-cfg-connection-client-address-equal-to $ ds-cfg-connection-client-address-not-equal-to $ ds-cfg-connection-protocol-equal-to $ ds-cfg-connection-port-equal-to $ ds-cfg-user-dn-equal-to $ ds-cfg-user-dn-not-equal-to $ ds-cfg-user-is-member-of $ ds-cfg-user-is-not-member-of $ ds-cfg-request-target-dn-equal-to $ ds-cfg-request-target-dn-not-equal-to $ ds-cfg-response-result-code-equal-to $ ds-cfg-response-result-code-not-equal-to $ ds-cfg-response-etime-greater-than $ ds-cfg-response-etime-less-than $ ds-cfg-search-response-nentries-greater-than $ ds-cfg-search-response-nentries-less-than $ ds-cfg-search-response-is-indexed ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.8 NAME 'ds-cfg-entity-tag-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL MAY ( ds-cfg-checksum-algorithm $ ds-cfg-excluded-attribute ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.9 NAME 'ds-cfg-password-expiration-time-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.10 NAME 'ds-cfg-certificate-attribute-syntax' SUP ds-cfg-attribute-syntax STRUCTURAL MAY ds-cfg-strict-format X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.11 NAME 'ds-cfg-jpeg-attribute-syntax' SUP ds-cfg-attribute-syntax STRUCTURAL MAY ds-cfg-strict-format X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.12 NAME 'ds-cfg-country-string-attribute-syntax' SUP ds-cfg-attribute-syntax STRUCTURAL MAY ds-cfg-strict-format X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.13 NAME 'ds-connectionhandler-statistics-monitor-entry' SUP ds-monitor-entry STRUCTURAL MAY ( connectionsEstablished $ connectionsClosed $ bytesRead $ bytesWritten $ ldapMessagesRead $ ldapMessagesWritten $ operationsAbandoned $ operationsInitiated $ operationsCompleted $ abandonRequests $ addRequests $ addResponses $ bindRequests $ bindResponses $ compareRequests $ compareResponses $ deleteRequests $ deleteResponses $ extendedRequests $ extendedResponses $ modifyRequests $ modifyResponses $ modifyDNRequests $ modifyDNResponses $ searchRequests $ searchOneRequests $ searchSubRequests $ searchResultEntries $ searchResultReferences $ searchResultsDone $ unbindRequests $ ds-mon-add-operations-total-count $ ds-mon-resident-time-add-operations-total-time $ ds-mon-search-operations-total-count $ ds-mon-resident-time-search-operations-total-time $ ds-mon-bind-operations-total-count $ ds-mon-resident-time-bind-operations-total-time $ ds-mon-unbind-operations-total-count $ ds-mon-resident-time-unbind-operations-total-time $ ds-mon-compare-operations-total-count $ ds-mon-resident-time-compare-operations-total-time $ ds-mon-delete-operations-total-count $ ds-mon-resident-time-delete-operations-total-time $ ds-mon-mod-operations-total-count $ ds-mon-resident-time-mod-operations-total-time $ ds-mon-moddn-operations-total-count $ ds-mon-resident-time-moddn-operations-total-time $ ds-mon-abandon-operations-total-count $ ds-mon-resident-time-abandon-operations-total-time $ ds-mon-extended-operations-total-count $ ds-mon-resident-time-extended-operations-total-time $ ds-mon-http-requests-total-count $ ds-mon-resident-time-http-requests-total-time $ ds-mon-http-delete-requests-total-count $ ds-mon-resident-time-http-delete-requests-total-time $ ds-mon-http-get-requests-total-count $ ds-mon-resident-time-http-get-requests-total-time $ ds-mon-http-patch-requests-total-count $ ds-mon-resident-time-http-patch-requests-total-time $ ds-mon-http-post-requests-total-count $ ds-mon-resident-time-http-post-requests-total-time $ ds-mon-http-put-requests-total-count $ ds-mon-resident-time-http-put-requests-total-time ) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.14 NAME 'ds-cfg-pbkdf2-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL MAY ds-cfg-pbkdf2-iterations X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '02-config.ldif' ) +objectClasses: ( 2.16.840.1.113730.3.2.1 NAME 'changeLogEntry' SUP top STRUCTURAL MUST ( changeNumber $ targetDN $ changeType $ changeTime ) MAY ( changes $ newRDN $ deleteOldRDN $ newSuperior ) X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' ) +objectClasses: ( 1.2.840.113556.1.3.23 NAME 'container' SUP top STRUCTURAL MUST cn X-ORIGIN 'Microsoft Active Directory' X-SCHEMA-FILE '03-changelog.ldif' ) +objectClasses: ( 1.3.6.1.4.1.36733.2.1.2.18 NAME 'pwdValidatorPolicy' SUP top AUXILIARY MUST (ds-cfg-password-validator) X-ORIGIN 'OpenDJ Directory Server' X-SCHEMA-FILE '03-pwpolicyextension.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.1 NAME 'javaContainer' DESC 'Container for a Java object' SUP top STRUCTURAL MUST ( cn ) X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.4 NAME 'javaObject' DESC 'Java object representation' SUP top ABSTRACT MUST ( javaClassName ) MAY ( javaClassNames $ javaCodebase $ javaDoc $ description ) X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.5 NAME 'javaSerializedObject' DESC 'Java serialized object' SUP javaObject AUXILIARY MUST ( javaSerializedData ) X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' ) @@ -1239,6 +1423,17 @@ objectClasses: ( 1.3.6.1.1.1.2.15 NAME 'nisDomainObject' SUP top AUXILIARY DESC objectClasses: ( 1.3.6.1.1.1.2.16 NAME 'automountMap' SUP top STRUCTURAL MUST ( automountMapName ) MAY description X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' ) objectClasses: ( 1.3.6.1.1.1.2.17 NAME 'automount' SUP top STRUCTURAL DESC 'Automount information' MUST ( automountKey $ automountInformation ) MAY description X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' ) objectClasses: ( 1.3.6.1.4.1.11.1.3.1.2.5 NAME 'DUAConfigProfile' SUP top STRUCTURAL DESC 'Abstraction of a base configuration for a DUA' MUST ( cn ) MAY ( defaultServerList $ preferredServerList $ defaultSearchBase $ defaultSearchScope $ searchTimeLimit $ bindTimeLimit $ credentialLevel $ authenticationMethod $ followReferrals $ dereferenceAliases $ serviceSearchDescriptor $ serviceCredentialLevel $ serviceAuthenticationMethod $ objectclassMap $ attributeMap $ profileTTL ) X-ORIGIN 'RFC 4876' X-SCHEMA-FILE '05-rfc4876.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.6 NAME 'sambaSamAccount' DESC 'Samba 3.0 Auxilary SAM Account' SUP top AUXILIARY MUST ( uid $ sambaSID ) MAY ( cn $ sambaLMPassword $ sambaNTPassword $ sambaPwdLastSet $ sambaLogonTime $ sambaLogoffTime $ sambaKickoffTime $ sambaPwdCanChange $ sambaPwdMustChange $ sambaAcctFlags $ displayName $ sambaHomePath $ sambaHomeDrive $ sambaLogonScript $ sambaProfilePath $ description $ sambaUserWorkstations $ sambaPrimaryGroupSID $ sambaDomainName $ sambaMungedDial $ sambaBadPasswordCount $ sambaBadPasswordTime $ sambaPasswordHistory $ sambaLogonHours) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.4 NAME 'sambaGroupMapping' DESC 'Samba Group Mapping' SUP top AUXILIARY MUST ( gidNumber $ sambaSID $ sambaGroupType ) MAY ( displayName $ description $ sambaSIDList) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.14 NAME 'sambaTrustPassword' DESC 'Samba Trust Password' SUP top STRUCTURAL MUST ( sambaDomainName $ sambaNTPassword $ sambaTrustFlags ) MAY ( sambaSID $ sambaPwdLastSet ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.5 NAME 'sambaDomain' DESC 'Samba Domain Information' SUP top STRUCTURAL MUST ( sambaDomainName $ sambaSID ) MAY ( sambaNextRid $ sambaNextGroupRid $ sambaNextUserRid $ sambaAlgorithmicRidBase $ sambaMinPwdLength $ sambaPwdHistoryLength $ sambaLogonToChgPwd $ sambaMaxPwdAge $ sambaMinPwdAge $ sambaLockoutDuration $ sambaLockoutObservationWindow $ sambaLockoutThreshold $ sambaForceLogoff $ sambaRefuseMachinePwdChange ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.1.2.2.7 NAME 'sambaUnixIdPool' DESC 'Pool for allocating UNIX uids/gids' SUP top AUXILIARY MUST ( uidNumber $ gidNumber ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.1.2.2.8 NAME 'sambaIdmapEntry' DESC 'Mapping from a SID to an ID' SUP top AUXILIARY MUST ( sambaSID ) MAY ( uidNumber $ gidNumber ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.1.2.2.9 NAME 'sambaSidEntry' DESC 'Structural Class for a SID' SUP top STRUCTURAL MUST ( sambaSID ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.1.2.2.10 NAME 'sambaConfig' DESC 'Samba Configuration Section' SUP top AUXILIARY MAY ( description ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.11 NAME 'sambaShare' DESC 'Samba Share Section' SUP top STRUCTURAL MUST ( sambaShareName ) MAY ( description ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.12 NAME 'sambaConfigOption' DESC 'Samba Configuration Option' SUP top STRUCTURAL MUST ( sambaOptionName ) MAY ( sambaBoolOption $ sambaIntegerOption $ sambaStringOption $ sambaStringListoption $ description ) X-SCHEMA-FILE '05-samba.ldif' ) +objectClasses: ( 1.3.6.1.4.1.7165.2.2.13 NAME 'sambaPrivilege' DESC 'Samba Privilege' SUP top AUXILIARY MUST ( sambaSID ) MAY ( sambaPrivilegeList ) X-SCHEMA-FILE '05-samba.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.1.2.5 NAME 'nisMailAlias' SUP top MUST cn MAY rfc822mailMember X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.1.2.6 NAME 'nisNetId' SUP top MUST cn MAY ( nisNetIdUser $ nisNetIdGroup $ nisNetIdHost ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) objectClasses: ( 1.3.6.1.4.1.42.2.27.5.2.1 NAME 'SolarisProject' SUP top STRUCTURAL MUST ( SolarisProjectID $ SolarisProjectName ) MAY ( memberUid $ memberGid $ description $ SolarisProjectAttr ) X-ORIGIN 'Solaris Specific' X-SCHEMA-FILE '05-solaris.ldif' ) diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/db/userRoot/00000000.jdb b/infra/test-util/src/main/resources/test-data/opendj.template/db/userRoot/00000000.jdb index ceaa774042fbce6f6522e1dc3a4dd3a310d7179f..793bb09909632f88f1171ac7e5db81c93ac5a1ab 100644 GIT binary patch literal 31704 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 NA7PiKybEK({tp#ICGY?M literal 31624 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 useMinReplicatedNodeId=0 useMaxNodeId=0 useMinReplicatedDbId=0 useMaxDbId=0 useMinReplicatedTxnId=0 useMaxTxnId=0 numMapINs=0 numOtherINs=0 numBinDeltas=0 numDuplicateINs=0 lnFound=0 lnNotFound=0 lnInserted=0 lnReplaced=0 nRepeatIteratorReads=0 -110722 09:41:15:407 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 1 start: read mapping INs -110722 09:41:15:417 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 1 end (9): Recovery Info lastUsed=0x0/0x7571 nextAvail=0x0/0x75a0 ckptStart=0x0/0x6ee0 firstActive=0x0/0x6ee0 ckptEnd=0x0/0x7571 useRoot=0x0/0x74a2time=2011-07-22 09:41:15.315 lastLocalNodeId=471 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=1 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6ee0 root=0x0/0x74a2 firstActive=0x0/0x6ee0> useMinReplicatedNodeId=-9 useMaxNodeId=471 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=1 numMapINs=1 numOtherINs=0 numBinDeltas=0 numDuplicateINs=0 lnFound=0 lnNotFound=0 lnInserted=0 lnReplaced=0 nRepeatIteratorReads=0 -110722 09:41:15:418 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 2 start: read mapping BINDeltas -110722 09:41:15:421 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 2 end (2): Recovery Info lastUsed=0x0/0x7571 nextAvail=0x0/0x75a0 ckptStart=0x0/0x6ee0 firstActive=0x0/0x6ee0 ckptEnd=0x0/0x7571 useRoot=0x0/0x74a2time=2011-07-22 09:41:15.315 lastLocalNodeId=471 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=1 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6ee0 root=0x0/0x74a2 firstActive=0x0/0x6ee0> useMinReplicatedNodeId=-9 useMaxNodeId=471 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=1 numMapINs=1 numOtherINs=0 numBinDeltas=0 numDuplicateINs=0 lnFound=0 lnNotFound=0 lnInserted=0 lnReplaced=0 nRepeatIteratorReads=0 -110722 09:41:15:421 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 3 start: undo map LNs -110722 09:41:15:427 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 3 end (5): Recovery Info lastUsed=0x0/0x7571 nextAvail=0x0/0x75a0 ckptStart=0x0/0x6ee0 firstActive=0x0/0x6ee0 ckptEnd=0x0/0x7571 useRoot=0x0/0x74a2time=2011-07-22 09:41:15.315 lastLocalNodeId=471 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=1 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6ee0 root=0x0/0x74a2 firstActive=0x0/0x6ee0> useMinReplicatedNodeId=-9 useMaxNodeId=471 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=1 numMapINs=1 numOtherINs=0 numBinDeltas=0 numDuplicateINs=0 lnFound=0 lnNotFound=0 lnInserted=0 lnReplaced=0 nRepeatIteratorReads=0 -110722 09:41:15:427 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 4 start: redo map LNs -110722 09:41:15:432 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 4 end (5): Recovery Info lastUsed=0x0/0x7571 nextAvail=0x0/0x75a0 ckptStart=0x0/0x6ee0 firstActive=0x0/0x6ee0 ckptEnd=0x0/0x7571 useRoot=0x0/0x74a2time=2011-07-22 09:41:15.315 lastLocalNodeId=471 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=1 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6ee0 root=0x0/0x74a2 firstActive=0x0/0x6ee0> useMinReplicatedNodeId=-9 useMaxNodeId=471 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=1 numMapINs=1 numOtherINs=0 numBinDeltas=0 numDuplicateINs=0 lnFound=1 lnNotFound=0 lnInserted=0 lnReplaced=0 nRepeatIteratorReads=0 -110722 09:41:15:432 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 5 start: read main INs -110722 09:41:15:440 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 5 end (8): Recovery Info lastUsed=0x0/0x7571 nextAvail=0x0/0x75a0 ckptStart=0x0/0x6ee0 firstActive=0x0/0x6ee0 ckptEnd=0x0/0x7571 useRoot=0x0/0x74a2time=2011-07-22 09:41:15.315 lastLocalNodeId=471 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=1 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6ee0 root=0x0/0x74a2 firstActive=0x0/0x6ee0> useMinReplicatedNodeId=-9 useMaxNodeId=471 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=1 numMapINs=1 numOtherINs=2 numBinDeltas=0 numDuplicateINs=0 lnFound=1 lnNotFound=0 lnInserted=0 lnReplaced=0 nRepeatIteratorReads=0 -110722 09:41:15:440 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 6 start: read main BINDeltas -110722 09:41:15:443 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 6 end (3): Recovery Info lastUsed=0x0/0x7571 nextAvail=0x0/0x75a0 ckptStart=0x0/0x6ee0 firstActive=0x0/0x6ee0 ckptEnd=0x0/0x7571 useRoot=0x0/0x74a2time=2011-07-22 09:41:15.315 lastLocalNodeId=471 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=1 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6ee0 root=0x0/0x74a2 firstActive=0x0/0x6ee0> useMinReplicatedNodeId=-9 useMaxNodeId=471 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=1 numMapINs=1 numOtherINs=2 numBinDeltas=0 numDuplicateINs=0 lnFound=1 lnNotFound=0 lnInserted=0 lnReplaced=0 nRepeatIteratorReads=0 -110722 09:41:15:443 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 7 start: read dup INs -110722 09:41:15:446 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 7 end (3): Recovery Info lastUsed=0x0/0x7571 nextAvail=0x0/0x75a0 ckptStart=0x0/0x6ee0 firstActive=0x0/0x6ee0 ckptEnd=0x0/0x7571 useRoot=0x0/0x74a2time=2011-07-22 09:41:15.315 lastLocalNodeId=471 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=1 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6ee0 root=0x0/0x74a2 firstActive=0x0/0x6ee0> useMinReplicatedNodeId=-9 useMaxNodeId=471 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=1 numMapINs=1 numOtherINs=2 numBinDeltas=0 numDuplicateINs=0 lnFound=1 lnNotFound=0 lnInserted=0 lnReplaced=0 nRepeatIteratorReads=0 -110722 09:41:15:446 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 8 start: read dup BINDeltas -110722 09:41:15:448 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 8 end (2): Recovery Info lastUsed=0x0/0x7571 nextAvail=0x0/0x75a0 ckptStart=0x0/0x6ee0 firstActive=0x0/0x6ee0 ckptEnd=0x0/0x7571 useRoot=0x0/0x74a2time=2011-07-22 09:41:15.315 lastLocalNodeId=471 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=1 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6ee0 root=0x0/0x74a2 firstActive=0x0/0x6ee0> useMinReplicatedNodeId=-9 useMaxNodeId=471 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=1 numMapINs=1 numOtherINs=2 numBinDeltas=0 numDuplicateINs=0 lnFound=1 lnNotFound=0 lnInserted=0 lnReplaced=0 nRepeatIteratorReads=0 -110722 09:41:15:456 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 9 start: undo LNs -110722 09:41:15:461 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 9 end (5): Recovery Info lastUsed=0x0/0x7571 nextAvail=0x0/0x75a0 ckptStart=0x0/0x6ee0 firstActive=0x0/0x6ee0 ckptEnd=0x0/0x7571 useRoot=0x0/0x74a2time=2011-07-22 09:41:15.315 lastLocalNodeId=471 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=1 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6ee0 root=0x0/0x74a2 firstActive=0x0/0x6ee0> useMinReplicatedNodeId=-9 useMaxNodeId=471 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=1 numMapINs=1 numOtherINs=2 numBinDeltas=0 numDuplicateINs=0 lnFound=1 lnNotFound=0 lnInserted=0 lnReplaced=0 nRepeatIteratorReads=0 -110722 09:41:15:461 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 10 start: redo LNs -110722 09:41:15:466 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery Pass 10 end (5): Recovery Info lastUsed=0x0/0x7571 nextAvail=0x0/0x75a0 ckptStart=0x0/0x6ee0 firstActive=0x0/0x6ee0 ckptEnd=0x0/0x7571 useRoot=0x0/0x74a2time=2011-07-22 09:41:15.315 lastLocalNodeId=471 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=1 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6ee0 root=0x0/0x74a2 firstActive=0x0/0x6ee0> useMinReplicatedNodeId=-9 useMaxNodeId=471 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=1 numMapINs=1 numOtherINs=2 numBinDeltas=0 numDuplicateINs=0 lnFound=1 lnNotFound=1 lnInserted=1 lnReplaced=0 nRepeatIteratorReads=0 -110722 09:41:15:468 CONFIG [/opt/OpenDJ-2.4.3/db/userRoot]Recovery finished: Recovery Info lastUsed=0x0/0x7571 nextAvail=0x0/0x75a0 ckptStart=0x0/0x6ee0 firstActive=0x0/0x6ee0 ckptEnd=0x0/0x7571 useRoot=0x0/0x74a2time=2011-07-22 09:41:15.315 lastLocalNodeId=471 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=1 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6ee0 root=0x0/0x74a2 firstActive=0x0/0x6ee0> useMinReplicatedNodeId=-9 useMaxNodeId=471 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=1 numMapINs=1 numOtherINs=2 numBinDeltas=0 numDuplicateINs=0 lnFound=1 lnNotFound=1 lnInserted=1 lnReplaced=0 nRepeatIteratorReads=0 +2015-03-06 18:15:08.087 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Starting TOTAL_RECOVERY Recovery Info null useMinReplicatedNodeId=0 useMaxNodeId=0 useMinReplicatedDbId=0 useMaxDbId=0 useMinReplicatedTxnId=0 useMaxTxnId=0 +2015-03-06 18:15:08.087 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Starting FIND_END_OF_LOG Recovery Info null useMinReplicatedNodeId=0 useMaxNodeId=0 useMinReplicatedDbId=0 useMaxDbId=0 useMinReplicatedTxnId=0 useMaxTxnId=0 +2015-03-06 18:15:08.104 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Stopping FIND_END_OF_LOG Recovery Info ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637null useMinReplicatedNodeId=0 useMaxNodeId=0 useMinReplicatedDbId=0 useMaxDbId=0 useMinReplicatedTxnId=0 useMaxTxnId=0 +2015-03-06 18:15:08.104 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Starting FIND_LAST_CKPT Recovery Info ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637null useMinReplicatedNodeId=0 useMaxNodeId=0 useMinReplicatedDbId=0 useMaxDbId=0 useMinReplicatedTxnId=0 useMaxTxnId=0 +2015-03-06 18:15:08.104 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Stopping FIND_LAST_CKPT Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=0 useMaxNodeId=0 useMinReplicatedDbId=0 useMaxDbId=0 useMinReplicatedTxnId=0 useMaxTxnId=0 +2015-03-06 18:15:08.104 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Starting BUILD_TREE Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=0 useMaxNodeId=0 useMinReplicatedDbId=0 useMaxDbId=0 useMinReplicatedTxnId=0 useMaxTxnId=0 +2015-03-06 18:15:08.104 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Starting READ_MAP_INS Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=0 useMaxNodeId=0 useMinReplicatedDbId=0 useMaxDbId=0 useMinReplicatedTxnId=0 useMaxTxnId=0 +2015-03-06 18:15:08.133 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Stopping READ_MAP_INS Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.133 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Starting UNDO_MAP_LNS Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.135 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Stopping UNDO_MAP_LNS Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.135 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Starting REDO_MAP_LNS Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.138 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Stopping REDO_MAP_LNS Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.138 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Starting READ_INS Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.142 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Stopping READ_INS Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.142 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Starting UNDO_LNS Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.145 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Stopping UNDO_LNS Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.145 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Starting REDO_LNS Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.148 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Stopping REDO_LNS Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.149 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Stopping BUILD_TREE Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.149 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Starting POPULATE_UP Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.150 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Stopping POPULATE_UP Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.150 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Starting REMOVE_TEMP_DBS Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.150 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Stopping REMOVE_TEMP_DBS Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.150 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Stopping TOTAL_RECOVERY Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 +2015-03-06 18:15:08.154 UTC CONFIG [/opt/opendj-2.6.2/db/userRoot] Stopping TOTAL_ENV_OPEN Recovery Info firstActive=0x0/0x6faf ckptStart=0x0/0x6faf ckptEnd=0x0/0x7710 lastUsed=0x0/0x7710 nextAvail=0x0/0x7740 useRoot=0x0/0x7637time=2015-03-06 19:15:08.03 lastLocalNodeId=50 lastReplicatedNodeId=-9 lastLocalDbId=28 lastReplicatedDbId=-256 lastLocalTxnId=2 lastReplicatedTxnId=-10 id=2 rootExists=true ckptStartLsn=0x0/0x6faf root=0x0/0x7637 firstActive=0x0/0x6faf cleanerLogSummary= useMinReplicatedNodeId=-9 useMaxNodeId=50 useMinReplicatedDbId=-256 useMaxDbId=28 useMinReplicatedTxnId=-10 useMaxTxnId=2 diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/db/userRoot/je.stat.csv b/infra/test-util/src/main/resources/test-data/opendj.template/db/userRoot/je.stat.csv new file mode 100644 index 00000000000..ea71d6ccfa6 --- /dev/null +++ b/infra/test-util/src/main/resources/test-data/opendj.template/db/userRoot/je.stat.csv @@ -0,0 +1,8 @@ +time,Cache:adminBytes,Cache:avgBatchCACHEMODE,Cache:avgBatchCRITICAL,Cache:avgBatchDAEMON,Cache:avgBatchEVICTORTHREAD,Cache:avgBatchMANUAL,Cache:cacheTotalBytes,Cache:dataAdminBytes,Cache:dataBytes,Cache:lockBytes,Cache:nBINsEvictedCACHEMODE,Cache:nBINsEvictedCRITICAL,Cache:nBINsEvictedDAEMON,Cache:nBINsEvictedEVICTORTHREAD,Cache:nBINsEvictedMANUAL,Cache:nBINsFetch,Cache:nBINsFetchMiss,Cache:nBINsStripped,Cache:nBatchesCACHEMODE,Cache:nBatchesCRITICAL,Cache:nBatchesDAEMON,Cache:nBatchesEVICTORTHREAD,Cache:nBatchesMANUAL,Cache:nCachedBINs,Cache:nCachedUpperINs,Cache:nEvictPasses,Cache:nINCompactKey,Cache:nINNoTarget,Cache:nINSparseTarget,Cache:nLNsFetch,Cache:nLNsFetchMiss,Cache:nNodesEvicted,Cache:nNodesScanned,Cache:nNodesSelected,Cache:nRootNodesEvicted,Cache:nSharedCacheEnvironments,Cache:nThreadUnavailable,Cache:nUpperINsEvictedCACHEMODE,Cache:nUpperINsEvictedCRITICAL,Cache:nUpperINsEvictedDAEMON,Cache:nUpperINsEvictedEVICTORTHREAD,Cache:nUpperINsEvictedMANUAL,Cache:nUpperINsFetch,Cache:nUpperINsFetchMiss,Cache:requiredEvictBytes,Cache:sharedCacheTotalBytes,Checkpoints:lastCheckpointEnd,Checkpoints:lastCheckpointId,Checkpoints:lastCheckpointStart,Checkpoints:nCheckpoints,Checkpoints:nDeltaINFlush,Checkpoints:nFullBINFlush,Checkpoints:nFullINFlush,Cleaning:cleanerBackLog,Cleaning:fileDeletionBacklog,Cleaning:lastKnownUtilization,Cleaning:lnSizeCorrectionFactor,Cleaning:nBINDeltasCleaned,Cleaning:nBINDeltasDead,Cleaning:nBINDeltasMigrated,Cleaning:nBINDeltasObsolete,Cleaning:nCleanerDeletions,Cleaning:nCleanerEntriesRead,Cleaning:nCleanerProbeRuns,Cleaning:nCleanerRuns,Cleaning:nClusterLNsProcessed,Cleaning:nINsCleaned,Cleaning:nINsDead,Cleaning:nINsMigrated,Cleaning:nINsObsolete,Cleaning:nLNQueueHits,Cleaning:nLNsCleaned,Cleaning:nLNsDead,Cleaning:nLNsLocked,Cleaning:nLNsMarked,Cleaning:nLNsMigrated,Cleaning:nLNsObsolete,Cleaning:nMarkLNsProcessed,Cleaning:nPendingLNsLocked,Cleaning:nPendingLNsProcessed,Cleaning:nRepeatIteratorReads,Cleaning:nToBeCleanedLNsProcessed,Cleaning:pendingLNQueueSize,Cleaning:totalLogSize,Environment:btreeRelatchesRequired,Environment:environmentCreationTime,I/O:bufferBytes,I/O:endOfLog,I/O:nBytesReadFromWriteQueue,I/O:nBytesWrittenFromWriteQueue,I/O:nCacheMiss,I/O:nFSyncRequests,I/O:nFSyncTime,I/O:nFSyncs,I/O:nFileOpens,I/O:nGroupCommitRequests,I/O:nGroupCommitWaits,I/O:nGrpCommitTimeouts,I/O:nLogBuffers,I/O:nLogFSyncs,I/O:nLogIntervalExceeded,I/O:nLogMaxGroupCommitThreshold,I/O:nNoFreeBuffer,I/O:nNotResident,I/O:nOpenFiles,I/O:nRandomReadBytes,I/O:nRandomReads,I/O:nRandomWriteBytes,I/O:nRandomWrites,I/O:nReadsFromWriteQueue,I/O:nRepeatFaultReads,I/O:nSequentialReadBytes,I/O:nSequentialReads,I/O:nSequentialWriteBytes,I/O:nSequentialWrites,I/O:nTempBufferWrites,I/O:nWriteQueueOverflow,I/O:nWriteQueueOverflowFailures,I/O:nWritesFromWriteQueue,Jvm:PS MarkSweep.count,Jvm:PS MarkSweep.time,Jvm:PS Scavenge.count,Jvm:PS Scavenge.time,Jvm:heap,Jvm:loadAverage,Locks:nLatchAcquireNoWaitUnsuccessful,Locks:nLatchAcquiresNoWaitSuccessful,Locks:nLatchAcquiresNoWaiters,Locks:nLatchAcquiresSelfOwned,Locks:nLatchAcquiresWithContention,Locks:nLatchReleases,Locks:nRequests,Locks:nWaits,Node Compression:cursorsBins,Node Compression:dbClosedBins,Node Compression:inCompQueueSize,Node Compression:nonEmptyBins,Node Compression:processedBins,Node Compression:splitBins,Op:cursorDelete,Op:cursorGetCurrent,Op:cursorGetFirst,Op:cursorGetLast,Op:cursorGetNext,Op:cursorGetNextDup,Op:cursorGetNextNoDup,Op:cursorGetPrev,Op:cursorGetPrevDup,Op:cursorGetPrevNoDup,Op:cursorPut,Op:cursorPutCurrent,Op:cursorPutNoDupData,Op:cursorPutNoOverwrite,Op:dbDelete,Op:dbGet,Op:dbGetSearchBoth,Op:dbPut,Op:dbPutNoDupData,Op:dbPutNoOverWrite,Op:dbRemoveSequence,Op:dosCursorGetNext,Op:secondaryCursorDelete,Op:secondaryCursorGetCurrent,Op:secondaryCursorGetFirst,Op:secondaryCursorGetLast,Op:secondaryCursorGetNext,Op:secondaryCursorGetNextDup,Op:secondaryCursorGetNextNoDup,Op:secondaryCursorGetPrev,Op:secondaryCursorGetPrevDup,Op:secondaryCursorGetPrevNoDup,Op:secondaryDbDelete,Op:secondaryDbGet,Op:secondaryDbGetSearchBoth +2015-03-06 18:15:06.666 UTC,125,0,0,0,0,0,542778,1336,17805,560,0,0,0,0,0,16,0,0,0,0,0,0,0,3,3,0,0,1,3,0,0,0,0,0,0, ,0,0,0,0,0,0,0,0,0,0,943,1,369,1,0,2,4,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425665706589,524286,0,0,0,0,2,62,2,2,2,0,0,3,3,0,0,0,0,0,0,0,38,1,0,0,2048,1,954,2,0,0,0,0,2,333,8,228,55874896,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2015-03-06 18:15:08.026 UTC,589,0,0,0,0,0,674324,6312,149447,0,0,0,0,0,0,711,0,0,0,0,0,0,0,25,25,0,0,1,35,66,0,0,0,0,0, ,0,0,0,0,0,0,0,0,0,0,943,1,369,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6131,0,1425665706589,524286,6074,0,0,0,0,659,0,2,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,4096,2,27519,22,0,0,0,0,0,0,0,0,296129592,0,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,281,0,339,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2015-03-06 18:15:08.162 UTC,125,0,0,0,0,0,3159370,928,13405,112,0,0,0,0,0,14,3,0,0,0,0,0,3,3,3,0,2,1,5,10,5,0,0,0,0, ,0,0,0,0,0,0,0,0,0,0,30480,2,28591,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1425665708075,3145728,0,0,0,12,0,0,0,3,0,0,0,3,0,0,0,0,12,1,4096,1,0,0,0,0,14741504,22,0,0,0,0,0,0,2,333,9,245,87238824,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2015-03-06 18:16:08.164 UTC,589,0,0,0,0,0,3226761,6312,77532,2912,0,0,0,0,0,307,9,0,0,0,0,0,0,12,12,0,9,1,17,298,116,0,0,0,0, ,0,0,0,0,0,0,0,0,0,0,30480,2,28591,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30919,0,1425665708075,3145728,30931,0,0,135,0,0,0,2,3,0,0,3,0,0,0,0,135,1,0,0,0,0,0,0,557056,136,429,3,0,0,0,0,0,0,0,0,177631032,0,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,5,1,40,0,0,0,0,0,0,0,0,0,0,245,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2015-03-06 18:17:08.167 UTC,589,0,0,0,0,0,3226761,6312,77532,2912,0,0,0,0,0,6,0,0,0,0,0,0,0,12,12,0,9,1,17,6,0,0,0,0,0, ,0,0,0,0,0,0,0,0,0,0,30480,2,28591,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30919,0,1425665708075,3145728,30931,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218658208,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2015-03-06 18:18:08.169 UTC,589,0,0,0,0,0,3226761,6312,77532,2912,0,0,0,0,0,6,0,0,0,0,0,0,0,12,12,0,9,1,17,6,0,0,0,0,0, ,0,0,0,0,0,0,0,0,0,0,30480,2,28591,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30919,0,1425665708075,3145728,30931,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263945704,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2015-03-06 18:18:51.735 UTC,589,0,0,0,0,0,3223849,6312,77532,0,0,0,0,0,0,6,0,0,0,0,0,0,0,12,12,0,9,1,17,6,0,0,0,0,0, ,0,0,0,0,0,0,0,0,0,0,30480,2,28591,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30919,0,1425665708075,3145728,30931,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306910840,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/logs/access b/infra/test-util/src/main/resources/test-data/opendj.template/logs/access index e69de29bb2d..7283ded464c 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/logs/access +++ b/infra/test-util/src/main/resources/test-data/opendj.template/logs/access @@ -0,0 +1,10978 @@ +[06/Mar/2015:19:08:46 +0100] CONNECT conn=0 from=127.0.0.1:52665 to=127.0.0.1:10444 protocol=LDAPS +[06/Mar/2015:19:08:46 +0100] BIND REQ conn=0 op=0 msgID=1 version=3 type=SIMPLE dn="cn=Directory Manager" +[06/Mar/2015:19:08:46 +0100] BIND RES conn=0 op=0 msgID=1 result=0 authDN="cn=Directory Manager,cn=Root DNs,cn=config" etime=8 +[06/Mar/2015:19:08:46 +0100] UNBIND REQ conn=0 op=1 msgID=2 +[06/Mar/2015:19:08:46 +0100] DISCONNECT conn=0 reason="Client Unbind" +[06/Mar/2015:19:08:46 +0100] CONNECT conn=1 from=127.0.0.1:52666 to=127.0.0.1:10444 protocol=LDAPS +[06/Mar/2015:19:08:46 +0100] BIND REQ conn=1 op=0 msgID=1 version=3 type=SIMPLE dn="cn=Directory Manager" +[06/Mar/2015:19:08:46 +0100] BIND RES conn=1 op=0 msgID=1 result=0 authDN="cn=Directory Manager,cn=Root DNs,cn=config" etime=1 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=1 msgID=2 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=1 msgID=2 result=0 nentries=1 etime=4 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=2 msgID=3 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=2 msgID=3 result=0 nentries=1 etime=0 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=3 msgID=4 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=3 msgID=4 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=4 msgID=5 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=4 msgID=5 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=5 msgID=6 base="cn=admin data" scope=baseObject filter="(objectclass=*)" attrs="1.1" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=5 msgID=6 result=0 nentries=1 etime=0 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=6 msgID=7 base="cn=Administrators,cn=admin data" scope=baseObject filter="(objectclass=*)" attrs="1.1" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=6 msgID=7 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=7 msgID=8 base="cn=Servers,cn=admin data" scope=baseObject filter="(objectclass=*)" attrs="1.1" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=7 msgID=8 result=32 message="Entry cn=Servers,cn=admin data specified as the search base DN does not exist" nentries=0 etime=0 +[06/Mar/2015:19:08:46 +0100] ADD REQ conn=1 op=8 msgID=9 dn="cn=Servers,cn=admin data" +[06/Mar/2015:19:08:46 +0100] ADD RES conn=1 op=8 msgID=9 result=0 etime=14 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=9 msgID=10 base="cn=Server Groups,cn=admin data" scope=baseObject filter="(objectclass=*)" attrs="1.1" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=9 msgID=10 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=10 msgID=11 base="cn=all-servers,cn=Server Groups,cn=admin data" scope=baseObject filter="(objectclass=*)" attrs="1.1" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=10 msgID=11 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=11 msgID=12 base="cn=instance keys,cn=admin data" scope=baseObject filter="(objectclass=*)" attrs="1.1" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=11 msgID=12 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=12 msgID=13 base="cn=secret keys,cn=admin data" scope=baseObject filter="(objectclass=*)" attrs="1.1" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=12 msgID=13 result=0 nentries=1 etime=0 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=13 msgID=14 base="cn=config" scope=wholeSubtree filter="(objectclass=ds-cfg-ldap-connection-handler)" attrs="ds-cfg-enabled,ds-cfg-listen-address,ds-cfg-listen-port,ds-cfg-use-ssl,ds-cfg-allow-start-tls,objectclass" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=13 msgID=14 result=0 nentries=2 etime=14 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=14 msgID=15 base="cn=config" scope=wholeSubtree filter="(objectclass=ds-cfg-administration-connector)" attrs="ds-cfg-listen-port,objectclass" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=14 msgID=15 result=0 nentries=1 etime=19 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=15 msgID=16 base="cn=config" scope=wholeSubtree filter="(objectclass=ds-cfg-jmx-connection-handler)" attrs="ds-cfg-enabled,ds-cfg-listen-address,ds-cfg-listen-port,ds-cfg-use-ssl,objectclass" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=15 msgID=16 result=0 nentries=1 etime=28 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=16 msgID=17 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectclass=ds-cfg-synchronization-provider)" attrs="ds-cfg-enabled" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=16 msgID=17 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=17 msgID=18 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=wholeSubtree filter="(objectclass=ds-cfg-replication-server)" attrs="ds-cfg-replication-port,ds-cfg-replication-server,ds-cfg-replication-server-id" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=17 msgID=18 result=0 nentries=0 etime=0 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=18 msgID=19 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectclass=ds-cfg-crypto-manager)" attrs="ds-cfg-ssl-encryption" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=18 msgID=19 result=0 nentries=1 etime=0 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=19 msgID=20 base="ds-cfg-key-id=ads-certificate,cn=ads-truststore" scope=baseObject filter="(objectclass=ds-cfg-instance-key)" attrs="ds-cfg-public-key-certificate;binary" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=19 msgID=20 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=20 msgID=21 base="cn=schema" scope=baseObject filter="(|(objectclass=*)(objectclass=ldapsubentry))" attrs="ds-sync-generation-id" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=20 msgID=21 result=0 nentries=1 etime=2 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=21 msgID=22 base="cn=Servers,cn=admin data" scope=baseObject filter="(objectclass=*)" attrs="1.1" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=21 msgID=22 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:46 +0100] ADD REQ conn=1 op=22 msgID=23 dn="cn=localhost:10444,cn=Servers,cn=admin data" +[06/Mar/2015:19:08:46 +0100] ADD RES conn=1 op=22 msgID=23 result=0 etime=2 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=23 msgID=24 base="cn=instance keys,cn=admin data" scope=singleLevel filter="(&(ds-cfg-public-key-certificate;binary=0\82\01\D90\82\01B\A0\03\02\01\02\02\04\12\02%\D10\0D\06\09\2A\86H\86\F7\0D\01\01\05\05\00011\1B0\19\06\03U\04\0A\13\12OpenDJ Certificate1\120\10\06\03U\04\03\13\09localhost0\1E\17\0D150306180845Z\17\0D350301180845Z011\1B0\19\06\03U\04\0A\13\12OpenDJ Certificate1\120\10\06\03U\04\03\13\09localhost0\81\9F0\0D\06\09\2A\86H\86\F7\0D\01\01\01\05\00\03\81\8D\000\81\89\02\81\81\00\80\5CQ\0A\C1\FC\17A\F3w\F5\98\8D\0E\A0\D7P\D2\A2b\91\A9\AD\E4\AF\A5|y\A2\D9\E7\F6\28!\C2\BC\18\BF\0D\0C\C3d6\C1urjg\9D\DAk\C0\B0\00~\FE\1E\9A\8EM\006\EF\CFB\8Db:\1A\DB\B2\1A\F9}\F3\F9\F3\F4\C9[\E7\EFM\FB\B5{\97\E0v_\D7\1A\A9'?T\B6\00e\83\9F\F2K{\E3\28M\B3\F0\E0\91r\C9\9A\8EfD\ED\9Ex&\11\83\E9O\9Eq\A9\02\03\01\00\010\0D\06\09\2A\86H\86\F7\0D\01\01\05\05\00\03\81\81\00!\91\09\0D\E6^@\FAP\B9\EE-\BF\FD3IT\B9\B1C\EF\C7Z\0B\CB\A9\99_"\821\D6[\F2\18j=^\C1\97l\B8\A2\1D[\B3\DA\A29B\AA\97<<\DAV\EDV\EC\B0%^\18\10\FC\8D\A8k\C2\EF\F9\C5\87\09S\AA$\A7\BA|\A3Vi\D5\F20\A5\A5/_\DE\C3~\B7\E3\18e\08\1A\04S3T]\0A\FD\83:\D0\98\07GY"\09\84\FFK@\B3l~W\E8\14\F9D\E2)(objectclass=top)(objectclass=ds-cfg-instance-key))" attrs="ds-cfg-key-id" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=23 msgID=24 result=0 nentries=1 etime=2 +[06/Mar/2015:19:08:46 +0100] MODIFY REQ conn=1 op=24 msgID=25 dn="cn=localhost:10444,cn=Servers,cn=admin data" +[06/Mar/2015:19:08:46 +0100] MODIFY RES conn=1 op=24 msgID=25 result=0 etime=5 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=25 msgID=26 base="cn=all-servers,cn=Server Groups,cn=admin data" scope=baseObject filter="(objectclass=*)" attrs="ALL" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=25 msgID=26 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:46 +0100] MODIFY REQ conn=1 op=26 msgID=27 dn="cn=all-servers,cn=Server Groups,cn=admin data" +[06/Mar/2015:19:08:46 +0100] MODIFY RES conn=1 op=26 msgID=27 result=0 etime=3 +[06/Mar/2015:19:08:46 +0100] MODIFY REQ conn=1 op=27 msgID=28 dn="cn=localhost:10444,cn=Servers,cn=admin data" +[06/Mar/2015:19:08:46 +0100] MODIFY RES conn=1 op=27 msgID=28 result=0 etime=3 +[06/Mar/2015:19:08:46 +0100] SEARCH REQ conn=1 op=28 msgID=29 base="cn=instance keys,cn=admin data" scope=singleLevel filter="(&(ds-cfg-public-key-certificate;binary=0\82\01\D90\82\01B\A0\03\02\01\02\02\04\12\02%\D10\0D\06\09\2A\86H\86\F7\0D\01\01\05\05\00011\1B0\19\06\03U\04\0A\13\12OpenDJ Certificate1\120\10\06\03U\04\03\13\09localhost0\1E\17\0D150306180845Z\17\0D350301180845Z011\1B0\19\06\03U\04\0A\13\12OpenDJ Certificate1\120\10\06\03U\04\03\13\09localhost0\81\9F0\0D\06\09\2A\86H\86\F7\0D\01\01\01\05\00\03\81\8D\000\81\89\02\81\81\00\80\5CQ\0A\C1\FC\17A\F3w\F5\98\8D\0E\A0\D7P\D2\A2b\91\A9\AD\E4\AF\A5|y\A2\D9\E7\F6\28!\C2\BC\18\BF\0D\0C\C3d6\C1urjg\9D\DAk\C0\B0\00~\FE\1E\9A\8EM\006\EF\CFB\8Db:\1A\DB\B2\1A\F9}\F3\F9\F3\F4\C9[\E7\EFM\FB\B5{\97\E0v_\D7\1A\A9'?T\B6\00e\83\9F\F2K{\E3\28M\B3\F0\E0\91r\C9\9A\8EfD\ED\9Ex&\11\83\E9O\9Eq\A9\02\03\01\00\010\0D\06\09\2A\86H\86\F7\0D\01\01\05\05\00\03\81\81\00!\91\09\0D\E6^@\FAP\B9\EE-\BF\FD3IT\B9\B1C\EF\C7Z\0B\CB\A9\99_"\821\D6[\F2\18j=^\C1\97l\B8\A2\1D[\B3\DA\A29B\AA\97<<\DAV\EDV\EC\B0%^\18\10\FC\8D\A8k\C2\EF\F9\C5\87\09S\AA$\A7\BA|\A3Vi\D5\F20\A5\A5/_\DE\C3~\B7\E3\18e\08\1A\04S3T]\0A\FD\83:\D0\98\07GY"\09\84\FFK@\B3l~W\E8\14\F9D\E2)(objectclass=top)(objectclass=ds-cfg-instance-key))" attrs="ds-cfg-key-id" +[06/Mar/2015:19:08:46 +0100] SEARCH RES conn=1 op=28 msgID=29 result=0 nentries=1 etime=2 +[06/Mar/2015:19:08:46 +0100] MODIFY REQ conn=1 op=29 msgID=30 dn="cn=localhost:10444,cn=Servers,cn=admin data" +[06/Mar/2015:19:08:46 +0100] MODIFY RES conn=1 op=29 msgID=30 result=0 etime=2 +[06/Mar/2015:19:08:46 +0100] CONNECT conn=2 from=127.0.0.1:52667 to=127.0.0.1:10444 protocol=LDAPS +[06/Mar/2015:19:08:47 +0100] BIND REQ conn=2 op=0 msgID=1 version=3 type=SIMPLE dn="cn=Directory Manager" +[06/Mar/2015:19:08:47 +0100] BIND RES conn=2 op=0 msgID=1 result=0 authDN="cn=Directory Manager,cn=Root DNs,cn=config" etime=2 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=2 op=1 msgID=2 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=2 op=1 msgID=2 result=0 nentries=1 etime=2 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=2 op=2 msgID=3 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=2 op=2 msgID=3 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=2 op=3 msgID=4 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=2 op=3 msgID=4 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=2 op=4 msgID=5 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=2 op=4 msgID=5 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] UNBIND REQ conn=2 op=5 msgID=6 +[06/Mar/2015:19:08:47 +0100] DISCONNECT conn=2 reason="Client Unbind" +[06/Mar/2015:19:08:47 +0100] CONNECT conn=3 from=127.0.0.1:52668 to=127.0.0.1:10444 protocol=LDAPS +[06/Mar/2015:19:08:47 +0100] BIND REQ conn=3 op=0 msgID=1 version=3 type=SIMPLE dn="cn=Directory Manager" +[06/Mar/2015:19:08:47 +0100] BIND RES conn=3 op=0 msgID=1 result=0 authDN="cn=Directory Manager,cn=Root DNs,cn=config" etime=1 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=1 msgID=2 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=1 msgID=2 result=0 nentries=1 etime=2 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=2 msgID=3 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=2 msgID=3 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=3 msgID=4 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=3 msgID=4 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=4 msgID=5 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=4 msgID=5 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=5 msgID=6 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=5 msgID=6 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=6 msgID=7 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=6 msgID=7 result=32 message="The search operation cannot be processed because base entry cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config does not exist" nentries=0 etime=0 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=7 msgID=8 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=7 msgID=8 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=8 msgID=9 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=8 msgID=9 result=0 nentries=1 etime=0 +[06/Mar/2015:19:08:47 +0100] ADD REQ conn=3 op=9 msgID=10 dn="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" +[06/Mar/2015:19:08:47 +0100] ADD RES conn=3 op=9 msgID=10 result=0 etime=186 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=10 msgID=11 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=10 msgID=11 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=11 msgID=12 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=11 msgID=12 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=12 msgID=13 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=12 msgID=13 result=0 nentries=0 etime=0 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=13 msgID=14 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=13 msgID=14 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=14 msgID=15 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=14 msgID=15 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=15 msgID=16 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=15 msgID=16 result=0 nentries=1 etime=0 +[06/Mar/2015:19:08:47 +0100] ADD REQ conn=3 op=16 msgID=17 dn="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" +[06/Mar/2015:19:08:47 +0100] MODIFY REQ conn=-1 op=50 msgID=51 dn="cn=admin data" type=synchronization +[06/Mar/2015:19:08:47 +0100] MODIFY RES conn=-1 op=50 msgID=51 result=0 etime=2 +[06/Mar/2015:19:08:47 +0100] ADD RES conn=3 op=16 msgID=17 result=0 etime=228 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=17 msgID=18 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=17 msgID=18 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=18 msgID=19 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=18 msgID=19 result=0 nentries=1 etime=0 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=19 msgID=20 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=19 msgID=20 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] ADD REQ conn=3 op=20 msgID=21 dn="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" +[06/Mar/2015:19:08:47 +0100] MODIFY REQ conn=-1 op=55 msgID=56 dn="dc=example,dc=com" type=synchronization +[06/Mar/2015:19:08:47 +0100] MODIFY RES conn=-1 op=55 msgID=56 result=32 message="Entry dc=example,dc=com cannot be modified because no such entry exists in the server" etime=0 +[06/Mar/2015:19:08:47 +0100] MODIFY REQ conn=-1 op=56 msgID=57 dn="cn=dc=example\,dc=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" type=synchronization +[06/Mar/2015:19:08:47 +0100] MODIFY RES conn=-1 op=56 msgID=57 result=0 etime=15 +[06/Mar/2015:19:08:47 +0100] ADD RES conn=3 op=20 msgID=21 result=0 etime=139 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=21 msgID=22 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=21 msgID=22 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=22 msgID=23 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=22 msgID=23 result=0 nentries=1 etime=0 +[06/Mar/2015:19:08:47 +0100] SEARCH REQ conn=3 op=23 msgID=24 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:08:47 +0100] SEARCH RES conn=3 op=23 msgID=24 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:47 +0100] ADD REQ conn=3 op=24 msgID=25 dn="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" +[06/Mar/2015:19:08:47 +0100] MODIFY REQ conn=-1 op=61 msgID=62 dn="cn=schema" type=synchronization +[06/Mar/2015:19:08:47 +0100] MODIFY RES conn=-1 op=61 msgID=62 result=0 etime=57 +[06/Mar/2015:19:08:48 +0100] ADD RES conn=3 op=24 msgID=25 result=0 etime=276 +[06/Mar/2015:19:08:48 +0100] SEARCH REQ conn=3 op=25 msgID=26 base="cn=monitor" scope=baseObject filter="(objectclass=*)" attrs="currentTime" +[06/Mar/2015:19:08:48 +0100] SEARCH RES conn=3 op=25 msgID=26 result=0 nentries=1 etime=1 +[06/Mar/2015:19:08:48 +0100] UNBIND REQ conn=3 op=26 msgID=27 +[06/Mar/2015:19:08:48 +0100] DISCONNECT conn=3 reason="Client Unbind" +[06/Mar/2015:19:09:10 +0100] CONNECT conn=4 from=10.1.1.55:35856 to=10.1.1.55:10444 protocol=LDAPS +[06/Mar/2015:19:09:10 +0100] BIND REQ conn=4 op=0 msgID=1 version=3 type=SIMPLE dn="cn=Directory Manager" +[06/Mar/2015:19:09:10 +0100] BIND RES conn=4 op=0 msgID=1 result=0 authDN="cn=Directory Manager,cn=Root DNs,cn=config" etime=1 +[06/Mar/2015:19:09:10 +0100] SEARCH REQ conn=4 op=1 msgID=2 base="cn=config" scope=baseObject filter="(objectclass=*)" attrs="1.1" +[06/Mar/2015:19:09:10 +0100] SEARCH RES conn=4 op=1 msgID=2 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=2 msgID=3 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=2 msgID=3 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=3 msgID=4 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=3 msgID=4 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=4 msgID=5 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=4 msgID=5 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=5 msgID=6 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=5 msgID=6 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=6 msgID=7 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=6 msgID=7 result=0 nentries=5 etime=3 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=7 msgID=8 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=7 msgID=8 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=8 msgID=9 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=8 msgID=9 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=9 msgID=10 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=9 msgID=10 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=10 msgID=11 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=10 msgID=11 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=11 msgID=12 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=11 msgID=12 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=12 msgID=13 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=12 msgID=13 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=13 msgID=14 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=13 msgID=14 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=14 msgID=15 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=14 msgID=15 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=15 msgID=16 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=15 msgID=16 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=16 msgID=17 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=16 msgID=17 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=17 msgID=18 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=17 msgID=18 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=18 msgID=19 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=18 msgID=19 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=19 msgID=20 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=19 msgID=20 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=20 msgID=21 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=20 msgID=21 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=21 msgID=22 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=21 msgID=22 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=22 msgID=23 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=22 msgID=23 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=23 msgID=24 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=23 msgID=24 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=24 msgID=25 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=24 msgID=25 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=25 msgID=26 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=25 msgID=26 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=26 msgID=27 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=26 msgID=27 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=27 msgID=28 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=27 msgID=28 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=28 msgID=29 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=28 msgID=29 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=29 msgID=30 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=29 msgID=30 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=30 msgID=31 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=30 msgID=31 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=31 msgID=32 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=31 msgID=32 result=0 nentries=9 etime=8 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=32 msgID=33 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=32 msgID=33 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=33 msgID=34 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=33 msgID=34 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=34 msgID=35 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=34 msgID=35 result=0 nentries=1 etime=3 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=35 msgID=36 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=35 msgID=36 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=36 msgID=37 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=36 msgID=37 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=37 msgID=38 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=37 msgID=38 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=38 msgID=39 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=38 msgID=39 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=39 msgID=40 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=39 msgID=40 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=40 msgID=41 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=40 msgID=41 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=41 msgID=42 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=41 msgID=42 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=42 msgID=43 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=42 msgID=43 result=0 nentries=13 etime=8 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=43 msgID=44 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=43 msgID=44 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=44 msgID=45 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=44 msgID=45 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=45 msgID=46 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=45 msgID=46 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=46 msgID=47 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=46 msgID=47 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=47 msgID=48 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=47 msgID=48 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=48 msgID=49 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=48 msgID=49 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=49 msgID=50 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=49 msgID=50 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=50 msgID=51 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=50 msgID=51 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=51 msgID=52 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=51 msgID=52 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=52 msgID=53 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=52 msgID=53 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=53 msgID=54 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=53 msgID=54 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=54 msgID=55 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=54 msgID=55 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=55 msgID=56 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=55 msgID=56 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=56 msgID=57 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=56 msgID=57 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=57 msgID=58 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=57 msgID=58 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=58 msgID=59 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=58 msgID=59 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=59 msgID=60 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=59 msgID=60 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=60 msgID=61 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=60 msgID=61 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=61 msgID=62 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=61 msgID=62 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=62 msgID=63 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=62 msgID=63 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=63 msgID=64 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=63 msgID=64 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=64 msgID=65 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=64 msgID=65 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=65 msgID=66 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=65 msgID=66 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=66 msgID=67 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=66 msgID=67 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=67 msgID=68 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=67 msgID=68 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=68 msgID=69 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=68 msgID=69 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=69 msgID=70 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=69 msgID=70 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=70 msgID=71 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=70 msgID=71 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=71 msgID=72 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=71 msgID=72 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=72 msgID=73 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=72 msgID=73 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=73 msgID=74 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=73 msgID=74 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=74 msgID=75 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=74 msgID=75 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=75 msgID=76 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=75 msgID=76 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=76 msgID=77 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=76 msgID=77 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=77 msgID=78 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=77 msgID=78 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=78 msgID=79 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=78 msgID=79 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=79 msgID=80 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=79 msgID=80 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=80 msgID=81 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=80 msgID=81 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=81 msgID=82 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=81 msgID=82 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=82 msgID=83 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=82 msgID=83 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=83 msgID=84 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=83 msgID=84 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=84 msgID=85 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=84 msgID=85 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=85 msgID=86 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=85 msgID=86 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=86 msgID=87 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=86 msgID=87 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=87 msgID=88 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=87 msgID=88 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=88 msgID=89 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=88 msgID=89 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=89 msgID=90 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=89 msgID=90 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=90 msgID=91 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=90 msgID=91 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=91 msgID=92 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=91 msgID=92 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=92 msgID=93 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=92 msgID=93 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=93 msgID=94 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=93 msgID=94 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=94 msgID=95 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=94 msgID=95 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=95 msgID=96 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=95 msgID=96 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=96 msgID=97 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=96 msgID=97 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=97 msgID=98 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=97 msgID=98 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=98 msgID=99 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=98 msgID=99 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=99 msgID=100 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=99 msgID=100 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=100 msgID=101 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=100 msgID=101 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=101 msgID=102 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=101 msgID=102 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=102 msgID=103 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=102 msgID=103 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=103 msgID=104 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=103 msgID=104 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=104 msgID=105 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=104 msgID=105 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=105 msgID=106 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=105 msgID=106 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=106 msgID=107 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=106 msgID=107 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=107 msgID=108 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=107 msgID=108 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=108 msgID=109 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=108 msgID=109 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=109 msgID=110 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=109 msgID=110 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=110 msgID=111 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=110 msgID=111 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=111 msgID=112 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=111 msgID=112 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=112 msgID=113 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=112 msgID=113 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=113 msgID=114 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=113 msgID=114 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=114 msgID=115 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=114 msgID=115 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=115 msgID=116 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=115 msgID=116 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=116 msgID=117 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=116 msgID=117 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=117 msgID=118 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=117 msgID=118 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=118 msgID=119 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=118 msgID=119 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=119 msgID=120 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=119 msgID=120 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=120 msgID=121 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=120 msgID=121 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=121 msgID=122 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=121 msgID=122 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=122 msgID=123 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=122 msgID=123 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=123 msgID=124 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=123 msgID=124 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=124 msgID=125 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=124 msgID=125 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=125 msgID=126 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=125 msgID=126 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=126 msgID=127 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=126 msgID=127 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=127 msgID=128 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=127 msgID=128 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=128 msgID=129 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=128 msgID=129 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=129 msgID=130 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=129 msgID=130 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=130 msgID=131 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=130 msgID=131 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=131 msgID=132 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=131 msgID=132 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=132 msgID=133 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=132 msgID=133 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=133 msgID=134 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=133 msgID=134 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=134 msgID=135 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=134 msgID=135 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=135 msgID=136 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=135 msgID=136 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=136 msgID=137 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=136 msgID=137 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=137 msgID=138 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=137 msgID=138 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=138 msgID=139 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=138 msgID=139 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=139 msgID=140 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=139 msgID=140 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=140 msgID=141 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=140 msgID=141 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=141 msgID=142 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=141 msgID=142 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=142 msgID=143 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=142 msgID=143 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=143 msgID=144 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=143 msgID=144 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=144 msgID=145 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=144 msgID=145 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=145 msgID=146 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=145 msgID=146 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=146 msgID=147 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=146 msgID=147 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=147 msgID=148 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=147 msgID=148 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=148 msgID=149 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=148 msgID=149 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=149 msgID=150 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=149 msgID=150 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=150 msgID=151 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=150 msgID=151 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=151 msgID=152 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=151 msgID=152 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=152 msgID=153 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=152 msgID=153 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=153 msgID=154 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=153 msgID=154 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=154 msgID=155 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=154 msgID=155 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=155 msgID=156 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=155 msgID=156 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=156 msgID=157 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=156 msgID=157 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=157 msgID=158 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=157 msgID=158 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=158 msgID=159 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=158 msgID=159 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=159 msgID=160 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=159 msgID=160 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=160 msgID=161 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=160 msgID=161 result=0 nentries=1 etime=4 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=161 msgID=162 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=161 msgID=162 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=162 msgID=163 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=162 msgID=163 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=163 msgID=164 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=163 msgID=164 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=164 msgID=165 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=164 msgID=165 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=165 msgID=166 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=165 msgID=166 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=166 msgID=167 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=166 msgID=167 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=167 msgID=168 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=167 msgID=168 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=168 msgID=169 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=168 msgID=169 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=169 msgID=170 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=169 msgID=170 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=170 msgID=171 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=170 msgID=171 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=171 msgID=172 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=171 msgID=172 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=172 msgID=173 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=172 msgID=173 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=173 msgID=174 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=173 msgID=174 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=174 msgID=175 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=174 msgID=175 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=175 msgID=176 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=175 msgID=176 result=0 nentries=0 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=176 msgID=177 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=176 msgID=177 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=177 msgID=178 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=177 msgID=178 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=178 msgID=179 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=178 msgID=179 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=179 msgID=180 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=179 msgID=180 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=180 msgID=181 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=180 msgID=181 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=181 msgID=182 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=181 msgID=182 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=182 msgID=183 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=182 msgID=183 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=183 msgID=184 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=183 msgID=184 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=184 msgID=185 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=184 msgID=185 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=185 msgID=186 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=185 msgID=186 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=186 msgID=187 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=186 msgID=187 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=187 msgID=188 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=187 msgID=188 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=188 msgID=189 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=188 msgID=189 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=189 msgID=190 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=189 msgID=190 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=190 msgID=191 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=190 msgID=191 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=191 msgID=192 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=191 msgID=192 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=192 msgID=193 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=192 msgID=193 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:11 +0100] SEARCH REQ conn=4 op=193 msgID=194 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:11 +0100] SEARCH RES conn=4 op=193 msgID=194 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=194 msgID=195 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=194 msgID=195 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=195 msgID=196 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=195 msgID=196 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=196 msgID=197 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=196 msgID=197 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=197 msgID=198 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=197 msgID=198 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=198 msgID=199 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=198 msgID=199 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=199 msgID=200 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=199 msgID=200 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=200 msgID=201 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=200 msgID=201 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=201 msgID=202 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=201 msgID=202 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=202 msgID=203 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=202 msgID=203 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=203 msgID=204 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=203 msgID=204 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=204 msgID=205 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=204 msgID=205 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=205 msgID=206 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=205 msgID=206 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=206 msgID=207 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=206 msgID=207 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=207 msgID=208 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=207 msgID=208 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=208 msgID=209 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=208 msgID=209 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=209 msgID=210 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=209 msgID=210 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=210 msgID=211 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=210 msgID=211 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=211 msgID=212 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=211 msgID=212 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=212 msgID=213 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=212 msgID=213 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=213 msgID=214 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=213 msgID=214 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=214 msgID=215 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=214 msgID=215 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=215 msgID=216 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=215 msgID=216 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=216 msgID=217 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=216 msgID=217 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=217 msgID=218 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=217 msgID=218 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=218 msgID=219 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=218 msgID=219 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=219 msgID=220 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=219 msgID=220 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=220 msgID=221 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=220 msgID=221 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=221 msgID=222 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=221 msgID=222 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=222 msgID=223 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=222 msgID=223 result=0 nentries=3 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=223 msgID=224 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=223 msgID=224 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=224 msgID=225 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=224 msgID=225 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=225 msgID=226 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=225 msgID=226 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=226 msgID=227 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=226 msgID=227 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=227 msgID=228 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=227 msgID=228 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=228 msgID=229 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=228 msgID=229 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=229 msgID=230 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=229 msgID=230 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=230 msgID=231 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=230 msgID=231 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=231 msgID=232 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=231 msgID=232 result=0 nentries=1 etime=4 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=232 msgID=233 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=232 msgID=233 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=233 msgID=234 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=233 msgID=234 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=234 msgID=235 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=234 msgID=235 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=235 msgID=236 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=235 msgID=236 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=236 msgID=237 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=236 msgID=237 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=237 msgID=238 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=237 msgID=238 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=238 msgID=239 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=238 msgID=239 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=239 msgID=240 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=239 msgID=240 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=240 msgID=241 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=240 msgID=241 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=241 msgID=242 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=241 msgID=242 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=242 msgID=243 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=242 msgID=243 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=243 msgID=244 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=243 msgID=244 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=244 msgID=245 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=244 msgID=245 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=245 msgID=246 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=245 msgID=246 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=246 msgID=247 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=246 msgID=247 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=247 msgID=248 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=247 msgID=248 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=248 msgID=249 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=248 msgID=249 result=0 nentries=1 etime=2 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=249 msgID=250 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=249 msgID=250 result=0 nentries=1 etime=0 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=250 msgID=251 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=250 msgID=251 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=251 msgID=252 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=251 msgID=252 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=252 msgID=253 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=252 msgID=253 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=253 msgID=254 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=253 msgID=254 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=254 msgID=255 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=254 msgID=255 result=0 nentries=42 etime=231 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=255 msgID=256 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=255 msgID=256 result=0 nentries=0 etime=1 +[06/Mar/2015:19:09:12 +0100] SEARCH REQ conn=4 op=256 msgID=257 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:09:12 +0100] SEARCH RES conn=4 op=256 msgID=257 result=0 nentries=1 etime=1 +[06/Mar/2015:19:09:25 +0100] UNBIND REQ conn=4 op=257 msgID=258 +[06/Mar/2015:19:09:25 +0100] DISCONNECT conn=4 reason="Client Unbind" +[06/Mar/2015:19:09:26 +0100] DISCONNECT conn=1 reason="Server Shutdown" msg="This client connection is being deregistered from the associated request handler because the Directory Server is shutting down" +[06/Mar/2015:19:12:08 +0100] MODIFY REQ conn=-1 op=48 msgID=49 dn="dc=example,dc=com" type=synchronization +[06/Mar/2015:19:12:08 +0100] MODIFY RES conn=-1 op=48 msgID=49 result=32 message="Entry dc=example,dc=com cannot be modified because no such entry exists in the server" etime=6 +[06/Mar/2015:19:12:08 +0100] MODIFY REQ conn=-1 op=49 msgID=50 dn="cn=dc=example\,dc=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" type=synchronization +[06/Mar/2015:19:12:08 +0100] MODIFY RES conn=-1 op=49 msgID=50 result=0 etime=44 +[06/Mar/2015:19:12:29 +0100] CONNECT conn=0 from=10.1.1.55:35911 to=10.1.1.55:10444 protocol=LDAPS +[06/Mar/2015:19:12:29 +0100] BIND REQ conn=0 op=0 msgID=1 version=3 type=SIMPLE dn="cn=Directory Manager" +[06/Mar/2015:19:12:29 +0100] BIND RES conn=0 op=0 msgID=1 result=0 authDN="cn=Directory Manager,cn=Root DNs,cn=config" etime=6 +[06/Mar/2015:19:12:29 +0100] SEARCH REQ conn=0 op=1 msgID=2 base="cn=config" scope=baseObject filter="(objectclass=*)" attrs="1.1" +[06/Mar/2015:19:12:29 +0100] SEARCH RES conn=0 op=1 msgID=2 result=0 nentries=1 etime=4 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=2 msgID=3 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=2 msgID=3 result=0 nentries=1 etime=3 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=3 msgID=4 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=3 msgID=4 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=4 msgID=5 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=4 msgID=5 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=5 msgID=6 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=5 msgID=6 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=6 msgID=7 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=6 msgID=7 result=0 nentries=5 etime=7 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=7 msgID=8 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=7 msgID=8 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=8 msgID=9 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=8 msgID=9 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=9 msgID=10 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=9 msgID=10 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=10 msgID=11 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=10 msgID=11 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=11 msgID=12 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=11 msgID=12 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=12 msgID=13 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=12 msgID=13 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=13 msgID=14 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=13 msgID=14 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=14 msgID=15 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=14 msgID=15 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=15 msgID=16 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=15 msgID=16 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=16 msgID=17 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=16 msgID=17 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=17 msgID=18 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=17 msgID=18 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=18 msgID=19 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=18 msgID=19 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=19 msgID=20 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=19 msgID=20 result=0 nentries=1 etime=3 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=20 msgID=21 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=20 msgID=21 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=21 msgID=22 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=21 msgID=22 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=22 msgID=23 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=22 msgID=23 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=23 msgID=24 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=23 msgID=24 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=24 msgID=25 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=24 msgID=25 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=25 msgID=26 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=25 msgID=26 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=26 msgID=27 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=26 msgID=27 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=27 msgID=28 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=27 msgID=28 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=28 msgID=29 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=28 msgID=29 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=29 msgID=30 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=29 msgID=30 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=30 msgID=31 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=30 msgID=31 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=31 msgID=32 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=31 msgID=32 result=0 nentries=9 etime=11 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=32 msgID=33 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=32 msgID=33 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=33 msgID=34 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=33 msgID=34 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=34 msgID=35 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=34 msgID=35 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=35 msgID=36 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=35 msgID=36 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=36 msgID=37 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=36 msgID=37 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=37 msgID=38 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=37 msgID=38 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=38 msgID=39 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=38 msgID=39 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=39 msgID=40 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=39 msgID=40 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=40 msgID=41 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=40 msgID=41 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=41 msgID=42 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=41 msgID=42 result=0 nentries=1 etime=3 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=42 msgID=43 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=42 msgID=43 result=0 nentries=13 etime=16 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=43 msgID=44 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=43 msgID=44 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=44 msgID=45 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=44 msgID=45 result=0 nentries=1 etime=7 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=45 msgID=46 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=45 msgID=46 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=46 msgID=47 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=46 msgID=47 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=47 msgID=48 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=47 msgID=48 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=48 msgID=49 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=48 msgID=49 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=49 msgID=50 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=49 msgID=50 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=50 msgID=51 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=50 msgID=51 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=51 msgID=52 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=51 msgID=52 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=52 msgID=53 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=52 msgID=53 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=53 msgID=54 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=53 msgID=54 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=54 msgID=55 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=54 msgID=55 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=55 msgID=56 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=55 msgID=56 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=56 msgID=57 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=56 msgID=57 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=57 msgID=58 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=57 msgID=58 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=58 msgID=59 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=58 msgID=59 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=59 msgID=60 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=59 msgID=60 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=60 msgID=61 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=60 msgID=61 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=61 msgID=62 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=61 msgID=62 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=62 msgID=63 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=62 msgID=63 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=63 msgID=64 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=63 msgID=64 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=64 msgID=65 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=64 msgID=65 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=65 msgID=66 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=65 msgID=66 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=66 msgID=67 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=66 msgID=67 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=67 msgID=68 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=67 msgID=68 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=68 msgID=69 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=68 msgID=69 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=69 msgID=70 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=69 msgID=70 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=70 msgID=71 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=70 msgID=71 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=71 msgID=72 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=71 msgID=72 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=72 msgID=73 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=72 msgID=73 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=73 msgID=74 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=73 msgID=74 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=74 msgID=75 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=74 msgID=75 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=75 msgID=76 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=75 msgID=76 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=76 msgID=77 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=76 msgID=77 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=77 msgID=78 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=77 msgID=78 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=78 msgID=79 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=78 msgID=79 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=79 msgID=80 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=79 msgID=80 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=80 msgID=81 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=80 msgID=81 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=81 msgID=82 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=81 msgID=82 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=82 msgID=83 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=82 msgID=83 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=83 msgID=84 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=83 msgID=84 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=84 msgID=85 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=84 msgID=85 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=85 msgID=86 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=85 msgID=86 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=86 msgID=87 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=86 msgID=87 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=87 msgID=88 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=87 msgID=88 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=88 msgID=89 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=88 msgID=89 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=89 msgID=90 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=89 msgID=90 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=90 msgID=91 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=90 msgID=91 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=91 msgID=92 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=91 msgID=92 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=92 msgID=93 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=92 msgID=93 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=93 msgID=94 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=93 msgID=94 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=94 msgID=95 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=94 msgID=95 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=95 msgID=96 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=95 msgID=96 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=96 msgID=97 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=96 msgID=97 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=97 msgID=98 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=97 msgID=98 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=98 msgID=99 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=98 msgID=99 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=99 msgID=100 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=99 msgID=100 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=100 msgID=101 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=100 msgID=101 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=101 msgID=102 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=101 msgID=102 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=102 msgID=103 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=102 msgID=103 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=103 msgID=104 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=103 msgID=104 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=104 msgID=105 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=104 msgID=105 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=105 msgID=106 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=105 msgID=106 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=106 msgID=107 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=106 msgID=107 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=107 msgID=108 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=107 msgID=108 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=108 msgID=109 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=108 msgID=109 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=109 msgID=110 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=109 msgID=110 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=110 msgID=111 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=110 msgID=111 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=111 msgID=112 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=111 msgID=112 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=112 msgID=113 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=112 msgID=113 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=113 msgID=114 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=113 msgID=114 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=114 msgID=115 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=114 msgID=115 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=115 msgID=116 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=115 msgID=116 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=116 msgID=117 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=116 msgID=117 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=117 msgID=118 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=117 msgID=118 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=118 msgID=119 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=118 msgID=119 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=119 msgID=120 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=119 msgID=120 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=120 msgID=121 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=120 msgID=121 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=121 msgID=122 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=121 msgID=122 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=122 msgID=123 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=122 msgID=123 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=123 msgID=124 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=123 msgID=124 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=124 msgID=125 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=124 msgID=125 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=125 msgID=126 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=125 msgID=126 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=126 msgID=127 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=126 msgID=127 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=127 msgID=128 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=127 msgID=128 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=128 msgID=129 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=128 msgID=129 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=129 msgID=130 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=129 msgID=130 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=130 msgID=131 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=130 msgID=131 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=131 msgID=132 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=131 msgID=132 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=132 msgID=133 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=132 msgID=133 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=133 msgID=134 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=133 msgID=134 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=134 msgID=135 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=134 msgID=135 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=135 msgID=136 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=135 msgID=136 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=136 msgID=137 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=136 msgID=137 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=137 msgID=138 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=137 msgID=138 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=138 msgID=139 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=138 msgID=139 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=139 msgID=140 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=139 msgID=140 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=140 msgID=141 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=140 msgID=141 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=141 msgID=142 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=141 msgID=142 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=142 msgID=143 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=142 msgID=143 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=143 msgID=144 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=143 msgID=144 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=144 msgID=145 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=144 msgID=145 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=145 msgID=146 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=145 msgID=146 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=146 msgID=147 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=146 msgID=147 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=147 msgID=148 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=147 msgID=148 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=148 msgID=149 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=148 msgID=149 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=149 msgID=150 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=149 msgID=150 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=150 msgID=151 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=150 msgID=151 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=151 msgID=152 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=151 msgID=152 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=152 msgID=153 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=152 msgID=153 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=153 msgID=154 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=153 msgID=154 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=154 msgID=155 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=154 msgID=155 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=155 msgID=156 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=155 msgID=156 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=156 msgID=157 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=156 msgID=157 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=157 msgID=158 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=157 msgID=158 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=158 msgID=159 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=158 msgID=159 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=159 msgID=160 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=159 msgID=160 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=160 msgID=161 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=160 msgID=161 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=161 msgID=162 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=161 msgID=162 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=162 msgID=163 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=162 msgID=163 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=163 msgID=164 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=163 msgID=164 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=164 msgID=165 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=164 msgID=165 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=165 msgID=166 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=165 msgID=166 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=166 msgID=167 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=166 msgID=167 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=167 msgID=168 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=167 msgID=168 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=168 msgID=169 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=168 msgID=169 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=169 msgID=170 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=169 msgID=170 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=170 msgID=171 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=170 msgID=171 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=171 msgID=172 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=171 msgID=172 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=172 msgID=173 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=172 msgID=173 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=173 msgID=174 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=173 msgID=174 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=174 msgID=175 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=174 msgID=175 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=175 msgID=176 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=175 msgID=176 result=0 nentries=0 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=176 msgID=177 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=176 msgID=177 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=177 msgID=178 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=177 msgID=178 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=178 msgID=179 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=178 msgID=179 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=179 msgID=180 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=179 msgID=180 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=180 msgID=181 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=180 msgID=181 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=181 msgID=182 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=181 msgID=182 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=182 msgID=183 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=182 msgID=183 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=183 msgID=184 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=183 msgID=184 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=184 msgID=185 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=184 msgID=185 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=185 msgID=186 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=185 msgID=186 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=186 msgID=187 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=186 msgID=187 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=187 msgID=188 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=187 msgID=188 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=188 msgID=189 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=188 msgID=189 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=189 msgID=190 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=189 msgID=190 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=190 msgID=191 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=190 msgID=191 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=191 msgID=192 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=191 msgID=192 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=192 msgID=193 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=192 msgID=193 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=193 msgID=194 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=193 msgID=194 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=194 msgID=195 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=194 msgID=195 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=195 msgID=196 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=195 msgID=196 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=196 msgID=197 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=196 msgID=197 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=197 msgID=198 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=197 msgID=198 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=198 msgID=199 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=198 msgID=199 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=199 msgID=200 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=199 msgID=200 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=200 msgID=201 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=200 msgID=201 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=201 msgID=202 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=201 msgID=202 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=202 msgID=203 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=202 msgID=203 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=203 msgID=204 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=203 msgID=204 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=204 msgID=205 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=204 msgID=205 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=205 msgID=206 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=205 msgID=206 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=206 msgID=207 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=206 msgID=207 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=207 msgID=208 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=207 msgID=208 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=208 msgID=209 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=208 msgID=209 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=209 msgID=210 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=209 msgID=210 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=210 msgID=211 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=210 msgID=211 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=211 msgID=212 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=211 msgID=212 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=212 msgID=213 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=212 msgID=213 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=213 msgID=214 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=213 msgID=214 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=214 msgID=215 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=214 msgID=215 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:30 +0100] SEARCH REQ conn=0 op=215 msgID=216 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:30 +0100] SEARCH RES conn=0 op=215 msgID=216 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=216 msgID=217 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=216 msgID=217 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=217 msgID=218 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=217 msgID=218 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=218 msgID=219 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=218 msgID=219 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=219 msgID=220 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=219 msgID=220 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=220 msgID=221 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=220 msgID=221 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=221 msgID=222 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=221 msgID=222 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=222 msgID=223 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=222 msgID=223 result=0 nentries=3 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=223 msgID=224 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=223 msgID=224 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=224 msgID=225 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=224 msgID=225 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=225 msgID=226 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=225 msgID=226 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=226 msgID=227 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=226 msgID=227 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=227 msgID=228 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=227 msgID=228 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=228 msgID=229 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=228 msgID=229 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=229 msgID=230 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=229 msgID=230 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=230 msgID=231 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=230 msgID=231 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=231 msgID=232 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=231 msgID=232 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=232 msgID=233 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=232 msgID=233 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=233 msgID=234 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=233 msgID=234 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=234 msgID=235 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=234 msgID=235 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=235 msgID=236 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=235 msgID=236 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=236 msgID=237 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=236 msgID=237 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=237 msgID=238 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=237 msgID=238 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=238 msgID=239 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=238 msgID=239 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=239 msgID=240 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=239 msgID=240 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=240 msgID=241 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=240 msgID=241 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=241 msgID=242 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=241 msgID=242 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=242 msgID=243 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=242 msgID=243 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=243 msgID=244 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=243 msgID=244 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=244 msgID=245 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=244 msgID=245 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=245 msgID=246 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=245 msgID=246 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=246 msgID=247 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=246 msgID=247 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=247 msgID=248 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=247 msgID=248 result=0 nentries=1 etime=4 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=248 msgID=249 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=248 msgID=249 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=249 msgID=250 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=249 msgID=250 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=250 msgID=251 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=250 msgID=251 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=251 msgID=252 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=251 msgID=252 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=252 msgID=253 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=252 msgID=253 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=253 msgID=254 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=253 msgID=254 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=254 msgID=255 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=254 msgID=255 result=0 nentries=42 etime=249 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=255 msgID=256 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=255 msgID=256 result=0 nentries=0 etime=1 +[06/Mar/2015:19:12:31 +0100] SEARCH REQ conn=0 op=256 msgID=257 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:31 +0100] SEARCH RES conn=0 op=256 msgID=257 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=257 msgID=258 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=257 msgID=258 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=258 msgID=259 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=258 msgID=259 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=259 msgID=260 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=259 msgID=260 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=260 msgID=261 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=260 msgID=261 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=261 msgID=262 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=261 msgID=262 result=0 nentries=5 etime=3 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=262 msgID=263 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=262 msgID=263 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=263 msgID=264 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=263 msgID=264 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=264 msgID=265 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=264 msgID=265 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=265 msgID=266 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=265 msgID=266 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=266 msgID=267 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=266 msgID=267 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=267 msgID=268 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=267 msgID=268 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=268 msgID=269 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=268 msgID=269 result=0 nentries=1 etime=6 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=269 msgID=270 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=269 msgID=270 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=270 msgID=271 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=270 msgID=271 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=271 msgID=272 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=271 msgID=272 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=272 msgID=273 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=272 msgID=273 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=273 msgID=274 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=273 msgID=274 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=274 msgID=275 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=274 msgID=275 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=275 msgID=276 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=275 msgID=276 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=276 msgID=277 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=276 msgID=277 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=277 msgID=278 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=277 msgID=278 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=278 msgID=279 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=278 msgID=279 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=279 msgID=280 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=279 msgID=280 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=280 msgID=281 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=280 msgID=281 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=281 msgID=282 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=281 msgID=282 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=282 msgID=283 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=282 msgID=283 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=283 msgID=284 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=283 msgID=284 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=284 msgID=285 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=284 msgID=285 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=285 msgID=286 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=285 msgID=286 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=286 msgID=287 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=286 msgID=287 result=0 nentries=9 etime=9 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=287 msgID=288 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=287 msgID=288 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=288 msgID=289 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=288 msgID=289 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=289 msgID=290 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=289 msgID=290 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=290 msgID=291 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=290 msgID=291 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=291 msgID=292 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=291 msgID=292 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=292 msgID=293 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=292 msgID=293 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=293 msgID=294 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=293 msgID=294 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=294 msgID=295 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=294 msgID=295 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=295 msgID=296 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=295 msgID=296 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=296 msgID=297 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=296 msgID=297 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=297 msgID=298 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=297 msgID=298 result=0 nentries=13 etime=7 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=298 msgID=299 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=298 msgID=299 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=299 msgID=300 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=299 msgID=300 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=300 msgID=301 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=300 msgID=301 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=301 msgID=302 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=301 msgID=302 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=302 msgID=303 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=302 msgID=303 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=303 msgID=304 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=303 msgID=304 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=304 msgID=305 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=304 msgID=305 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=305 msgID=306 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=305 msgID=306 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=306 msgID=307 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=306 msgID=307 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=307 msgID=308 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=307 msgID=308 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=308 msgID=309 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=308 msgID=309 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=309 msgID=310 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=309 msgID=310 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=310 msgID=311 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=310 msgID=311 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=311 msgID=312 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=311 msgID=312 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=312 msgID=313 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=312 msgID=313 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=313 msgID=314 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=313 msgID=314 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=314 msgID=315 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=314 msgID=315 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=315 msgID=316 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=315 msgID=316 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=316 msgID=317 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=316 msgID=317 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=317 msgID=318 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=317 msgID=318 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=318 msgID=319 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=318 msgID=319 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=319 msgID=320 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=319 msgID=320 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=320 msgID=321 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=320 msgID=321 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=321 msgID=322 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=321 msgID=322 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=322 msgID=323 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=322 msgID=323 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=323 msgID=324 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=323 msgID=324 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=324 msgID=325 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=324 msgID=325 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=325 msgID=326 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=325 msgID=326 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=326 msgID=327 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=326 msgID=327 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=327 msgID=328 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=327 msgID=328 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=328 msgID=329 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=328 msgID=329 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=329 msgID=330 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=329 msgID=330 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=330 msgID=331 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=330 msgID=331 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=331 msgID=332 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=331 msgID=332 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=332 msgID=333 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=332 msgID=333 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=333 msgID=334 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=333 msgID=334 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=334 msgID=335 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=334 msgID=335 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=335 msgID=336 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=335 msgID=336 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=336 msgID=337 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=336 msgID=337 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=337 msgID=338 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=337 msgID=338 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=338 msgID=339 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=338 msgID=339 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=339 msgID=340 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=339 msgID=340 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=340 msgID=341 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=340 msgID=341 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=341 msgID=342 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=341 msgID=342 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=342 msgID=343 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=342 msgID=343 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=343 msgID=344 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=343 msgID=344 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=344 msgID=345 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=344 msgID=345 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=345 msgID=346 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=345 msgID=346 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=346 msgID=347 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=346 msgID=347 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=347 msgID=348 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=347 msgID=348 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=348 msgID=349 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=348 msgID=349 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=349 msgID=350 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=349 msgID=350 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=350 msgID=351 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=350 msgID=351 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=351 msgID=352 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=351 msgID=352 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=352 msgID=353 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=352 msgID=353 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=353 msgID=354 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=353 msgID=354 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=354 msgID=355 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=354 msgID=355 result=0 nentries=1 etime=4 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=355 msgID=356 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=355 msgID=356 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=356 msgID=357 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=356 msgID=357 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=357 msgID=358 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=357 msgID=358 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=358 msgID=359 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=358 msgID=359 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=359 msgID=360 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=359 msgID=360 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=360 msgID=361 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=360 msgID=361 result=0 nentries=1 etime=3 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=361 msgID=362 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=361 msgID=362 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=362 msgID=363 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=362 msgID=363 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=363 msgID=364 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=363 msgID=364 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=364 msgID=365 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=364 msgID=365 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=365 msgID=366 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=365 msgID=366 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=366 msgID=367 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=366 msgID=367 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=367 msgID=368 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=367 msgID=368 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=368 msgID=369 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=368 msgID=369 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=369 msgID=370 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=369 msgID=370 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=370 msgID=371 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=370 msgID=371 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=371 msgID=372 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=371 msgID=372 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=372 msgID=373 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=372 msgID=373 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=373 msgID=374 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=373 msgID=374 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=374 msgID=375 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=374 msgID=375 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=375 msgID=376 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=375 msgID=376 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=376 msgID=377 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=376 msgID=377 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=377 msgID=378 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=377 msgID=378 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=378 msgID=379 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=378 msgID=379 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=379 msgID=380 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=379 msgID=380 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=380 msgID=381 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=380 msgID=381 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=381 msgID=382 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=381 msgID=382 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=382 msgID=383 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=382 msgID=383 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=383 msgID=384 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=383 msgID=384 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=384 msgID=385 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=384 msgID=385 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=385 msgID=386 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=385 msgID=386 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=386 msgID=387 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=386 msgID=387 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=387 msgID=388 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=387 msgID=388 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=388 msgID=389 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=388 msgID=389 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=389 msgID=390 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=389 msgID=390 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=390 msgID=391 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=390 msgID=391 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=391 msgID=392 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=391 msgID=392 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=392 msgID=393 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=392 msgID=393 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=393 msgID=394 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=393 msgID=394 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=394 msgID=395 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=394 msgID=395 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=395 msgID=396 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=395 msgID=396 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=396 msgID=397 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=396 msgID=397 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=397 msgID=398 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=397 msgID=398 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=398 msgID=399 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=398 msgID=399 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=399 msgID=400 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=399 msgID=400 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=400 msgID=401 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=400 msgID=401 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=401 msgID=402 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=401 msgID=402 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=402 msgID=403 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=402 msgID=403 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=403 msgID=404 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=403 msgID=404 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=404 msgID=405 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=404 msgID=405 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=405 msgID=406 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=405 msgID=406 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=406 msgID=407 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=406 msgID=407 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=407 msgID=408 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=407 msgID=408 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=408 msgID=409 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=408 msgID=409 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=409 msgID=410 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=409 msgID=410 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=410 msgID=411 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=410 msgID=411 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=411 msgID=412 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=411 msgID=412 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=412 msgID=413 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=412 msgID=413 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=413 msgID=414 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=413 msgID=414 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=414 msgID=415 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=414 msgID=415 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=415 msgID=416 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=415 msgID=416 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=416 msgID=417 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=416 msgID=417 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=417 msgID=418 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=417 msgID=418 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=418 msgID=419 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=418 msgID=419 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=419 msgID=420 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=419 msgID=420 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=420 msgID=421 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=420 msgID=421 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=421 msgID=422 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=421 msgID=422 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=422 msgID=423 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=422 msgID=423 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=423 msgID=424 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=423 msgID=424 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=424 msgID=425 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=424 msgID=425 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=425 msgID=426 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=425 msgID=426 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=426 msgID=427 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=426 msgID=427 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=427 msgID=428 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=427 msgID=428 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=428 msgID=429 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=428 msgID=429 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=429 msgID=430 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=429 msgID=430 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=430 msgID=431 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=430 msgID=431 result=0 nentries=0 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=431 msgID=432 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=431 msgID=432 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=432 msgID=433 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=432 msgID=433 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=433 msgID=434 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=433 msgID=434 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=434 msgID=435 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=434 msgID=435 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=435 msgID=436 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=435 msgID=436 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=436 msgID=437 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=436 msgID=437 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=437 msgID=438 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=437 msgID=438 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=438 msgID=439 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=438 msgID=439 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=439 msgID=440 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=439 msgID=440 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=440 msgID=441 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=440 msgID=441 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=441 msgID=442 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=441 msgID=442 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=442 msgID=443 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=442 msgID=443 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=443 msgID=444 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=443 msgID=444 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=444 msgID=445 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=444 msgID=445 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=445 msgID=446 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=445 msgID=446 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=446 msgID=447 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=446 msgID=447 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=447 msgID=448 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=447 msgID=448 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=448 msgID=449 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=448 msgID=449 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=449 msgID=450 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=449 msgID=450 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=450 msgID=451 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=450 msgID=451 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=451 msgID=452 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=451 msgID=452 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=452 msgID=453 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=452 msgID=453 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=453 msgID=454 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=453 msgID=454 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=454 msgID=455 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=454 msgID=455 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=455 msgID=456 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=455 msgID=456 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=456 msgID=457 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=456 msgID=457 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=457 msgID=458 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=457 msgID=458 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=458 msgID=459 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=458 msgID=459 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=459 msgID=460 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=459 msgID=460 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=460 msgID=461 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=460 msgID=461 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=461 msgID=462 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=461 msgID=462 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=462 msgID=463 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=462 msgID=463 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=463 msgID=464 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=463 msgID=464 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=464 msgID=465 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=464 msgID=465 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=465 msgID=466 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=465 msgID=466 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=466 msgID=467 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=466 msgID=467 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=467 msgID=468 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=467 msgID=468 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=468 msgID=469 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=468 msgID=469 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=469 msgID=470 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=469 msgID=470 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=470 msgID=471 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=470 msgID=471 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=471 msgID=472 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=471 msgID=472 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=472 msgID=473 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=472 msgID=473 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=473 msgID=474 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=473 msgID=474 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=474 msgID=475 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=474 msgID=475 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=475 msgID=476 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=475 msgID=476 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=476 msgID=477 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=476 msgID=477 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=477 msgID=478 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=477 msgID=478 result=0 nentries=3 etime=2 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=478 msgID=479 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=478 msgID=479 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=479 msgID=480 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=479 msgID=480 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=480 msgID=481 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=480 msgID=481 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=481 msgID=482 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=481 msgID=482 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=482 msgID=483 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=482 msgID=483 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=483 msgID=484 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=483 msgID=484 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=484 msgID=485 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=484 msgID=485 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=485 msgID=486 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=485 msgID=486 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=486 msgID=487 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=486 msgID=487 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=487 msgID=488 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=487 msgID=488 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=488 msgID=489 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=488 msgID=489 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=489 msgID=490 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=489 msgID=490 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=490 msgID=491 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=490 msgID=491 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=491 msgID=492 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=491 msgID=492 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=492 msgID=493 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=492 msgID=493 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=493 msgID=494 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=493 msgID=494 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=494 msgID=495 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=494 msgID=495 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=495 msgID=496 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=495 msgID=496 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=496 msgID=497 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=496 msgID=497 result=0 nentries=1 etime=2 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=497 msgID=498 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=497 msgID=498 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=498 msgID=499 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=498 msgID=499 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=499 msgID=500 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=499 msgID=500 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=500 msgID=501 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=500 msgID=501 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=501 msgID=502 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=501 msgID=502 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=502 msgID=503 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=502 msgID=503 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=503 msgID=504 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=503 msgID=504 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=504 msgID=505 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=504 msgID=505 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=505 msgID=506 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=505 msgID=506 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=506 msgID=507 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=506 msgID=507 result=0 nentries=1 etime=0 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=507 msgID=508 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=507 msgID=508 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=508 msgID=509 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:12:51 +0100] SEARCH RES conn=0 op=508 msgID=509 result=0 nentries=1 etime=1 +[06/Mar/2015:19:12:51 +0100] SEARCH REQ conn=0 op=509 msgID=510 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:12:52 +0100] SEARCH RES conn=0 op=509 msgID=510 result=0 nentries=42 etime=61 +[06/Mar/2015:19:12:52 +0100] SEARCH REQ conn=0 op=510 msgID=511 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:12:52 +0100] SEARCH RES conn=0 op=510 msgID=511 result=0 nentries=0 etime=0 +[06/Mar/2015:19:12:52 +0100] SEARCH REQ conn=0 op=511 msgID=512 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:12:52 +0100] SEARCH RES conn=0 op=511 msgID=512 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=512 msgID=513 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=512 msgID=513 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=513 msgID=514 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=513 msgID=514 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=514 msgID=515 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=514 msgID=515 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=515 msgID=516 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=515 msgID=516 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=516 msgID=517 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=516 msgID=517 result=0 nentries=5 etime=3 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=517 msgID=518 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=517 msgID=518 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=518 msgID=519 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=518 msgID=519 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=519 msgID=520 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=519 msgID=520 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=520 msgID=521 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=520 msgID=521 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=521 msgID=522 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=521 msgID=522 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=522 msgID=523 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=522 msgID=523 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=523 msgID=524 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=523 msgID=524 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=524 msgID=525 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=524 msgID=525 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=525 msgID=526 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=525 msgID=526 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=526 msgID=527 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=526 msgID=527 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=527 msgID=528 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=527 msgID=528 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=528 msgID=529 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=528 msgID=529 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=529 msgID=530 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=529 msgID=530 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=530 msgID=531 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=530 msgID=531 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=531 msgID=532 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=531 msgID=532 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=532 msgID=533 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=532 msgID=533 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=533 msgID=534 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=533 msgID=534 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=534 msgID=535 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=534 msgID=535 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=535 msgID=536 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=535 msgID=536 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=536 msgID=537 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=536 msgID=537 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=537 msgID=538 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=537 msgID=538 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=538 msgID=539 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=538 msgID=539 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=539 msgID=540 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=539 msgID=540 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=540 msgID=541 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=540 msgID=541 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=541 msgID=542 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=541 msgID=542 result=0 nentries=9 etime=4 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=542 msgID=543 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=542 msgID=543 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=543 msgID=544 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=543 msgID=544 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=544 msgID=545 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=544 msgID=545 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=545 msgID=546 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=545 msgID=546 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=546 msgID=547 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=546 msgID=547 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=547 msgID=548 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=547 msgID=548 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=548 msgID=549 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=548 msgID=549 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=549 msgID=550 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=549 msgID=550 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=550 msgID=551 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=550 msgID=551 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=551 msgID=552 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=551 msgID=552 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=552 msgID=553 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=552 msgID=553 result=0 nentries=13 etime=5 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=553 msgID=554 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=553 msgID=554 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=554 msgID=555 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=554 msgID=555 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=555 msgID=556 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=555 msgID=556 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=556 msgID=557 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=556 msgID=557 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=557 msgID=558 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=557 msgID=558 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=558 msgID=559 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=558 msgID=559 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=559 msgID=560 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=559 msgID=560 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=560 msgID=561 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=560 msgID=561 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=561 msgID=562 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=561 msgID=562 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=562 msgID=563 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=562 msgID=563 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=563 msgID=564 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=563 msgID=564 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=564 msgID=565 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=564 msgID=565 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=565 msgID=566 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=565 msgID=566 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=566 msgID=567 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=566 msgID=567 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=567 msgID=568 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=567 msgID=568 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=568 msgID=569 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=568 msgID=569 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=569 msgID=570 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=569 msgID=570 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=570 msgID=571 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=570 msgID=571 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=571 msgID=572 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=571 msgID=572 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=572 msgID=573 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=572 msgID=573 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=573 msgID=574 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=573 msgID=574 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=574 msgID=575 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=574 msgID=575 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=575 msgID=576 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=575 msgID=576 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=576 msgID=577 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=576 msgID=577 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=577 msgID=578 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=577 msgID=578 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=578 msgID=579 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=578 msgID=579 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=579 msgID=580 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=579 msgID=580 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=580 msgID=581 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=580 msgID=581 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=581 msgID=582 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=581 msgID=582 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=582 msgID=583 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=582 msgID=583 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=583 msgID=584 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=583 msgID=584 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=584 msgID=585 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=584 msgID=585 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=585 msgID=586 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=585 msgID=586 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=586 msgID=587 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=586 msgID=587 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=587 msgID=588 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=587 msgID=588 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=588 msgID=589 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=588 msgID=589 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=589 msgID=590 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=589 msgID=590 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=590 msgID=591 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=590 msgID=591 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=591 msgID=592 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=591 msgID=592 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=592 msgID=593 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=592 msgID=593 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=593 msgID=594 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=593 msgID=594 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=594 msgID=595 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=594 msgID=595 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=595 msgID=596 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=595 msgID=596 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=596 msgID=597 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=596 msgID=597 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=597 msgID=598 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=597 msgID=598 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=598 msgID=599 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=598 msgID=599 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=599 msgID=600 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=599 msgID=600 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=600 msgID=601 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=600 msgID=601 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=601 msgID=602 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=601 msgID=602 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=602 msgID=603 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=602 msgID=603 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=603 msgID=604 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=603 msgID=604 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=604 msgID=605 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=604 msgID=605 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=605 msgID=606 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=605 msgID=606 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=606 msgID=607 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=606 msgID=607 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=607 msgID=608 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=607 msgID=608 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=608 msgID=609 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=608 msgID=609 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=609 msgID=610 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=609 msgID=610 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=610 msgID=611 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=610 msgID=611 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=611 msgID=612 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=611 msgID=612 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=612 msgID=613 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=612 msgID=613 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=613 msgID=614 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=613 msgID=614 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=614 msgID=615 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=614 msgID=615 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=615 msgID=616 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=615 msgID=616 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=616 msgID=617 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=616 msgID=617 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=617 msgID=618 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=617 msgID=618 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=618 msgID=619 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=618 msgID=619 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=619 msgID=620 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=619 msgID=620 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=620 msgID=621 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=620 msgID=621 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=621 msgID=622 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=621 msgID=622 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=622 msgID=623 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=622 msgID=623 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=623 msgID=624 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=623 msgID=624 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=624 msgID=625 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=624 msgID=625 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=625 msgID=626 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=625 msgID=626 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=626 msgID=627 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=626 msgID=627 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=627 msgID=628 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=627 msgID=628 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=628 msgID=629 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=628 msgID=629 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=629 msgID=630 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=629 msgID=630 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=630 msgID=631 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=630 msgID=631 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=631 msgID=632 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=631 msgID=632 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=632 msgID=633 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=632 msgID=633 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=633 msgID=634 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=633 msgID=634 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=634 msgID=635 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=634 msgID=635 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=635 msgID=636 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=635 msgID=636 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=636 msgID=637 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=636 msgID=637 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=637 msgID=638 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=637 msgID=638 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=638 msgID=639 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=638 msgID=639 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=639 msgID=640 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=639 msgID=640 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=640 msgID=641 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=640 msgID=641 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=641 msgID=642 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=641 msgID=642 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=642 msgID=643 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=642 msgID=643 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=643 msgID=644 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=643 msgID=644 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=644 msgID=645 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=644 msgID=645 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=645 msgID=646 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=645 msgID=646 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=646 msgID=647 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=646 msgID=647 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=647 msgID=648 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=647 msgID=648 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=648 msgID=649 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=648 msgID=649 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=649 msgID=650 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=649 msgID=650 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=650 msgID=651 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=650 msgID=651 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=651 msgID=652 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=651 msgID=652 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=652 msgID=653 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=652 msgID=653 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=653 msgID=654 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=653 msgID=654 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=654 msgID=655 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=654 msgID=655 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=655 msgID=656 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=655 msgID=656 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=656 msgID=657 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=656 msgID=657 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=657 msgID=658 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=657 msgID=658 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=658 msgID=659 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=658 msgID=659 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=659 msgID=660 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=659 msgID=660 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=660 msgID=661 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=660 msgID=661 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=661 msgID=662 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=661 msgID=662 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=662 msgID=663 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=662 msgID=663 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=663 msgID=664 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=663 msgID=664 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=664 msgID=665 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=664 msgID=665 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=665 msgID=666 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=665 msgID=666 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=666 msgID=667 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=666 msgID=667 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=667 msgID=668 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=667 msgID=668 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=668 msgID=669 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=668 msgID=669 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=669 msgID=670 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=669 msgID=670 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=670 msgID=671 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=670 msgID=671 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=671 msgID=672 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=671 msgID=672 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=672 msgID=673 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=672 msgID=673 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=673 msgID=674 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=673 msgID=674 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=674 msgID=675 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=674 msgID=675 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=675 msgID=676 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=675 msgID=676 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=676 msgID=677 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=676 msgID=677 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=677 msgID=678 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=677 msgID=678 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=678 msgID=679 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=678 msgID=679 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=679 msgID=680 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=679 msgID=680 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=680 msgID=681 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=680 msgID=681 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=681 msgID=682 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=681 msgID=682 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=682 msgID=683 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=682 msgID=683 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=683 msgID=684 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=683 msgID=684 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=684 msgID=685 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=684 msgID=685 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=685 msgID=686 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=685 msgID=686 result=0 nentries=0 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=686 msgID=687 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=686 msgID=687 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=687 msgID=688 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=687 msgID=688 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=688 msgID=689 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=688 msgID=689 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=689 msgID=690 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=689 msgID=690 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=690 msgID=691 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=690 msgID=691 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=691 msgID=692 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=691 msgID=692 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=692 msgID=693 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=692 msgID=693 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=693 msgID=694 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=693 msgID=694 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=694 msgID=695 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=694 msgID=695 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=695 msgID=696 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=695 msgID=696 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=696 msgID=697 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=696 msgID=697 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=697 msgID=698 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=697 msgID=698 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=698 msgID=699 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=698 msgID=699 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=699 msgID=700 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=699 msgID=700 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=700 msgID=701 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=700 msgID=701 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=701 msgID=702 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=701 msgID=702 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=702 msgID=703 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=702 msgID=703 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=703 msgID=704 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=703 msgID=704 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=704 msgID=705 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=704 msgID=705 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=705 msgID=706 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=705 msgID=706 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=706 msgID=707 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=706 msgID=707 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=707 msgID=708 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=707 msgID=708 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=708 msgID=709 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=708 msgID=709 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=709 msgID=710 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=709 msgID=710 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=710 msgID=711 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=710 msgID=711 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=711 msgID=712 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=711 msgID=712 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=712 msgID=713 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=712 msgID=713 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=713 msgID=714 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=713 msgID=714 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=714 msgID=715 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=714 msgID=715 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=715 msgID=716 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=715 msgID=716 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=716 msgID=717 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=716 msgID=717 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=717 msgID=718 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=717 msgID=718 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=718 msgID=719 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=718 msgID=719 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=719 msgID=720 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=719 msgID=720 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=720 msgID=721 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=720 msgID=721 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=721 msgID=722 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=721 msgID=722 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=722 msgID=723 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=722 msgID=723 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=723 msgID=724 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=723 msgID=724 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=724 msgID=725 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=724 msgID=725 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=725 msgID=726 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=725 msgID=726 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=726 msgID=727 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=726 msgID=727 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=727 msgID=728 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=727 msgID=728 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=728 msgID=729 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=728 msgID=729 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=729 msgID=730 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=729 msgID=730 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=730 msgID=731 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=730 msgID=731 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=731 msgID=732 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=731 msgID=732 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=732 msgID=733 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=732 msgID=733 result=0 nentries=3 etime=2 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=733 msgID=734 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=733 msgID=734 result=0 nentries=1 etime=2 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=734 msgID=735 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=734 msgID=735 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=735 msgID=736 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=735 msgID=736 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=736 msgID=737 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=736 msgID=737 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=737 msgID=738 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=737 msgID=738 result=0 nentries=1 etime=4 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=738 msgID=739 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=738 msgID=739 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=739 msgID=740 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=739 msgID=740 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=740 msgID=741 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=740 msgID=741 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=741 msgID=742 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=741 msgID=742 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=742 msgID=743 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=742 msgID=743 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=743 msgID=744 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=743 msgID=744 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=744 msgID=745 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=744 msgID=745 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=745 msgID=746 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=745 msgID=746 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=746 msgID=747 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=746 msgID=747 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=747 msgID=748 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=747 msgID=748 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=748 msgID=749 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=748 msgID=749 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=749 msgID=750 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=749 msgID=750 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=750 msgID=751 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=750 msgID=751 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=751 msgID=752 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=751 msgID=752 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=752 msgID=753 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=752 msgID=753 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=753 msgID=754 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=753 msgID=754 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=754 msgID=755 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=754 msgID=755 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=755 msgID=756 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=755 msgID=756 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=756 msgID=757 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=756 msgID=757 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=757 msgID=758 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=757 msgID=758 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=758 msgID=759 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=758 msgID=759 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=759 msgID=760 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=759 msgID=760 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=760 msgID=761 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=760 msgID=761 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=761 msgID=762 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=761 msgID=762 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=762 msgID=763 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=762 msgID=763 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=763 msgID=764 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=763 msgID=764 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=764 msgID=765 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=764 msgID=765 result=0 nentries=42 etime=91 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=765 msgID=766 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=765 msgID=766 result=0 nentries=0 etime=0 +[06/Mar/2015:19:13:12 +0100] SEARCH REQ conn=0 op=766 msgID=767 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:12 +0100] SEARCH RES conn=0 op=766 msgID=767 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=767 msgID=768 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=767 msgID=768 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=768 msgID=769 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=768 msgID=769 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=769 msgID=770 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=769 msgID=770 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=770 msgID=771 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=770 msgID=771 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=771 msgID=772 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=771 msgID=772 result=0 nentries=5 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=772 msgID=773 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=772 msgID=773 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=773 msgID=774 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=773 msgID=774 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=774 msgID=775 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=774 msgID=775 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=775 msgID=776 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=775 msgID=776 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=776 msgID=777 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=776 msgID=777 result=0 nentries=1 etime=2 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=777 msgID=778 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=777 msgID=778 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=778 msgID=779 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=778 msgID=779 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=779 msgID=780 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=779 msgID=780 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=780 msgID=781 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=780 msgID=781 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=781 msgID=782 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=781 msgID=782 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=782 msgID=783 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=782 msgID=783 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=783 msgID=784 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=783 msgID=784 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=784 msgID=785 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=784 msgID=785 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=785 msgID=786 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=785 msgID=786 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=786 msgID=787 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=786 msgID=787 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=787 msgID=788 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=787 msgID=788 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=788 msgID=789 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=788 msgID=789 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=789 msgID=790 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=789 msgID=790 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=790 msgID=791 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=790 msgID=791 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=791 msgID=792 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=791 msgID=792 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=792 msgID=793 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=792 msgID=793 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=793 msgID=794 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=793 msgID=794 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=794 msgID=795 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=794 msgID=795 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=795 msgID=796 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=795 msgID=796 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=796 msgID=797 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=796 msgID=797 result=0 nentries=9 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=797 msgID=798 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=797 msgID=798 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=798 msgID=799 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=798 msgID=799 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=799 msgID=800 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=799 msgID=800 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=800 msgID=801 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=800 msgID=801 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=801 msgID=802 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=801 msgID=802 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=802 msgID=803 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=802 msgID=803 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=803 msgID=804 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=803 msgID=804 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=804 msgID=805 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=804 msgID=805 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=805 msgID=806 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=805 msgID=806 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=806 msgID=807 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=806 msgID=807 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=807 msgID=808 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=807 msgID=808 result=0 nentries=13 etime=4 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=808 msgID=809 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=808 msgID=809 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=809 msgID=810 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=809 msgID=810 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=810 msgID=811 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=810 msgID=811 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=811 msgID=812 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=811 msgID=812 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=812 msgID=813 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=812 msgID=813 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=813 msgID=814 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=813 msgID=814 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=814 msgID=815 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=814 msgID=815 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=815 msgID=816 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=815 msgID=816 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=816 msgID=817 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=816 msgID=817 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=817 msgID=818 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=817 msgID=818 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=818 msgID=819 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=818 msgID=819 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=819 msgID=820 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=819 msgID=820 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=820 msgID=821 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=820 msgID=821 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=821 msgID=822 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=821 msgID=822 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=822 msgID=823 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=822 msgID=823 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=823 msgID=824 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=823 msgID=824 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=824 msgID=825 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=824 msgID=825 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=825 msgID=826 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=825 msgID=826 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=826 msgID=827 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=826 msgID=827 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=827 msgID=828 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=827 msgID=828 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=828 msgID=829 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=828 msgID=829 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=829 msgID=830 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=829 msgID=830 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=830 msgID=831 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=830 msgID=831 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=831 msgID=832 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=831 msgID=832 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=832 msgID=833 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=832 msgID=833 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=833 msgID=834 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=833 msgID=834 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=834 msgID=835 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=834 msgID=835 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=835 msgID=836 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=835 msgID=836 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=836 msgID=837 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=836 msgID=837 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=837 msgID=838 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=837 msgID=838 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=838 msgID=839 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=838 msgID=839 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=839 msgID=840 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=839 msgID=840 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=840 msgID=841 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=840 msgID=841 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=841 msgID=842 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=841 msgID=842 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=842 msgID=843 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=842 msgID=843 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=843 msgID=844 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=843 msgID=844 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=844 msgID=845 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=844 msgID=845 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=845 msgID=846 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=845 msgID=846 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=846 msgID=847 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=846 msgID=847 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=847 msgID=848 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=847 msgID=848 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=848 msgID=849 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=848 msgID=849 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=849 msgID=850 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=849 msgID=850 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=850 msgID=851 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=850 msgID=851 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=851 msgID=852 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=851 msgID=852 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=852 msgID=853 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=852 msgID=853 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=853 msgID=854 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=853 msgID=854 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=854 msgID=855 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=854 msgID=855 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=855 msgID=856 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=855 msgID=856 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=856 msgID=857 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=856 msgID=857 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=857 msgID=858 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=857 msgID=858 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=858 msgID=859 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=858 msgID=859 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=859 msgID=860 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=859 msgID=860 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=860 msgID=861 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=860 msgID=861 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=861 msgID=862 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=861 msgID=862 result=0 nentries=1 etime=2 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=862 msgID=863 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=862 msgID=863 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=863 msgID=864 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=863 msgID=864 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=864 msgID=865 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=864 msgID=865 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=865 msgID=866 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=865 msgID=866 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=866 msgID=867 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=866 msgID=867 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=867 msgID=868 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=867 msgID=868 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=868 msgID=869 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=868 msgID=869 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=869 msgID=870 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=869 msgID=870 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=870 msgID=871 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=870 msgID=871 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=871 msgID=872 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=871 msgID=872 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=872 msgID=873 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=872 msgID=873 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=873 msgID=874 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=873 msgID=874 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=874 msgID=875 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=874 msgID=875 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=875 msgID=876 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=875 msgID=876 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=876 msgID=877 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=876 msgID=877 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=877 msgID=878 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=877 msgID=878 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=878 msgID=879 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=878 msgID=879 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=879 msgID=880 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=879 msgID=880 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=880 msgID=881 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=880 msgID=881 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=881 msgID=882 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=881 msgID=882 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=882 msgID=883 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=882 msgID=883 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=883 msgID=884 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=883 msgID=884 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=884 msgID=885 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=884 msgID=885 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=885 msgID=886 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=885 msgID=886 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=886 msgID=887 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=886 msgID=887 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=887 msgID=888 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=887 msgID=888 result=0 nentries=1 etime=3 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=888 msgID=889 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=888 msgID=889 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=889 msgID=890 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=889 msgID=890 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=890 msgID=891 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=890 msgID=891 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=891 msgID=892 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=891 msgID=892 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=892 msgID=893 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=892 msgID=893 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=893 msgID=894 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=893 msgID=894 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=894 msgID=895 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=894 msgID=895 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=895 msgID=896 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=895 msgID=896 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=896 msgID=897 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=896 msgID=897 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=897 msgID=898 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=897 msgID=898 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=898 msgID=899 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=898 msgID=899 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=899 msgID=900 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=899 msgID=900 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=900 msgID=901 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=900 msgID=901 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=901 msgID=902 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=901 msgID=902 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=902 msgID=903 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=902 msgID=903 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=903 msgID=904 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=903 msgID=904 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=904 msgID=905 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=904 msgID=905 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=905 msgID=906 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=905 msgID=906 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=906 msgID=907 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=906 msgID=907 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=907 msgID=908 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=907 msgID=908 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=908 msgID=909 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=908 msgID=909 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=909 msgID=910 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=909 msgID=910 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=910 msgID=911 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=910 msgID=911 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=911 msgID=912 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=911 msgID=912 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=912 msgID=913 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=912 msgID=913 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=913 msgID=914 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=913 msgID=914 result=0 nentries=1 etime=3 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=914 msgID=915 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=914 msgID=915 result=0 nentries=1 etime=3 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=915 msgID=916 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=915 msgID=916 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=916 msgID=917 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=916 msgID=917 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=917 msgID=918 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=917 msgID=918 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=918 msgID=919 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=918 msgID=919 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=919 msgID=920 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=919 msgID=920 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=920 msgID=921 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=920 msgID=921 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=921 msgID=922 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=921 msgID=922 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=922 msgID=923 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=922 msgID=923 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=923 msgID=924 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=923 msgID=924 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=924 msgID=925 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=924 msgID=925 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=925 msgID=926 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=925 msgID=926 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=926 msgID=927 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=926 msgID=927 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=927 msgID=928 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=927 msgID=928 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=928 msgID=929 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=928 msgID=929 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=929 msgID=930 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=929 msgID=930 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=930 msgID=931 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=930 msgID=931 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=931 msgID=932 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=931 msgID=932 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=932 msgID=933 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=932 msgID=933 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=933 msgID=934 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=933 msgID=934 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=934 msgID=935 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=934 msgID=935 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=935 msgID=936 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=935 msgID=936 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=936 msgID=937 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=936 msgID=937 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=937 msgID=938 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=937 msgID=938 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=938 msgID=939 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=938 msgID=939 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=939 msgID=940 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=939 msgID=940 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=940 msgID=941 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=940 msgID=941 result=0 nentries=0 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=941 msgID=942 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=941 msgID=942 result=0 nentries=1 etime=5 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=942 msgID=943 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=942 msgID=943 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=943 msgID=944 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=943 msgID=944 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=944 msgID=945 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=944 msgID=945 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=945 msgID=946 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=945 msgID=946 result=0 nentries=1 etime=14 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=946 msgID=947 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=946 msgID=947 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=947 msgID=948 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=947 msgID=948 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=948 msgID=949 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=948 msgID=949 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=949 msgID=950 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=949 msgID=950 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=950 msgID=951 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=950 msgID=951 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=951 msgID=952 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=951 msgID=952 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=952 msgID=953 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=952 msgID=953 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=953 msgID=954 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=953 msgID=954 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=954 msgID=955 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=954 msgID=955 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=955 msgID=956 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=955 msgID=956 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=956 msgID=957 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=956 msgID=957 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=957 msgID=958 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=957 msgID=958 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=958 msgID=959 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=958 msgID=959 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=959 msgID=960 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=959 msgID=960 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=960 msgID=961 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=960 msgID=961 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=961 msgID=962 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=961 msgID=962 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=962 msgID=963 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=962 msgID=963 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=963 msgID=964 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=963 msgID=964 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=964 msgID=965 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=964 msgID=965 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=965 msgID=966 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=965 msgID=966 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=966 msgID=967 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=966 msgID=967 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=967 msgID=968 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=967 msgID=968 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=968 msgID=969 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=968 msgID=969 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=969 msgID=970 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=969 msgID=970 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=970 msgID=971 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=970 msgID=971 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=971 msgID=972 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=971 msgID=972 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=972 msgID=973 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=972 msgID=973 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=973 msgID=974 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=973 msgID=974 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=974 msgID=975 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=974 msgID=975 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=975 msgID=976 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=975 msgID=976 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=976 msgID=977 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=976 msgID=977 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=977 msgID=978 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=977 msgID=978 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=978 msgID=979 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=978 msgID=979 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=979 msgID=980 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=979 msgID=980 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=980 msgID=981 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=980 msgID=981 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=981 msgID=982 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=981 msgID=982 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=982 msgID=983 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=982 msgID=983 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=983 msgID=984 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=983 msgID=984 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=984 msgID=985 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=984 msgID=985 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=985 msgID=986 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=985 msgID=986 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=986 msgID=987 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=986 msgID=987 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=987 msgID=988 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=987 msgID=988 result=0 nentries=3 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=988 msgID=989 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=988 msgID=989 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=989 msgID=990 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=989 msgID=990 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=990 msgID=991 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=990 msgID=991 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=991 msgID=992 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=991 msgID=992 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=992 msgID=993 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=992 msgID=993 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=993 msgID=994 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=993 msgID=994 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=994 msgID=995 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=994 msgID=995 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=995 msgID=996 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=995 msgID=996 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=996 msgID=997 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=996 msgID=997 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=997 msgID=998 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=997 msgID=998 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=998 msgID=999 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=998 msgID=999 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=999 msgID=1000 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=999 msgID=1000 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1000 msgID=1001 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1000 msgID=1001 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1001 msgID=1002 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1001 msgID=1002 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1002 msgID=1003 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1002 msgID=1003 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1003 msgID=1004 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1003 msgID=1004 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1004 msgID=1005 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1004 msgID=1005 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1005 msgID=1006 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1005 msgID=1006 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1006 msgID=1007 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1006 msgID=1007 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1007 msgID=1008 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1007 msgID=1008 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1008 msgID=1009 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1008 msgID=1009 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1009 msgID=1010 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1009 msgID=1010 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1010 msgID=1011 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1010 msgID=1011 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1011 msgID=1012 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1011 msgID=1012 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1012 msgID=1013 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1012 msgID=1013 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1013 msgID=1014 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1013 msgID=1014 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1014 msgID=1015 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1014 msgID=1015 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1015 msgID=1016 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1015 msgID=1016 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1016 msgID=1017 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1016 msgID=1017 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1017 msgID=1018 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1017 msgID=1018 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1018 msgID=1019 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1018 msgID=1019 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1019 msgID=1020 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1019 msgID=1020 result=0 nentries=42 etime=33 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1020 msgID=1021 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1020 msgID=1021 result=0 nentries=0 etime=1 +[06/Mar/2015:19:13:33 +0100] SEARCH REQ conn=0 op=1021 msgID=1022 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:33 +0100] SEARCH RES conn=0 op=1021 msgID=1022 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1022 msgID=1023 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1022 msgID=1023 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1023 msgID=1024 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1023 msgID=1024 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1024 msgID=1025 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1024 msgID=1025 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1025 msgID=1026 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1025 msgID=1026 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1026 msgID=1027 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1026 msgID=1027 result=0 nentries=5 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1027 msgID=1028 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1027 msgID=1028 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1028 msgID=1029 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1028 msgID=1029 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1029 msgID=1030 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1029 msgID=1030 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1030 msgID=1031 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1030 msgID=1031 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1031 msgID=1032 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1031 msgID=1032 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1032 msgID=1033 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1032 msgID=1033 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1033 msgID=1034 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1033 msgID=1034 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1034 msgID=1035 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1034 msgID=1035 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1035 msgID=1036 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1035 msgID=1036 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1036 msgID=1037 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1036 msgID=1037 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1037 msgID=1038 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1037 msgID=1038 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1038 msgID=1039 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1038 msgID=1039 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1039 msgID=1040 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1039 msgID=1040 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1040 msgID=1041 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1040 msgID=1041 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1041 msgID=1042 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1041 msgID=1042 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1042 msgID=1043 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1042 msgID=1043 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1043 msgID=1044 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1043 msgID=1044 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1044 msgID=1045 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1044 msgID=1045 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1045 msgID=1046 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1045 msgID=1046 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1046 msgID=1047 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1046 msgID=1047 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1047 msgID=1048 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1047 msgID=1048 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1048 msgID=1049 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1048 msgID=1049 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1049 msgID=1050 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1049 msgID=1050 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1050 msgID=1051 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1050 msgID=1051 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1051 msgID=1052 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1051 msgID=1052 result=0 nentries=9 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1052 msgID=1053 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1052 msgID=1053 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1053 msgID=1054 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1053 msgID=1054 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1054 msgID=1055 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1054 msgID=1055 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1055 msgID=1056 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1055 msgID=1056 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1056 msgID=1057 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1056 msgID=1057 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1057 msgID=1058 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1057 msgID=1058 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1058 msgID=1059 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1058 msgID=1059 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1059 msgID=1060 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1059 msgID=1060 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1060 msgID=1061 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1060 msgID=1061 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1061 msgID=1062 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1061 msgID=1062 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1062 msgID=1063 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1062 msgID=1063 result=0 nentries=13 etime=10 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1063 msgID=1064 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1063 msgID=1064 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1064 msgID=1065 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1064 msgID=1065 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1065 msgID=1066 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1065 msgID=1066 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1066 msgID=1067 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1066 msgID=1067 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1067 msgID=1068 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1067 msgID=1068 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1068 msgID=1069 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1068 msgID=1069 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1069 msgID=1070 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1069 msgID=1070 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1070 msgID=1071 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1070 msgID=1071 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1071 msgID=1072 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1071 msgID=1072 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1072 msgID=1073 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1072 msgID=1073 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1073 msgID=1074 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1073 msgID=1074 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1074 msgID=1075 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1074 msgID=1075 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1075 msgID=1076 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1075 msgID=1076 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1076 msgID=1077 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1076 msgID=1077 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1077 msgID=1078 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1077 msgID=1078 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1078 msgID=1079 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1078 msgID=1079 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1079 msgID=1080 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1079 msgID=1080 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1080 msgID=1081 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1080 msgID=1081 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1081 msgID=1082 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1081 msgID=1082 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1082 msgID=1083 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1082 msgID=1083 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1083 msgID=1084 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1083 msgID=1084 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1084 msgID=1085 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1084 msgID=1085 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1085 msgID=1086 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1085 msgID=1086 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1086 msgID=1087 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1086 msgID=1087 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1087 msgID=1088 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1087 msgID=1088 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1088 msgID=1089 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1088 msgID=1089 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1089 msgID=1090 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1089 msgID=1090 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1090 msgID=1091 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1090 msgID=1091 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1091 msgID=1092 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1091 msgID=1092 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1092 msgID=1093 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1092 msgID=1093 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1093 msgID=1094 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1093 msgID=1094 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1094 msgID=1095 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1094 msgID=1095 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1095 msgID=1096 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1095 msgID=1096 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1096 msgID=1097 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1096 msgID=1097 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1097 msgID=1098 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1097 msgID=1098 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1098 msgID=1099 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1098 msgID=1099 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1099 msgID=1100 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1099 msgID=1100 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1100 msgID=1101 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1100 msgID=1101 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1101 msgID=1102 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1101 msgID=1102 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1102 msgID=1103 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1102 msgID=1103 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1103 msgID=1104 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1103 msgID=1104 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1104 msgID=1105 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1104 msgID=1105 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1105 msgID=1106 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1105 msgID=1106 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1106 msgID=1107 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1106 msgID=1107 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1107 msgID=1108 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1107 msgID=1108 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1108 msgID=1109 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1108 msgID=1109 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1109 msgID=1110 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1109 msgID=1110 result=0 nentries=1 etime=2 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1110 msgID=1111 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1110 msgID=1111 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1111 msgID=1112 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1111 msgID=1112 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1112 msgID=1113 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1112 msgID=1113 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1113 msgID=1114 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1113 msgID=1114 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1114 msgID=1115 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1114 msgID=1115 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1115 msgID=1116 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1115 msgID=1116 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1116 msgID=1117 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1116 msgID=1117 result=0 nentries=1 etime=2 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1117 msgID=1118 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1117 msgID=1118 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1118 msgID=1119 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1118 msgID=1119 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1119 msgID=1120 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1119 msgID=1120 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1120 msgID=1121 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1120 msgID=1121 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1121 msgID=1122 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1121 msgID=1122 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1122 msgID=1123 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1122 msgID=1123 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1123 msgID=1124 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1123 msgID=1124 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1124 msgID=1125 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1124 msgID=1125 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1125 msgID=1126 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1125 msgID=1126 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1126 msgID=1127 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1126 msgID=1127 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1127 msgID=1128 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1127 msgID=1128 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1128 msgID=1129 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1128 msgID=1129 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1129 msgID=1130 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1129 msgID=1130 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1130 msgID=1131 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1130 msgID=1131 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1131 msgID=1132 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1131 msgID=1132 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1132 msgID=1133 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1132 msgID=1133 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1133 msgID=1134 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1133 msgID=1134 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1134 msgID=1135 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1134 msgID=1135 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1135 msgID=1136 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1135 msgID=1136 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1136 msgID=1137 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1136 msgID=1137 result=0 nentries=1 etime=2 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1137 msgID=1138 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1137 msgID=1138 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1138 msgID=1139 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1138 msgID=1139 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1139 msgID=1140 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1139 msgID=1140 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1140 msgID=1141 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1140 msgID=1141 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1141 msgID=1142 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1141 msgID=1142 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1142 msgID=1143 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1142 msgID=1143 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1143 msgID=1144 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1143 msgID=1144 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1144 msgID=1145 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1144 msgID=1145 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1145 msgID=1146 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1145 msgID=1146 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1146 msgID=1147 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1146 msgID=1147 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1147 msgID=1148 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1147 msgID=1148 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1148 msgID=1149 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1148 msgID=1149 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1149 msgID=1150 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1149 msgID=1150 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1150 msgID=1151 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1150 msgID=1151 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1151 msgID=1152 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1151 msgID=1152 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1152 msgID=1153 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1152 msgID=1153 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1153 msgID=1154 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1153 msgID=1154 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1154 msgID=1155 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1154 msgID=1155 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1155 msgID=1156 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1155 msgID=1156 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1156 msgID=1157 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1156 msgID=1157 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1157 msgID=1158 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1157 msgID=1158 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1158 msgID=1159 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1158 msgID=1159 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1159 msgID=1160 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1159 msgID=1160 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1160 msgID=1161 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1160 msgID=1161 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1161 msgID=1162 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1161 msgID=1162 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1162 msgID=1163 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1162 msgID=1163 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1163 msgID=1164 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1163 msgID=1164 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1164 msgID=1165 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1164 msgID=1165 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1165 msgID=1166 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1165 msgID=1166 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1166 msgID=1167 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1166 msgID=1167 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1167 msgID=1168 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1167 msgID=1168 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1168 msgID=1169 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1168 msgID=1169 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1169 msgID=1170 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1169 msgID=1170 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1170 msgID=1171 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1170 msgID=1171 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1171 msgID=1172 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1171 msgID=1172 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1172 msgID=1173 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1172 msgID=1173 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1173 msgID=1174 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1173 msgID=1174 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1174 msgID=1175 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1174 msgID=1175 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1175 msgID=1176 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1175 msgID=1176 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1176 msgID=1177 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1176 msgID=1177 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1177 msgID=1178 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1177 msgID=1178 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1178 msgID=1179 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1178 msgID=1179 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1179 msgID=1180 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1179 msgID=1180 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1180 msgID=1181 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1180 msgID=1181 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1181 msgID=1182 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1181 msgID=1182 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1182 msgID=1183 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1182 msgID=1183 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1183 msgID=1184 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1183 msgID=1184 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1184 msgID=1185 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1184 msgID=1185 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1185 msgID=1186 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1185 msgID=1186 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1186 msgID=1187 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1186 msgID=1187 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1187 msgID=1188 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1187 msgID=1188 result=0 nentries=1 etime=4 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1188 msgID=1189 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1188 msgID=1189 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1189 msgID=1190 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1189 msgID=1190 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1190 msgID=1191 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1190 msgID=1191 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1191 msgID=1192 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1191 msgID=1192 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1192 msgID=1193 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1192 msgID=1193 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1193 msgID=1194 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1193 msgID=1194 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1194 msgID=1195 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1194 msgID=1195 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1195 msgID=1196 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1195 msgID=1196 result=0 nentries=0 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1196 msgID=1197 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1196 msgID=1197 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1197 msgID=1198 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1197 msgID=1198 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1198 msgID=1199 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1198 msgID=1199 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1199 msgID=1200 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1199 msgID=1200 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1200 msgID=1201 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1200 msgID=1201 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1201 msgID=1202 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1201 msgID=1202 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1202 msgID=1203 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1202 msgID=1203 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1203 msgID=1204 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1203 msgID=1204 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1204 msgID=1205 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1204 msgID=1205 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1205 msgID=1206 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1205 msgID=1206 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1206 msgID=1207 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1206 msgID=1207 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1207 msgID=1208 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1207 msgID=1208 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1208 msgID=1209 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1208 msgID=1209 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1209 msgID=1210 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1209 msgID=1210 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1210 msgID=1211 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1210 msgID=1211 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1211 msgID=1212 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1211 msgID=1212 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1212 msgID=1213 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1212 msgID=1213 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1213 msgID=1214 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1213 msgID=1214 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1214 msgID=1215 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1214 msgID=1215 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1215 msgID=1216 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1215 msgID=1216 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1216 msgID=1217 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1216 msgID=1217 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1217 msgID=1218 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1217 msgID=1218 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1218 msgID=1219 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1218 msgID=1219 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1219 msgID=1220 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1219 msgID=1220 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1220 msgID=1221 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1220 msgID=1221 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1221 msgID=1222 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1221 msgID=1222 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1222 msgID=1223 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1222 msgID=1223 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1223 msgID=1224 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1223 msgID=1224 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1224 msgID=1225 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1224 msgID=1225 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1225 msgID=1226 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1225 msgID=1226 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1226 msgID=1227 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1226 msgID=1227 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1227 msgID=1228 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1227 msgID=1228 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1228 msgID=1229 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1228 msgID=1229 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1229 msgID=1230 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1229 msgID=1230 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1230 msgID=1231 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1230 msgID=1231 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1231 msgID=1232 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1231 msgID=1232 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1232 msgID=1233 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1232 msgID=1233 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1233 msgID=1234 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1233 msgID=1234 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1234 msgID=1235 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1234 msgID=1235 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1235 msgID=1236 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1235 msgID=1236 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1236 msgID=1237 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1236 msgID=1237 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1237 msgID=1238 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1237 msgID=1238 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1238 msgID=1239 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1238 msgID=1239 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1239 msgID=1240 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1239 msgID=1240 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1240 msgID=1241 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1240 msgID=1241 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1241 msgID=1242 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1241 msgID=1242 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1242 msgID=1243 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1242 msgID=1243 result=0 nentries=3 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1243 msgID=1244 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1243 msgID=1244 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1244 msgID=1245 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1244 msgID=1245 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1245 msgID=1246 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1245 msgID=1246 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1246 msgID=1247 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1246 msgID=1247 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1247 msgID=1248 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1247 msgID=1248 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1248 msgID=1249 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1248 msgID=1249 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1249 msgID=1250 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1249 msgID=1250 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1250 msgID=1251 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1250 msgID=1251 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1251 msgID=1252 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1251 msgID=1252 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1252 msgID=1253 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1252 msgID=1253 result=0 nentries=1 etime=2 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1253 msgID=1254 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1253 msgID=1254 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1254 msgID=1255 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1254 msgID=1255 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1255 msgID=1256 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1255 msgID=1256 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1256 msgID=1257 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1256 msgID=1257 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1257 msgID=1258 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1257 msgID=1258 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1258 msgID=1259 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1258 msgID=1259 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1259 msgID=1260 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1259 msgID=1260 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1260 msgID=1261 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1260 msgID=1261 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1261 msgID=1262 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1261 msgID=1262 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1262 msgID=1263 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1262 msgID=1263 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1263 msgID=1264 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1263 msgID=1264 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1264 msgID=1265 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1264 msgID=1265 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1265 msgID=1266 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1265 msgID=1266 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1266 msgID=1267 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1266 msgID=1267 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1267 msgID=1268 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1267 msgID=1268 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1268 msgID=1269 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1268 msgID=1269 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1269 msgID=1270 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1269 msgID=1270 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1270 msgID=1271 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1270 msgID=1271 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1271 msgID=1272 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1271 msgID=1272 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1272 msgID=1273 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1272 msgID=1273 result=0 nentries=1 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1273 msgID=1274 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1273 msgID=1274 result=0 nentries=1 etime=1 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1274 msgID=1275 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1274 msgID=1275 result=0 nentries=42 etime=37 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1275 msgID=1276 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1275 msgID=1276 result=0 nentries=0 etime=0 +[06/Mar/2015:19:13:53 +0100] SEARCH REQ conn=0 op=1276 msgID=1277 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:13:53 +0100] SEARCH RES conn=0 op=1276 msgID=1277 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1277 msgID=1278 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1277 msgID=1278 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1278 msgID=1279 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1278 msgID=1279 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1279 msgID=1280 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1279 msgID=1280 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1280 msgID=1281 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1280 msgID=1281 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1281 msgID=1282 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1281 msgID=1282 result=0 nentries=5 etime=2 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1282 msgID=1283 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1282 msgID=1283 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1283 msgID=1284 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1283 msgID=1284 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1284 msgID=1285 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1284 msgID=1285 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1285 msgID=1286 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1285 msgID=1286 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1286 msgID=1287 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1286 msgID=1287 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1287 msgID=1288 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1287 msgID=1288 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1288 msgID=1289 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1288 msgID=1289 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1289 msgID=1290 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1289 msgID=1290 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1290 msgID=1291 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1290 msgID=1291 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1291 msgID=1292 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1291 msgID=1292 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1292 msgID=1293 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1292 msgID=1293 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1293 msgID=1294 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1293 msgID=1294 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1294 msgID=1295 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1294 msgID=1295 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1295 msgID=1296 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1295 msgID=1296 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1296 msgID=1297 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1296 msgID=1297 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1297 msgID=1298 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1297 msgID=1298 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1298 msgID=1299 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1298 msgID=1299 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1299 msgID=1300 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1299 msgID=1300 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1300 msgID=1301 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1300 msgID=1301 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1301 msgID=1302 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1301 msgID=1302 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1302 msgID=1303 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1302 msgID=1303 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1303 msgID=1304 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1303 msgID=1304 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1304 msgID=1305 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1304 msgID=1305 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1305 msgID=1306 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1305 msgID=1306 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1306 msgID=1307 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1306 msgID=1307 result=0 nentries=9 etime=2 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1307 msgID=1308 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1307 msgID=1308 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1308 msgID=1309 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1308 msgID=1309 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1309 msgID=1310 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1309 msgID=1310 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1310 msgID=1311 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1310 msgID=1311 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1311 msgID=1312 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1311 msgID=1312 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1312 msgID=1313 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1312 msgID=1313 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1313 msgID=1314 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1313 msgID=1314 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1314 msgID=1315 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1314 msgID=1315 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1315 msgID=1316 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1315 msgID=1316 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1316 msgID=1317 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1316 msgID=1317 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1317 msgID=1318 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1317 msgID=1318 result=0 nentries=13 etime=2 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1318 msgID=1319 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1318 msgID=1319 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1319 msgID=1320 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1319 msgID=1320 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1320 msgID=1321 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1320 msgID=1321 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1321 msgID=1322 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1321 msgID=1322 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1322 msgID=1323 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1322 msgID=1323 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1323 msgID=1324 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1323 msgID=1324 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1324 msgID=1325 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1324 msgID=1325 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1325 msgID=1326 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1325 msgID=1326 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1326 msgID=1327 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1326 msgID=1327 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1327 msgID=1328 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1327 msgID=1328 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1328 msgID=1329 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1328 msgID=1329 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1329 msgID=1330 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1329 msgID=1330 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1330 msgID=1331 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1330 msgID=1331 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1331 msgID=1332 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1331 msgID=1332 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1332 msgID=1333 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1332 msgID=1333 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1333 msgID=1334 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1333 msgID=1334 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1334 msgID=1335 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1334 msgID=1335 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1335 msgID=1336 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1335 msgID=1336 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1336 msgID=1337 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1336 msgID=1337 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1337 msgID=1338 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1337 msgID=1338 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1338 msgID=1339 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1338 msgID=1339 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1339 msgID=1340 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1339 msgID=1340 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1340 msgID=1341 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1340 msgID=1341 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1341 msgID=1342 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1341 msgID=1342 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1342 msgID=1343 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1342 msgID=1343 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1343 msgID=1344 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1343 msgID=1344 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1344 msgID=1345 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1344 msgID=1345 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1345 msgID=1346 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1345 msgID=1346 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1346 msgID=1347 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1346 msgID=1347 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1347 msgID=1348 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1347 msgID=1348 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1348 msgID=1349 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1348 msgID=1349 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1349 msgID=1350 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1349 msgID=1350 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1350 msgID=1351 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1350 msgID=1351 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1351 msgID=1352 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1351 msgID=1352 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1352 msgID=1353 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1352 msgID=1353 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1353 msgID=1354 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1353 msgID=1354 result=0 nentries=1 etime=2 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1354 msgID=1355 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1354 msgID=1355 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1355 msgID=1356 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1355 msgID=1356 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1356 msgID=1357 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1356 msgID=1357 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1357 msgID=1358 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1357 msgID=1358 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1358 msgID=1359 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1358 msgID=1359 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1359 msgID=1360 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1359 msgID=1360 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1360 msgID=1361 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1360 msgID=1361 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1361 msgID=1362 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1361 msgID=1362 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1362 msgID=1363 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1362 msgID=1363 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1363 msgID=1364 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1363 msgID=1364 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1364 msgID=1365 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1364 msgID=1365 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1365 msgID=1366 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1365 msgID=1366 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1366 msgID=1367 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1366 msgID=1367 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1367 msgID=1368 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1367 msgID=1368 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1368 msgID=1369 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1368 msgID=1369 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1369 msgID=1370 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1369 msgID=1370 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1370 msgID=1371 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1370 msgID=1371 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1371 msgID=1372 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1371 msgID=1372 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1372 msgID=1373 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1372 msgID=1373 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1373 msgID=1374 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1373 msgID=1374 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1374 msgID=1375 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1374 msgID=1375 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1375 msgID=1376 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1375 msgID=1376 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1376 msgID=1377 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1376 msgID=1377 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1377 msgID=1378 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1377 msgID=1378 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1378 msgID=1379 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1378 msgID=1379 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1379 msgID=1380 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1379 msgID=1380 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1380 msgID=1381 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1380 msgID=1381 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1381 msgID=1382 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1381 msgID=1382 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1382 msgID=1383 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1382 msgID=1383 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1383 msgID=1384 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1383 msgID=1384 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1384 msgID=1385 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1384 msgID=1385 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1385 msgID=1386 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1385 msgID=1386 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1386 msgID=1387 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1386 msgID=1387 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1387 msgID=1388 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1387 msgID=1388 result=0 nentries=1 etime=2 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1388 msgID=1389 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1388 msgID=1389 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1389 msgID=1390 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1389 msgID=1390 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1390 msgID=1391 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1390 msgID=1391 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1391 msgID=1392 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1391 msgID=1392 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1392 msgID=1393 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1392 msgID=1393 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1393 msgID=1394 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1393 msgID=1394 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1394 msgID=1395 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1394 msgID=1395 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1395 msgID=1396 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1395 msgID=1396 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1396 msgID=1397 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1396 msgID=1397 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1397 msgID=1398 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1397 msgID=1398 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1398 msgID=1399 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1398 msgID=1399 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1399 msgID=1400 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1399 msgID=1400 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1400 msgID=1401 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1400 msgID=1401 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1401 msgID=1402 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1401 msgID=1402 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1402 msgID=1403 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1402 msgID=1403 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1403 msgID=1404 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1403 msgID=1404 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1404 msgID=1405 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1404 msgID=1405 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1405 msgID=1406 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1405 msgID=1406 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1406 msgID=1407 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1406 msgID=1407 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1407 msgID=1408 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1407 msgID=1408 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1408 msgID=1409 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1408 msgID=1409 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1409 msgID=1410 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1409 msgID=1410 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1410 msgID=1411 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1410 msgID=1411 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1411 msgID=1412 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1411 msgID=1412 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1412 msgID=1413 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1412 msgID=1413 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1413 msgID=1414 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1413 msgID=1414 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1414 msgID=1415 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1414 msgID=1415 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1415 msgID=1416 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1415 msgID=1416 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1416 msgID=1417 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1416 msgID=1417 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1417 msgID=1418 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1417 msgID=1418 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1418 msgID=1419 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1418 msgID=1419 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1419 msgID=1420 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1419 msgID=1420 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1420 msgID=1421 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1420 msgID=1421 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1421 msgID=1422 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1421 msgID=1422 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1422 msgID=1423 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1422 msgID=1423 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1423 msgID=1424 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1423 msgID=1424 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1424 msgID=1425 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1424 msgID=1425 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1425 msgID=1426 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1425 msgID=1426 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1426 msgID=1427 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1426 msgID=1427 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1427 msgID=1428 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1427 msgID=1428 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1428 msgID=1429 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1428 msgID=1429 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1429 msgID=1430 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1429 msgID=1430 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1430 msgID=1431 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1430 msgID=1431 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1431 msgID=1432 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1431 msgID=1432 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1432 msgID=1433 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1432 msgID=1433 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1433 msgID=1434 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1433 msgID=1434 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1434 msgID=1435 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1434 msgID=1435 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1435 msgID=1436 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1435 msgID=1436 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1436 msgID=1437 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1436 msgID=1437 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1437 msgID=1438 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1437 msgID=1438 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1438 msgID=1439 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1438 msgID=1439 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1439 msgID=1440 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1439 msgID=1440 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1440 msgID=1441 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1440 msgID=1441 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1441 msgID=1442 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1441 msgID=1442 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1442 msgID=1443 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1442 msgID=1443 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1443 msgID=1444 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1443 msgID=1444 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1444 msgID=1445 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1444 msgID=1445 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1445 msgID=1446 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1445 msgID=1446 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1446 msgID=1447 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1446 msgID=1447 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1447 msgID=1448 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1447 msgID=1448 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1448 msgID=1449 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1448 msgID=1449 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1449 msgID=1450 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1449 msgID=1450 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1450 msgID=1451 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1450 msgID=1451 result=0 nentries=0 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1451 msgID=1452 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1451 msgID=1452 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1452 msgID=1453 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1452 msgID=1453 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1453 msgID=1454 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1453 msgID=1454 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1454 msgID=1455 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1454 msgID=1455 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1455 msgID=1456 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1455 msgID=1456 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1456 msgID=1457 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1456 msgID=1457 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1457 msgID=1458 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1457 msgID=1458 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1458 msgID=1459 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1458 msgID=1459 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1459 msgID=1460 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1459 msgID=1460 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1460 msgID=1461 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1460 msgID=1461 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1461 msgID=1462 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1461 msgID=1462 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1462 msgID=1463 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1462 msgID=1463 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1463 msgID=1464 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1463 msgID=1464 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1464 msgID=1465 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1464 msgID=1465 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1465 msgID=1466 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1465 msgID=1466 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1466 msgID=1467 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1466 msgID=1467 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1467 msgID=1468 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1467 msgID=1468 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1468 msgID=1469 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1468 msgID=1469 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1469 msgID=1470 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1469 msgID=1470 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1470 msgID=1471 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1470 msgID=1471 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1471 msgID=1472 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1471 msgID=1472 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1472 msgID=1473 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1472 msgID=1473 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1473 msgID=1474 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1473 msgID=1474 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1474 msgID=1475 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1474 msgID=1475 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1475 msgID=1476 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1475 msgID=1476 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1476 msgID=1477 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1476 msgID=1477 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1477 msgID=1478 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1477 msgID=1478 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1478 msgID=1479 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1478 msgID=1479 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1479 msgID=1480 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1479 msgID=1480 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1480 msgID=1481 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1480 msgID=1481 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1481 msgID=1482 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1481 msgID=1482 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1482 msgID=1483 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1482 msgID=1483 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1483 msgID=1484 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1483 msgID=1484 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1484 msgID=1485 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1484 msgID=1485 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1485 msgID=1486 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1485 msgID=1486 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1486 msgID=1487 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1486 msgID=1487 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1487 msgID=1488 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1487 msgID=1488 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1488 msgID=1489 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1488 msgID=1489 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1489 msgID=1490 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1489 msgID=1490 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1490 msgID=1491 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1490 msgID=1491 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1491 msgID=1492 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1491 msgID=1492 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1492 msgID=1493 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1492 msgID=1493 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1493 msgID=1494 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1493 msgID=1494 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1494 msgID=1495 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1494 msgID=1495 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1495 msgID=1496 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1495 msgID=1496 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1496 msgID=1497 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1496 msgID=1497 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1497 msgID=1498 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1497 msgID=1498 result=0 nentries=3 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1498 msgID=1499 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1498 msgID=1499 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1499 msgID=1500 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1499 msgID=1500 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1500 msgID=1501 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1500 msgID=1501 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1501 msgID=1502 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1501 msgID=1502 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1502 msgID=1503 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1502 msgID=1503 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1503 msgID=1504 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1503 msgID=1504 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1504 msgID=1505 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1504 msgID=1505 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1505 msgID=1506 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1505 msgID=1506 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1506 msgID=1507 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1506 msgID=1507 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1507 msgID=1508 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1507 msgID=1508 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1508 msgID=1509 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1508 msgID=1509 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1509 msgID=1510 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1509 msgID=1510 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1510 msgID=1511 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1510 msgID=1511 result=0 nentries=1 etime=2 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1511 msgID=1512 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1511 msgID=1512 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1512 msgID=1513 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1512 msgID=1513 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1513 msgID=1514 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1513 msgID=1514 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1514 msgID=1515 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1514 msgID=1515 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1515 msgID=1516 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1515 msgID=1516 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1516 msgID=1517 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1516 msgID=1517 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1517 msgID=1518 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1517 msgID=1518 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1518 msgID=1519 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1518 msgID=1519 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1519 msgID=1520 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1519 msgID=1520 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1520 msgID=1521 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1520 msgID=1521 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1521 msgID=1522 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1521 msgID=1522 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1522 msgID=1523 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1522 msgID=1523 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1523 msgID=1524 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1523 msgID=1524 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1524 msgID=1525 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1524 msgID=1525 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1525 msgID=1526 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1525 msgID=1526 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1526 msgID=1527 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1526 msgID=1527 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1527 msgID=1528 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1527 msgID=1528 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1528 msgID=1529 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1528 msgID=1529 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1529 msgID=1530 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1529 msgID=1530 result=0 nentries=42 etime=30 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1530 msgID=1531 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1530 msgID=1531 result=0 nentries=0 etime=1 +[06/Mar/2015:19:14:14 +0100] SEARCH REQ conn=0 op=1531 msgID=1532 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:14 +0100] SEARCH RES conn=0 op=1531 msgID=1532 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1532 msgID=1533 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1532 msgID=1533 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1533 msgID=1534 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1533 msgID=1534 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1534 msgID=1535 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1534 msgID=1535 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1535 msgID=1536 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1535 msgID=1536 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1536 msgID=1537 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1536 msgID=1537 result=0 nentries=5 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1537 msgID=1538 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1537 msgID=1538 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1538 msgID=1539 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1538 msgID=1539 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1539 msgID=1540 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1539 msgID=1540 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1540 msgID=1541 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1540 msgID=1541 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1541 msgID=1542 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1541 msgID=1542 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1542 msgID=1543 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1542 msgID=1543 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1543 msgID=1544 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1543 msgID=1544 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1544 msgID=1545 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1544 msgID=1545 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1545 msgID=1546 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1545 msgID=1546 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1546 msgID=1547 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1546 msgID=1547 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1547 msgID=1548 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1547 msgID=1548 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1548 msgID=1549 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1548 msgID=1549 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1549 msgID=1550 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1549 msgID=1550 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1550 msgID=1551 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1550 msgID=1551 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1551 msgID=1552 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1551 msgID=1552 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1552 msgID=1553 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1552 msgID=1553 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1553 msgID=1554 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1553 msgID=1554 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1554 msgID=1555 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1554 msgID=1555 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1555 msgID=1556 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1555 msgID=1556 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1556 msgID=1557 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1556 msgID=1557 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1557 msgID=1558 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1557 msgID=1558 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1558 msgID=1559 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1558 msgID=1559 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1559 msgID=1560 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1559 msgID=1560 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1560 msgID=1561 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1560 msgID=1561 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1561 msgID=1562 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1561 msgID=1562 result=0 nentries=9 etime=2 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1562 msgID=1563 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1562 msgID=1563 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1563 msgID=1564 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1563 msgID=1564 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1564 msgID=1565 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1564 msgID=1565 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1565 msgID=1566 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1565 msgID=1566 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1566 msgID=1567 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1566 msgID=1567 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1567 msgID=1568 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1567 msgID=1568 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1568 msgID=1569 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1568 msgID=1569 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1569 msgID=1570 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1569 msgID=1570 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1570 msgID=1571 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1570 msgID=1571 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1571 msgID=1572 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1571 msgID=1572 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1572 msgID=1573 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1572 msgID=1573 result=0 nentries=13 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1573 msgID=1574 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1573 msgID=1574 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1574 msgID=1575 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1574 msgID=1575 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1575 msgID=1576 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1575 msgID=1576 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1576 msgID=1577 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1576 msgID=1577 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1577 msgID=1578 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1577 msgID=1578 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1578 msgID=1579 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1578 msgID=1579 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1579 msgID=1580 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1579 msgID=1580 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1580 msgID=1581 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1580 msgID=1581 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1581 msgID=1582 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1581 msgID=1582 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1582 msgID=1583 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1582 msgID=1583 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1583 msgID=1584 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1583 msgID=1584 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1584 msgID=1585 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1584 msgID=1585 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1585 msgID=1586 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1585 msgID=1586 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1586 msgID=1587 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1586 msgID=1587 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1587 msgID=1588 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1587 msgID=1588 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1588 msgID=1589 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1588 msgID=1589 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1589 msgID=1590 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1589 msgID=1590 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1590 msgID=1591 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1590 msgID=1591 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1591 msgID=1592 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1591 msgID=1592 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1592 msgID=1593 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1592 msgID=1593 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1593 msgID=1594 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1593 msgID=1594 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1594 msgID=1595 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1594 msgID=1595 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1595 msgID=1596 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1595 msgID=1596 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1596 msgID=1597 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1596 msgID=1597 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1597 msgID=1598 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1597 msgID=1598 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1598 msgID=1599 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1598 msgID=1599 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1599 msgID=1600 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1599 msgID=1600 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1600 msgID=1601 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1600 msgID=1601 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1601 msgID=1602 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1601 msgID=1602 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1602 msgID=1603 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1602 msgID=1603 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1603 msgID=1604 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1603 msgID=1604 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1604 msgID=1605 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1604 msgID=1605 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1605 msgID=1606 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1605 msgID=1606 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1606 msgID=1607 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1606 msgID=1607 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1607 msgID=1608 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1607 msgID=1608 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1608 msgID=1609 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1608 msgID=1609 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1609 msgID=1610 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1609 msgID=1610 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1610 msgID=1611 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1610 msgID=1611 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1611 msgID=1612 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1611 msgID=1612 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1612 msgID=1613 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1612 msgID=1613 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1613 msgID=1614 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1613 msgID=1614 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1614 msgID=1615 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1614 msgID=1615 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1615 msgID=1616 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1615 msgID=1616 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1616 msgID=1617 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1616 msgID=1617 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1617 msgID=1618 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1617 msgID=1618 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1618 msgID=1619 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1618 msgID=1619 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1619 msgID=1620 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1619 msgID=1620 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1620 msgID=1621 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1620 msgID=1621 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1621 msgID=1622 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1621 msgID=1622 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1622 msgID=1623 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1622 msgID=1623 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1623 msgID=1624 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1623 msgID=1624 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1624 msgID=1625 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1624 msgID=1625 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1625 msgID=1626 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1625 msgID=1626 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1626 msgID=1627 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1626 msgID=1627 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1627 msgID=1628 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1627 msgID=1628 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1628 msgID=1629 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1628 msgID=1629 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1629 msgID=1630 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1629 msgID=1630 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1630 msgID=1631 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1630 msgID=1631 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1631 msgID=1632 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1631 msgID=1632 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1632 msgID=1633 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1632 msgID=1633 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1633 msgID=1634 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1633 msgID=1634 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1634 msgID=1635 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1634 msgID=1635 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1635 msgID=1636 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1635 msgID=1636 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1636 msgID=1637 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1636 msgID=1637 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1637 msgID=1638 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1637 msgID=1638 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1638 msgID=1639 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1638 msgID=1639 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1639 msgID=1640 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1639 msgID=1640 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1640 msgID=1641 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1640 msgID=1641 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1641 msgID=1642 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1641 msgID=1642 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1642 msgID=1643 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1642 msgID=1643 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1643 msgID=1644 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1643 msgID=1644 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1644 msgID=1645 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1644 msgID=1645 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1645 msgID=1646 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1645 msgID=1646 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1646 msgID=1647 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1646 msgID=1647 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1647 msgID=1648 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1647 msgID=1648 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1648 msgID=1649 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1648 msgID=1649 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1649 msgID=1650 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1649 msgID=1650 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1650 msgID=1651 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1650 msgID=1651 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1651 msgID=1652 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1651 msgID=1652 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1652 msgID=1653 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1652 msgID=1653 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1653 msgID=1654 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1653 msgID=1654 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1654 msgID=1655 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1654 msgID=1655 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1655 msgID=1656 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1655 msgID=1656 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1656 msgID=1657 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1656 msgID=1657 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1657 msgID=1658 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1657 msgID=1658 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1658 msgID=1659 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1658 msgID=1659 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1659 msgID=1660 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1659 msgID=1660 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1660 msgID=1661 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1660 msgID=1661 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1661 msgID=1662 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1661 msgID=1662 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1662 msgID=1663 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1662 msgID=1663 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1663 msgID=1664 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1663 msgID=1664 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1664 msgID=1665 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1664 msgID=1665 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1665 msgID=1666 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1665 msgID=1666 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1666 msgID=1667 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1666 msgID=1667 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1667 msgID=1668 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1667 msgID=1668 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1668 msgID=1669 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1668 msgID=1669 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1669 msgID=1670 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1669 msgID=1670 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1670 msgID=1671 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1670 msgID=1671 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1671 msgID=1672 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1671 msgID=1672 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1672 msgID=1673 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1672 msgID=1673 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1673 msgID=1674 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1673 msgID=1674 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1674 msgID=1675 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1674 msgID=1675 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1675 msgID=1676 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1675 msgID=1676 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1676 msgID=1677 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1676 msgID=1677 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1677 msgID=1678 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1677 msgID=1678 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1678 msgID=1679 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1678 msgID=1679 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1679 msgID=1680 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1679 msgID=1680 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1680 msgID=1681 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1680 msgID=1681 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1681 msgID=1682 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1681 msgID=1682 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1682 msgID=1683 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1682 msgID=1683 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1683 msgID=1684 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1683 msgID=1684 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1684 msgID=1685 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1684 msgID=1685 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1685 msgID=1686 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1685 msgID=1686 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1686 msgID=1687 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1686 msgID=1687 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1687 msgID=1688 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1687 msgID=1688 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1688 msgID=1689 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1688 msgID=1689 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1689 msgID=1690 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1689 msgID=1690 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1690 msgID=1691 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1690 msgID=1691 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1691 msgID=1692 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1691 msgID=1692 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1692 msgID=1693 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1692 msgID=1693 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1693 msgID=1694 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1693 msgID=1694 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1694 msgID=1695 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1694 msgID=1695 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1695 msgID=1696 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1695 msgID=1696 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1696 msgID=1697 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1696 msgID=1697 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1697 msgID=1698 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1697 msgID=1698 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1698 msgID=1699 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1698 msgID=1699 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1699 msgID=1700 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1699 msgID=1700 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1700 msgID=1701 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1700 msgID=1701 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1701 msgID=1702 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1701 msgID=1702 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1702 msgID=1703 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1702 msgID=1703 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1703 msgID=1704 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1703 msgID=1704 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1704 msgID=1705 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1704 msgID=1705 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1705 msgID=1706 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1705 msgID=1706 result=0 nentries=0 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1706 msgID=1707 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1706 msgID=1707 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1707 msgID=1708 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1707 msgID=1708 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1708 msgID=1709 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1708 msgID=1709 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1709 msgID=1710 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1709 msgID=1710 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1710 msgID=1711 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1710 msgID=1711 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1711 msgID=1712 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1711 msgID=1712 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1712 msgID=1713 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1712 msgID=1713 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1713 msgID=1714 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1713 msgID=1714 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1714 msgID=1715 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1714 msgID=1715 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1715 msgID=1716 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1715 msgID=1716 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1716 msgID=1717 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1716 msgID=1717 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1717 msgID=1718 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1717 msgID=1718 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1718 msgID=1719 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1718 msgID=1719 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1719 msgID=1720 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1719 msgID=1720 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1720 msgID=1721 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1720 msgID=1721 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1721 msgID=1722 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1721 msgID=1722 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1722 msgID=1723 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1722 msgID=1723 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1723 msgID=1724 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1723 msgID=1724 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1724 msgID=1725 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1724 msgID=1725 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1725 msgID=1726 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1725 msgID=1726 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1726 msgID=1727 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1726 msgID=1727 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1727 msgID=1728 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1727 msgID=1728 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1728 msgID=1729 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1728 msgID=1729 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1729 msgID=1730 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1729 msgID=1730 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1730 msgID=1731 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1730 msgID=1731 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1731 msgID=1732 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1731 msgID=1732 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1732 msgID=1733 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1732 msgID=1733 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1733 msgID=1734 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1733 msgID=1734 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1734 msgID=1735 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1734 msgID=1735 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1735 msgID=1736 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1735 msgID=1736 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1736 msgID=1737 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1736 msgID=1737 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1737 msgID=1738 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1737 msgID=1738 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1738 msgID=1739 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1738 msgID=1739 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1739 msgID=1740 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1739 msgID=1740 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1740 msgID=1741 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1740 msgID=1741 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1741 msgID=1742 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1741 msgID=1742 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1742 msgID=1743 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1742 msgID=1743 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1743 msgID=1744 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1743 msgID=1744 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1744 msgID=1745 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1744 msgID=1745 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1745 msgID=1746 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1745 msgID=1746 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1746 msgID=1747 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1746 msgID=1747 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1747 msgID=1748 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1747 msgID=1748 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1748 msgID=1749 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1748 msgID=1749 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1749 msgID=1750 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1749 msgID=1750 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1750 msgID=1751 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1750 msgID=1751 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1751 msgID=1752 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1751 msgID=1752 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1752 msgID=1753 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1752 msgID=1753 result=0 nentries=3 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1753 msgID=1754 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1753 msgID=1754 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1754 msgID=1755 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1754 msgID=1755 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1755 msgID=1756 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1755 msgID=1756 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1756 msgID=1757 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1756 msgID=1757 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1757 msgID=1758 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1757 msgID=1758 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1758 msgID=1759 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1758 msgID=1759 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1759 msgID=1760 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1759 msgID=1760 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1760 msgID=1761 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1760 msgID=1761 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1761 msgID=1762 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1761 msgID=1762 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1762 msgID=1763 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1762 msgID=1763 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1763 msgID=1764 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1763 msgID=1764 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1764 msgID=1765 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1764 msgID=1765 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1765 msgID=1766 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1765 msgID=1766 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1766 msgID=1767 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1766 msgID=1767 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1767 msgID=1768 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1767 msgID=1768 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1768 msgID=1769 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1768 msgID=1769 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1769 msgID=1770 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1769 msgID=1770 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1770 msgID=1771 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1770 msgID=1771 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1771 msgID=1772 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1771 msgID=1772 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1772 msgID=1773 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1772 msgID=1773 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1773 msgID=1774 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1773 msgID=1774 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1774 msgID=1775 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1774 msgID=1775 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1775 msgID=1776 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1775 msgID=1776 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1776 msgID=1777 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1776 msgID=1777 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1777 msgID=1778 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1777 msgID=1778 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1778 msgID=1779 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1778 msgID=1779 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1779 msgID=1780 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1779 msgID=1780 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1780 msgID=1781 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1780 msgID=1781 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1781 msgID=1782 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1781 msgID=1782 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1782 msgID=1783 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1782 msgID=1783 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1783 msgID=1784 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1783 msgID=1784 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1784 msgID=1785 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1784 msgID=1785 result=0 nentries=42 etime=26 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1785 msgID=1786 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1785 msgID=1786 result=0 nentries=0 etime=0 +[06/Mar/2015:19:14:34 +0100] SEARCH REQ conn=0 op=1786 msgID=1787 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:34 +0100] SEARCH RES conn=0 op=1786 msgID=1787 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1787 msgID=1788 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1787 msgID=1788 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1788 msgID=1789 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1788 msgID=1789 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1789 msgID=1790 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1789 msgID=1790 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1790 msgID=1791 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1790 msgID=1791 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1791 msgID=1792 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1791 msgID=1792 result=0 nentries=5 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1792 msgID=1793 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1792 msgID=1793 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1793 msgID=1794 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1793 msgID=1794 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1794 msgID=1795 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1794 msgID=1795 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1795 msgID=1796 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1795 msgID=1796 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1796 msgID=1797 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1796 msgID=1797 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1797 msgID=1798 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1797 msgID=1798 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1798 msgID=1799 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1798 msgID=1799 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1799 msgID=1800 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1799 msgID=1800 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1800 msgID=1801 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1800 msgID=1801 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1801 msgID=1802 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1801 msgID=1802 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1802 msgID=1803 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1802 msgID=1803 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1803 msgID=1804 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1803 msgID=1804 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1804 msgID=1805 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1804 msgID=1805 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1805 msgID=1806 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1805 msgID=1806 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1806 msgID=1807 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1806 msgID=1807 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1807 msgID=1808 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1807 msgID=1808 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1808 msgID=1809 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1808 msgID=1809 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1809 msgID=1810 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1809 msgID=1810 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1810 msgID=1811 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1810 msgID=1811 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1811 msgID=1812 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1811 msgID=1812 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1812 msgID=1813 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1812 msgID=1813 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1813 msgID=1814 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1813 msgID=1814 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1814 msgID=1815 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1814 msgID=1815 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1815 msgID=1816 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1815 msgID=1816 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1816 msgID=1817 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1816 msgID=1817 result=0 nentries=9 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1817 msgID=1818 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1817 msgID=1818 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1818 msgID=1819 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1818 msgID=1819 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1819 msgID=1820 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1819 msgID=1820 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1820 msgID=1821 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1820 msgID=1821 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1821 msgID=1822 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1821 msgID=1822 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1822 msgID=1823 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1822 msgID=1823 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1823 msgID=1824 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1823 msgID=1824 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1824 msgID=1825 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1824 msgID=1825 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1825 msgID=1826 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1825 msgID=1826 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1826 msgID=1827 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1826 msgID=1827 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1827 msgID=1828 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1827 msgID=1828 result=0 nentries=13 etime=2 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1828 msgID=1829 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1828 msgID=1829 result=0 nentries=1 etime=5 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1829 msgID=1830 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1829 msgID=1830 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1830 msgID=1831 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1830 msgID=1831 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1831 msgID=1832 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1831 msgID=1832 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1832 msgID=1833 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1832 msgID=1833 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1833 msgID=1834 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1833 msgID=1834 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1834 msgID=1835 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1834 msgID=1835 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1835 msgID=1836 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1835 msgID=1836 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1836 msgID=1837 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1836 msgID=1837 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1837 msgID=1838 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1837 msgID=1838 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1838 msgID=1839 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1838 msgID=1839 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1839 msgID=1840 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1839 msgID=1840 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1840 msgID=1841 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1840 msgID=1841 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1841 msgID=1842 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1841 msgID=1842 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1842 msgID=1843 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1842 msgID=1843 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1843 msgID=1844 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1843 msgID=1844 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1844 msgID=1845 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1844 msgID=1845 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1845 msgID=1846 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1845 msgID=1846 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1846 msgID=1847 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1846 msgID=1847 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1847 msgID=1848 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1847 msgID=1848 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1848 msgID=1849 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1848 msgID=1849 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1849 msgID=1850 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1849 msgID=1850 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1850 msgID=1851 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1850 msgID=1851 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1851 msgID=1852 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1851 msgID=1852 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1852 msgID=1853 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1852 msgID=1853 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1853 msgID=1854 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:54 +0100] SEARCH RES conn=0 op=1853 msgID=1854 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:54 +0100] SEARCH REQ conn=0 op=1854 msgID=1855 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1854 msgID=1855 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1855 msgID=1856 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1855 msgID=1856 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1856 msgID=1857 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1856 msgID=1857 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1857 msgID=1858 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1857 msgID=1858 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1858 msgID=1859 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1858 msgID=1859 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1859 msgID=1860 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1859 msgID=1860 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1860 msgID=1861 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1860 msgID=1861 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1861 msgID=1862 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1861 msgID=1862 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1862 msgID=1863 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1862 msgID=1863 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1863 msgID=1864 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1863 msgID=1864 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1864 msgID=1865 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1864 msgID=1865 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1865 msgID=1866 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1865 msgID=1866 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1866 msgID=1867 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1866 msgID=1867 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1867 msgID=1868 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1867 msgID=1868 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1868 msgID=1869 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1868 msgID=1869 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1869 msgID=1870 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1869 msgID=1870 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1870 msgID=1871 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1870 msgID=1871 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1871 msgID=1872 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1871 msgID=1872 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1872 msgID=1873 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1872 msgID=1873 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1873 msgID=1874 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1873 msgID=1874 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1874 msgID=1875 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1874 msgID=1875 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1875 msgID=1876 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1875 msgID=1876 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1876 msgID=1877 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1876 msgID=1877 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1877 msgID=1878 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1877 msgID=1878 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1878 msgID=1879 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1878 msgID=1879 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1879 msgID=1880 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1879 msgID=1880 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1880 msgID=1881 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1880 msgID=1881 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1881 msgID=1882 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1881 msgID=1882 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1882 msgID=1883 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1882 msgID=1883 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1883 msgID=1884 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1883 msgID=1884 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1884 msgID=1885 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1884 msgID=1885 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1885 msgID=1886 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1885 msgID=1886 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1886 msgID=1887 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1886 msgID=1887 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1887 msgID=1888 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1887 msgID=1888 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1888 msgID=1889 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1888 msgID=1889 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1889 msgID=1890 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1889 msgID=1890 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1890 msgID=1891 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1890 msgID=1891 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1891 msgID=1892 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1891 msgID=1892 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1892 msgID=1893 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1892 msgID=1893 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1893 msgID=1894 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1893 msgID=1894 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1894 msgID=1895 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1894 msgID=1895 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1895 msgID=1896 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1895 msgID=1896 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1896 msgID=1897 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1896 msgID=1897 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1897 msgID=1898 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1897 msgID=1898 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1898 msgID=1899 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1898 msgID=1899 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1899 msgID=1900 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1899 msgID=1900 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1900 msgID=1901 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1900 msgID=1901 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1901 msgID=1902 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1901 msgID=1902 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1902 msgID=1903 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1902 msgID=1903 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1903 msgID=1904 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1903 msgID=1904 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1904 msgID=1905 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1904 msgID=1905 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1905 msgID=1906 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1905 msgID=1906 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1906 msgID=1907 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1906 msgID=1907 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1907 msgID=1908 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1907 msgID=1908 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1908 msgID=1909 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1908 msgID=1909 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1909 msgID=1910 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1909 msgID=1910 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1910 msgID=1911 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1910 msgID=1911 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1911 msgID=1912 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1911 msgID=1912 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1912 msgID=1913 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1912 msgID=1913 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1913 msgID=1914 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1913 msgID=1914 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1914 msgID=1915 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1914 msgID=1915 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1915 msgID=1916 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1915 msgID=1916 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1916 msgID=1917 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1916 msgID=1917 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1917 msgID=1918 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1917 msgID=1918 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1918 msgID=1919 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1918 msgID=1919 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1919 msgID=1920 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1919 msgID=1920 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1920 msgID=1921 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1920 msgID=1921 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1921 msgID=1922 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1921 msgID=1922 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1922 msgID=1923 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1922 msgID=1923 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1923 msgID=1924 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1923 msgID=1924 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1924 msgID=1925 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1924 msgID=1925 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1925 msgID=1926 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1925 msgID=1926 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1926 msgID=1927 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1926 msgID=1927 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1927 msgID=1928 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1927 msgID=1928 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1928 msgID=1929 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1928 msgID=1929 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1929 msgID=1930 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1929 msgID=1930 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1930 msgID=1931 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1930 msgID=1931 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1931 msgID=1932 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1931 msgID=1932 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1932 msgID=1933 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1932 msgID=1933 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1933 msgID=1934 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1933 msgID=1934 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1934 msgID=1935 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1934 msgID=1935 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1935 msgID=1936 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1935 msgID=1936 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1936 msgID=1937 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1936 msgID=1937 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1937 msgID=1938 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1937 msgID=1938 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1938 msgID=1939 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1938 msgID=1939 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1939 msgID=1940 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1939 msgID=1940 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1940 msgID=1941 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1940 msgID=1941 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1941 msgID=1942 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1941 msgID=1942 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1942 msgID=1943 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1942 msgID=1943 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1943 msgID=1944 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1943 msgID=1944 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1944 msgID=1945 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1944 msgID=1945 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1945 msgID=1946 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1945 msgID=1946 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1946 msgID=1947 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1946 msgID=1947 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1947 msgID=1948 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1947 msgID=1948 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1948 msgID=1949 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1948 msgID=1949 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1949 msgID=1950 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1949 msgID=1950 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1950 msgID=1951 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1950 msgID=1951 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1951 msgID=1952 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1951 msgID=1952 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1952 msgID=1953 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1952 msgID=1953 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1953 msgID=1954 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1953 msgID=1954 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1954 msgID=1955 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1954 msgID=1955 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1955 msgID=1956 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1955 msgID=1956 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1956 msgID=1957 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1956 msgID=1957 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1957 msgID=1958 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1957 msgID=1958 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1958 msgID=1959 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1958 msgID=1959 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1959 msgID=1960 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1959 msgID=1960 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1960 msgID=1961 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1960 msgID=1961 result=0 nentries=0 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1961 msgID=1962 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1961 msgID=1962 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1962 msgID=1963 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1962 msgID=1963 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1963 msgID=1964 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1963 msgID=1964 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1964 msgID=1965 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1964 msgID=1965 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1965 msgID=1966 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1965 msgID=1966 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1966 msgID=1967 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1966 msgID=1967 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1967 msgID=1968 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1967 msgID=1968 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1968 msgID=1969 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1968 msgID=1969 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1969 msgID=1970 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1969 msgID=1970 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1970 msgID=1971 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1970 msgID=1971 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1971 msgID=1972 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1971 msgID=1972 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1972 msgID=1973 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1972 msgID=1973 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1973 msgID=1974 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1973 msgID=1974 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1974 msgID=1975 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1974 msgID=1975 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1975 msgID=1976 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1975 msgID=1976 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1976 msgID=1977 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1976 msgID=1977 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1977 msgID=1978 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1977 msgID=1978 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1978 msgID=1979 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1978 msgID=1979 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1979 msgID=1980 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1979 msgID=1980 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1980 msgID=1981 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1980 msgID=1981 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1981 msgID=1982 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1981 msgID=1982 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1982 msgID=1983 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1982 msgID=1983 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1983 msgID=1984 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1983 msgID=1984 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1984 msgID=1985 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1984 msgID=1985 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1985 msgID=1986 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1985 msgID=1986 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1986 msgID=1987 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1986 msgID=1987 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1987 msgID=1988 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1987 msgID=1988 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1988 msgID=1989 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1988 msgID=1989 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1989 msgID=1990 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1989 msgID=1990 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1990 msgID=1991 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1990 msgID=1991 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1991 msgID=1992 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1991 msgID=1992 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1992 msgID=1993 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1992 msgID=1993 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1993 msgID=1994 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1993 msgID=1994 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1994 msgID=1995 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1994 msgID=1995 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1995 msgID=1996 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1995 msgID=1996 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1996 msgID=1997 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1996 msgID=1997 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1997 msgID=1998 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1997 msgID=1998 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1998 msgID=1999 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1998 msgID=1999 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=1999 msgID=2000 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=1999 msgID=2000 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2000 msgID=2001 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2000 msgID=2001 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2001 msgID=2002 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2001 msgID=2002 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2002 msgID=2003 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2002 msgID=2003 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2003 msgID=2004 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2003 msgID=2004 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2004 msgID=2005 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2004 msgID=2005 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2005 msgID=2006 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2005 msgID=2006 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2006 msgID=2007 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2006 msgID=2007 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2007 msgID=2008 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2007 msgID=2008 result=0 nentries=3 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2008 msgID=2009 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2008 msgID=2009 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2009 msgID=2010 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2009 msgID=2010 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2010 msgID=2011 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2010 msgID=2011 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2011 msgID=2012 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2011 msgID=2012 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2012 msgID=2013 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2012 msgID=2013 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2013 msgID=2014 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2013 msgID=2014 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2014 msgID=2015 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2014 msgID=2015 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2015 msgID=2016 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2015 msgID=2016 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2016 msgID=2017 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2016 msgID=2017 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2017 msgID=2018 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2017 msgID=2018 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2018 msgID=2019 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2018 msgID=2019 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2019 msgID=2020 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2019 msgID=2020 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2020 msgID=2021 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2020 msgID=2021 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2021 msgID=2022 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2021 msgID=2022 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2022 msgID=2023 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2022 msgID=2023 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2023 msgID=2024 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2023 msgID=2024 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2024 msgID=2025 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2024 msgID=2025 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2025 msgID=2026 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2025 msgID=2026 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2026 msgID=2027 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2026 msgID=2027 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2027 msgID=2028 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2027 msgID=2028 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2028 msgID=2029 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2028 msgID=2029 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2029 msgID=2030 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2029 msgID=2030 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2030 msgID=2031 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2030 msgID=2031 result=0 nentries=1 etime=1 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2031 msgID=2032 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2031 msgID=2032 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2032 msgID=2033 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2032 msgID=2033 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2033 msgID=2034 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2033 msgID=2034 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2034 msgID=2035 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2034 msgID=2035 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2035 msgID=2036 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2035 msgID=2036 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2036 msgID=2037 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2036 msgID=2037 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2037 msgID=2038 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2037 msgID=2038 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2038 msgID=2039 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2038 msgID=2039 result=0 nentries=1 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2039 msgID=2040 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2039 msgID=2040 result=0 nentries=42 etime=25 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2040 msgID=2041 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2040 msgID=2041 result=0 nentries=0 etime=0 +[06/Mar/2015:19:14:55 +0100] SEARCH REQ conn=0 op=2041 msgID=2042 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:14:55 +0100] SEARCH RES conn=0 op=2041 msgID=2042 result=0 nentries=1 etime=5 +[06/Mar/2015:19:15:05 +0100] CONNECT conn=1 from=10.1.1.55:35934 to=10.1.1.55:10444 protocol=LDAPS +[06/Mar/2015:19:15:05 +0100] BIND REQ conn=1 op=0 msgID=1 version=3 type=SIMPLE dn="cn=Directory Manager" +[06/Mar/2015:19:15:05 +0100] BIND RES conn=1 op=0 msgID=1 result=0 authDN="cn=Directory Manager,cn=Root DNs,cn=config" etime=1 +[06/Mar/2015:19:15:05 +0100] ADD REQ conn=1 op=1 msgID=0 dn="ds-task-id=20150306191505950,cn=Scheduled Tasks,cn=Tasks" +[06/Mar/2015:19:15:05 +0100] ADD RES conn=1 op=1 msgID=0 result=0 etime=50 +[06/Mar/2015:19:15:05 +0100] SEARCH REQ conn=1 op=2 msgID=1 base="cn=Tasks" scope=wholeSubtree filter="(ds-task-id=20150306191505950)" attrs="ALL" +[06/Mar/2015:19:15:05 +0100] SEARCH RES conn=1 op=2 msgID=1 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:05 +0100] SEARCH REQ conn=1 op=3 msgID=2 base="cn=Tasks" scope=wholeSubtree filter="(ds-task-id=20150306191505950)" attrs="ALL" +[06/Mar/2015:19:15:05 +0100] SEARCH RES conn=1 op=3 msgID=2 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:06 +0100] SEARCH REQ conn=1 op=4 msgID=3 base="cn=Tasks" scope=wholeSubtree filter="(ds-task-id=20150306191505950)" attrs="ALL" +[06/Mar/2015:19:15:06 +0100] SEARCH RES conn=1 op=4 msgID=3 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:07 +0100] SEARCH REQ conn=1 op=5 msgID=4 base="cn=Tasks" scope=wholeSubtree filter="(ds-task-id=20150306191505950)" attrs="ALL" +[06/Mar/2015:19:15:07 +0100] SEARCH RES conn=1 op=5 msgID=4 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:08 +0100] MODIFY REQ conn=-1 op=69 msgID=70 dn="dc=example,dc=com" type=synchronization +[06/Mar/2015:19:15:08 +0100] MODIFY RES conn=-1 op=69 msgID=70 result=0 etime=2 +[06/Mar/2015:19:15:08 +0100] MODIFY REQ conn=-1 op=71 msgID=72 dn="dc=example,dc=com" type=synchronization +[06/Mar/2015:19:15:08 +0100] MODIFY RES conn=-1 op=71 msgID=72 result=0 etime=3 +[06/Mar/2015:19:15:08 +0100] SEARCH REQ conn=1 op=6 msgID=5 base="cn=Tasks" scope=wholeSubtree filter="(ds-task-id=20150306191505950)" attrs="ALL" +[06/Mar/2015:19:15:08 +0100] SEARCH RES conn=1 op=6 msgID=5 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:09 +0100] DISCONNECT conn=1 reason="Client Disconnect" +[06/Mar/2015:19:15:10 +0100] ADD REQ conn=0 op=2042 msgID=2043 dn="ds-task-id=dsreplication-initialize1,cn=Scheduled Tasks,cn=Tasks" +[06/Mar/2015:19:15:10 +0100] ADD RES conn=0 op=2042 msgID=2043 result=0 etime=3 +[06/Mar/2015:19:15:10 +0100] SEARCH REQ conn=0 op=2043 msgID=2044 base="ds-task-id=dsreplication-initialize1,cn=Scheduled Tasks,cn=Tasks" scope=baseObject filter="(objectclass=*)" attrs="ds-task-unprocessed-entry-count,ds-task-processed-entry-count,ds-task-log-message,ds-task-state" +[06/Mar/2015:19:15:10 +0100] SEARCH RES conn=0 op=2043 msgID=2044 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:10 +0100] ADD REQ conn=0 op=2044 msgID=2045 dn="ds-task-id=dsreplication-reset-generation-id-1,cn=Scheduled Tasks,cn=Tasks" +[06/Mar/2015:19:15:10 +0100] ADD RES conn=0 op=2044 msgID=2045 result=0 etime=9 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2045 msgID=2046 base="ds-task-id=dsreplication-reset-generation-id-1,cn=Scheduled Tasks,cn=Tasks" scope=baseObject filter="(objectclass=*)" attrs="ds-task-log-message,ds-task-state" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2045 msgID=2046 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2046 msgID=2047 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2046 msgID=2047 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2047 msgID=2048 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2047 msgID=2048 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2048 msgID=2049 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2048 msgID=2049 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2049 msgID=2050 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2049 msgID=2050 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2050 msgID=2051 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2050 msgID=2051 result=0 nentries=5 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2051 msgID=2052 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2051 msgID=2052 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2052 msgID=2053 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2052 msgID=2053 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2053 msgID=2054 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2053 msgID=2054 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2054 msgID=2055 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2054 msgID=2055 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2055 msgID=2056 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2055 msgID=2056 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2056 msgID=2057 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2056 msgID=2057 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2057 msgID=2058 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2057 msgID=2058 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2058 msgID=2059 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2058 msgID=2059 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2059 msgID=2060 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2059 msgID=2060 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2060 msgID=2061 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2060 msgID=2061 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2061 msgID=2062 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2061 msgID=2062 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2062 msgID=2063 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2062 msgID=2063 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2063 msgID=2064 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2063 msgID=2064 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2064 msgID=2065 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2064 msgID=2065 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2065 msgID=2066 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2065 msgID=2066 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2066 msgID=2067 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2066 msgID=2067 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2067 msgID=2068 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2067 msgID=2068 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2068 msgID=2069 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2068 msgID=2069 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2069 msgID=2070 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2069 msgID=2070 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2070 msgID=2071 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2070 msgID=2071 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2071 msgID=2072 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2071 msgID=2072 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2072 msgID=2073 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2072 msgID=2073 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2073 msgID=2074 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2073 msgID=2074 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2074 msgID=2075 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2074 msgID=2075 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2075 msgID=2076 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2075 msgID=2076 result=0 nentries=9 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2076 msgID=2077 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2076 msgID=2077 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2077 msgID=2078 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2077 msgID=2078 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2078 msgID=2079 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2078 msgID=2079 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2079 msgID=2080 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2079 msgID=2080 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2080 msgID=2081 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2080 msgID=2081 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2081 msgID=2082 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2081 msgID=2082 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2082 msgID=2083 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2082 msgID=2083 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2083 msgID=2084 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2083 msgID=2084 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2084 msgID=2085 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2084 msgID=2085 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2085 msgID=2086 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2085 msgID=2086 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2086 msgID=2087 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2086 msgID=2087 result=0 nentries=13 etime=2 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2087 msgID=2088 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2087 msgID=2088 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2088 msgID=2089 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2088 msgID=2089 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2089 msgID=2090 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2089 msgID=2090 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2090 msgID=2091 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2090 msgID=2091 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2091 msgID=2092 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2091 msgID=2092 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2092 msgID=2093 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2092 msgID=2093 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2093 msgID=2094 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2093 msgID=2094 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2094 msgID=2095 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2094 msgID=2095 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2095 msgID=2096 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2095 msgID=2096 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2096 msgID=2097 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2096 msgID=2097 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2097 msgID=2098 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2097 msgID=2098 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2098 msgID=2099 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2098 msgID=2099 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2099 msgID=2100 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2099 msgID=2100 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2100 msgID=2101 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2100 msgID=2101 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2101 msgID=2102 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2101 msgID=2102 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2102 msgID=2103 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2102 msgID=2103 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2103 msgID=2104 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2103 msgID=2104 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2104 msgID=2105 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2104 msgID=2105 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2105 msgID=2106 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2105 msgID=2106 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2106 msgID=2107 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2106 msgID=2107 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2107 msgID=2108 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2107 msgID=2108 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2108 msgID=2109 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2108 msgID=2109 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2109 msgID=2110 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2109 msgID=2110 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2110 msgID=2111 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2110 msgID=2111 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2111 msgID=2112 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2111 msgID=2112 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2112 msgID=2113 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2112 msgID=2113 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2113 msgID=2114 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2113 msgID=2114 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2114 msgID=2115 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2114 msgID=2115 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2115 msgID=2116 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2115 msgID=2116 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2116 msgID=2117 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2116 msgID=2117 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2117 msgID=2118 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2117 msgID=2118 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2118 msgID=2119 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2118 msgID=2119 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2119 msgID=2120 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2119 msgID=2120 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2120 msgID=2121 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2120 msgID=2121 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2121 msgID=2122 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2121 msgID=2122 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2122 msgID=2123 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2122 msgID=2123 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2123 msgID=2124 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2123 msgID=2124 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2124 msgID=2125 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2124 msgID=2125 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2125 msgID=2126 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2125 msgID=2126 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2126 msgID=2127 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2126 msgID=2127 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2127 msgID=2128 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2127 msgID=2128 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2128 msgID=2129 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2128 msgID=2129 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2129 msgID=2130 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2129 msgID=2130 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2130 msgID=2131 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2130 msgID=2131 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2131 msgID=2132 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2131 msgID=2132 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2132 msgID=2133 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2132 msgID=2133 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2133 msgID=2134 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2133 msgID=2134 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2134 msgID=2135 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2134 msgID=2135 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2135 msgID=2136 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2135 msgID=2136 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2136 msgID=2137 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2136 msgID=2137 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2137 msgID=2138 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2137 msgID=2138 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2138 msgID=2139 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2138 msgID=2139 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2139 msgID=2140 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2139 msgID=2140 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2140 msgID=2141 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2140 msgID=2141 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2141 msgID=2142 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2141 msgID=2142 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2142 msgID=2143 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2142 msgID=2143 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2143 msgID=2144 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2143 msgID=2144 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2144 msgID=2145 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2144 msgID=2145 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2145 msgID=2146 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2145 msgID=2146 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2146 msgID=2147 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2146 msgID=2147 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2147 msgID=2148 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2147 msgID=2148 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2148 msgID=2149 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2148 msgID=2149 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2149 msgID=2150 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2149 msgID=2150 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2150 msgID=2151 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2150 msgID=2151 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2151 msgID=2152 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2151 msgID=2152 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2152 msgID=2153 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2152 msgID=2153 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2153 msgID=2154 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2153 msgID=2154 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2154 msgID=2155 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2154 msgID=2155 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2155 msgID=2156 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2155 msgID=2156 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2156 msgID=2157 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2156 msgID=2157 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2157 msgID=2158 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2157 msgID=2158 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2158 msgID=2159 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2158 msgID=2159 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2159 msgID=2160 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2159 msgID=2160 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2160 msgID=2161 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2160 msgID=2161 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2161 msgID=2162 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2161 msgID=2162 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2162 msgID=2163 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2162 msgID=2163 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2163 msgID=2164 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2163 msgID=2164 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2164 msgID=2165 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2164 msgID=2165 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2165 msgID=2166 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2165 msgID=2166 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2166 msgID=2167 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2166 msgID=2167 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2167 msgID=2168 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2167 msgID=2168 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2168 msgID=2169 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2168 msgID=2169 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2169 msgID=2170 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2169 msgID=2170 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2170 msgID=2171 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2170 msgID=2171 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2171 msgID=2172 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2171 msgID=2172 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2172 msgID=2173 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2172 msgID=2173 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2173 msgID=2174 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2173 msgID=2174 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2174 msgID=2175 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2174 msgID=2175 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2175 msgID=2176 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2175 msgID=2176 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2176 msgID=2177 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2176 msgID=2177 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2177 msgID=2178 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2177 msgID=2178 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2178 msgID=2179 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2178 msgID=2179 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2179 msgID=2180 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2179 msgID=2180 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2180 msgID=2181 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2180 msgID=2181 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2181 msgID=2182 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2181 msgID=2182 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2182 msgID=2183 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2182 msgID=2183 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2183 msgID=2184 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2183 msgID=2184 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2184 msgID=2185 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2184 msgID=2185 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2185 msgID=2186 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2185 msgID=2186 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2186 msgID=2187 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2186 msgID=2187 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2187 msgID=2188 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2187 msgID=2188 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2188 msgID=2189 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2188 msgID=2189 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2189 msgID=2190 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2189 msgID=2190 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2190 msgID=2191 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2190 msgID=2191 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2191 msgID=2192 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2191 msgID=2192 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2192 msgID=2193 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2192 msgID=2193 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2193 msgID=2194 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2193 msgID=2194 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2194 msgID=2195 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2194 msgID=2195 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2195 msgID=2196 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2195 msgID=2196 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2196 msgID=2197 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2196 msgID=2197 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2197 msgID=2198 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2197 msgID=2198 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2198 msgID=2199 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2198 msgID=2199 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2199 msgID=2200 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2199 msgID=2200 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2200 msgID=2201 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2200 msgID=2201 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2201 msgID=2202 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2201 msgID=2202 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2202 msgID=2203 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2202 msgID=2203 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2203 msgID=2204 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2203 msgID=2204 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2204 msgID=2205 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2204 msgID=2205 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2205 msgID=2206 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2205 msgID=2206 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2206 msgID=2207 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2206 msgID=2207 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2207 msgID=2208 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2207 msgID=2208 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2208 msgID=2209 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2208 msgID=2209 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2209 msgID=2210 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2209 msgID=2210 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2210 msgID=2211 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2210 msgID=2211 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2211 msgID=2212 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2211 msgID=2212 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2212 msgID=2213 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2212 msgID=2213 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2213 msgID=2214 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2213 msgID=2214 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2214 msgID=2215 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2214 msgID=2215 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2215 msgID=2216 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2215 msgID=2216 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2216 msgID=2217 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2216 msgID=2217 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2217 msgID=2218 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2217 msgID=2218 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2218 msgID=2219 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2218 msgID=2219 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2219 msgID=2220 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2219 msgID=2220 result=0 nentries=0 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2220 msgID=2221 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2220 msgID=2221 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2221 msgID=2222 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2221 msgID=2222 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2222 msgID=2223 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2222 msgID=2223 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2223 msgID=2224 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2223 msgID=2224 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2224 msgID=2225 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2224 msgID=2225 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2225 msgID=2226 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2225 msgID=2226 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2226 msgID=2227 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2226 msgID=2227 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2227 msgID=2228 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2227 msgID=2228 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2228 msgID=2229 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2228 msgID=2229 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2229 msgID=2230 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2229 msgID=2230 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2230 msgID=2231 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2230 msgID=2231 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2231 msgID=2232 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2231 msgID=2232 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2232 msgID=2233 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2232 msgID=2233 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2233 msgID=2234 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2233 msgID=2234 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2234 msgID=2235 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2234 msgID=2235 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2235 msgID=2236 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2235 msgID=2236 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2236 msgID=2237 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2236 msgID=2237 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2237 msgID=2238 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2237 msgID=2238 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2238 msgID=2239 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2238 msgID=2239 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2239 msgID=2240 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2239 msgID=2240 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2240 msgID=2241 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2240 msgID=2241 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2241 msgID=2242 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2241 msgID=2242 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2242 msgID=2243 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2242 msgID=2243 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2243 msgID=2244 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2243 msgID=2244 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2244 msgID=2245 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2244 msgID=2245 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2245 msgID=2246 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2245 msgID=2246 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2246 msgID=2247 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2246 msgID=2247 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2247 msgID=2248 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2247 msgID=2248 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2248 msgID=2249 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2248 msgID=2249 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2249 msgID=2250 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2249 msgID=2250 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2250 msgID=2251 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2250 msgID=2251 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2251 msgID=2252 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2251 msgID=2252 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2252 msgID=2253 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2252 msgID=2253 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2253 msgID=2254 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2253 msgID=2254 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2254 msgID=2255 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2254 msgID=2255 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2255 msgID=2256 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2255 msgID=2256 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2256 msgID=2257 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2256 msgID=2257 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2257 msgID=2258 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2257 msgID=2258 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2258 msgID=2259 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2258 msgID=2259 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2259 msgID=2260 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2259 msgID=2260 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2260 msgID=2261 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2260 msgID=2261 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2261 msgID=2262 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2261 msgID=2262 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2262 msgID=2263 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2262 msgID=2263 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2263 msgID=2264 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2263 msgID=2264 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2264 msgID=2265 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2264 msgID=2265 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2265 msgID=2266 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2265 msgID=2266 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2266 msgID=2267 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2266 msgID=2267 result=0 nentries=3 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2267 msgID=2268 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2267 msgID=2268 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2268 msgID=2269 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2268 msgID=2269 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2269 msgID=2270 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2269 msgID=2270 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2270 msgID=2271 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2270 msgID=2271 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2271 msgID=2272 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2271 msgID=2272 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2272 msgID=2273 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2272 msgID=2273 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2273 msgID=2274 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2273 msgID=2274 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2274 msgID=2275 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2274 msgID=2275 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2275 msgID=2276 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2275 msgID=2276 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2276 msgID=2277 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2276 msgID=2277 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2277 msgID=2278 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2277 msgID=2278 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2278 msgID=2279 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2278 msgID=2279 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2279 msgID=2280 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2279 msgID=2280 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2280 msgID=2281 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2280 msgID=2281 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2281 msgID=2282 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2281 msgID=2282 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2282 msgID=2283 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2282 msgID=2283 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2283 msgID=2284 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2283 msgID=2284 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2284 msgID=2285 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2284 msgID=2285 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2285 msgID=2286 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2285 msgID=2286 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2286 msgID=2287 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2286 msgID=2287 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2287 msgID=2288 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2287 msgID=2288 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2288 msgID=2289 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2288 msgID=2289 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2289 msgID=2290 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2289 msgID=2290 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2290 msgID=2291 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2290 msgID=2291 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2291 msgID=2292 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2291 msgID=2292 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2292 msgID=2293 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2292 msgID=2293 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2293 msgID=2294 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2293 msgID=2294 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2294 msgID=2295 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2294 msgID=2295 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2295 msgID=2296 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2295 msgID=2296 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2296 msgID=2297 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2296 msgID=2297 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2297 msgID=2298 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2297 msgID=2298 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2298 msgID=2299 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2298 msgID=2299 result=0 nentries=42 etime=43 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2299 msgID=2300 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2299 msgID=2300 result=0 nentries=3 etime=1 +[06/Mar/2015:19:15:11 +0100] SEARCH REQ conn=0 op=2300 msgID=2301 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:11 +0100] SEARCH RES conn=0 op=2300 msgID=2301 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2301 msgID=2302 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2301 msgID=2302 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2302 msgID=2303 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2302 msgID=2303 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2303 msgID=2304 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2303 msgID=2304 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2304 msgID=2305 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2304 msgID=2305 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2305 msgID=2306 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2305 msgID=2306 result=0 nentries=5 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2306 msgID=2307 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2306 msgID=2307 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2307 msgID=2308 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2307 msgID=2308 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2308 msgID=2309 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2308 msgID=2309 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2309 msgID=2310 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2309 msgID=2310 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2310 msgID=2311 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2310 msgID=2311 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2311 msgID=2312 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2311 msgID=2312 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2312 msgID=2313 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2312 msgID=2313 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2313 msgID=2314 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2313 msgID=2314 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2314 msgID=2315 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2314 msgID=2315 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2315 msgID=2316 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2315 msgID=2316 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2316 msgID=2317 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2316 msgID=2317 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2317 msgID=2318 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2317 msgID=2318 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2318 msgID=2319 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2318 msgID=2319 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2319 msgID=2320 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2319 msgID=2320 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2320 msgID=2321 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2320 msgID=2321 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2321 msgID=2322 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2321 msgID=2322 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2322 msgID=2323 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2322 msgID=2323 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2323 msgID=2324 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2323 msgID=2324 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2324 msgID=2325 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2324 msgID=2325 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2325 msgID=2326 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2325 msgID=2326 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2326 msgID=2327 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2326 msgID=2327 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2327 msgID=2328 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2327 msgID=2328 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2328 msgID=2329 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2328 msgID=2329 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2329 msgID=2330 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2329 msgID=2330 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2330 msgID=2331 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2330 msgID=2331 result=0 nentries=9 etime=2 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2331 msgID=2332 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2331 msgID=2332 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2332 msgID=2333 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2332 msgID=2333 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2333 msgID=2334 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2333 msgID=2334 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2334 msgID=2335 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2334 msgID=2335 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2335 msgID=2336 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2335 msgID=2336 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2336 msgID=2337 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2336 msgID=2337 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2337 msgID=2338 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2337 msgID=2338 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2338 msgID=2339 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2338 msgID=2339 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2339 msgID=2340 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2339 msgID=2340 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2340 msgID=2341 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2340 msgID=2341 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2341 msgID=2342 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2341 msgID=2342 result=0 nentries=13 etime=2 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2342 msgID=2343 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2342 msgID=2343 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2343 msgID=2344 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2343 msgID=2344 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2344 msgID=2345 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2344 msgID=2345 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2345 msgID=2346 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2345 msgID=2346 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2346 msgID=2347 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2346 msgID=2347 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2347 msgID=2348 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2347 msgID=2348 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2348 msgID=2349 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2348 msgID=2349 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2349 msgID=2350 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2349 msgID=2350 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2350 msgID=2351 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2350 msgID=2351 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2351 msgID=2352 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2351 msgID=2352 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2352 msgID=2353 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2352 msgID=2353 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2353 msgID=2354 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2353 msgID=2354 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2354 msgID=2355 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2354 msgID=2355 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2355 msgID=2356 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2355 msgID=2356 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2356 msgID=2357 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2356 msgID=2357 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2357 msgID=2358 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2357 msgID=2358 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2358 msgID=2359 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2358 msgID=2359 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2359 msgID=2360 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2359 msgID=2360 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2360 msgID=2361 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2360 msgID=2361 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2361 msgID=2362 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2361 msgID=2362 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2362 msgID=2363 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2362 msgID=2363 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2363 msgID=2364 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2363 msgID=2364 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2364 msgID=2365 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2364 msgID=2365 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2365 msgID=2366 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2365 msgID=2366 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2366 msgID=2367 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2366 msgID=2367 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2367 msgID=2368 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2367 msgID=2368 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2368 msgID=2369 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2368 msgID=2369 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2369 msgID=2370 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2369 msgID=2370 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2370 msgID=2371 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2370 msgID=2371 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2371 msgID=2372 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2371 msgID=2372 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2372 msgID=2373 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2372 msgID=2373 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2373 msgID=2374 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2373 msgID=2374 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2374 msgID=2375 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2374 msgID=2375 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2375 msgID=2376 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2375 msgID=2376 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2376 msgID=2377 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2376 msgID=2377 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2377 msgID=2378 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2377 msgID=2378 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2378 msgID=2379 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2378 msgID=2379 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2379 msgID=2380 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2379 msgID=2380 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2380 msgID=2381 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2380 msgID=2381 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2381 msgID=2382 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2381 msgID=2382 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2382 msgID=2383 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2382 msgID=2383 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2383 msgID=2384 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2383 msgID=2384 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2384 msgID=2385 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2384 msgID=2385 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2385 msgID=2386 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2385 msgID=2386 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2386 msgID=2387 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2386 msgID=2387 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2387 msgID=2388 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2387 msgID=2388 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2388 msgID=2389 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2388 msgID=2389 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2389 msgID=2390 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2389 msgID=2390 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2390 msgID=2391 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2390 msgID=2391 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2391 msgID=2392 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2391 msgID=2392 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2392 msgID=2393 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2392 msgID=2393 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2393 msgID=2394 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2393 msgID=2394 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2394 msgID=2395 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2394 msgID=2395 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2395 msgID=2396 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2395 msgID=2396 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2396 msgID=2397 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2396 msgID=2397 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2397 msgID=2398 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2397 msgID=2398 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2398 msgID=2399 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2398 msgID=2399 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2399 msgID=2400 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2399 msgID=2400 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2400 msgID=2401 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2400 msgID=2401 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2401 msgID=2402 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2401 msgID=2402 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2402 msgID=2403 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2402 msgID=2403 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2403 msgID=2404 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2403 msgID=2404 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2404 msgID=2405 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2404 msgID=2405 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2405 msgID=2406 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2405 msgID=2406 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2406 msgID=2407 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2406 msgID=2407 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2407 msgID=2408 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2407 msgID=2408 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2408 msgID=2409 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2408 msgID=2409 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2409 msgID=2410 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2409 msgID=2410 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2410 msgID=2411 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2410 msgID=2411 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2411 msgID=2412 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2411 msgID=2412 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2412 msgID=2413 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2412 msgID=2413 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2413 msgID=2414 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2413 msgID=2414 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2414 msgID=2415 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2414 msgID=2415 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2415 msgID=2416 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2415 msgID=2416 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2416 msgID=2417 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2416 msgID=2417 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2417 msgID=2418 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2417 msgID=2418 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2418 msgID=2419 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2418 msgID=2419 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2419 msgID=2420 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2419 msgID=2420 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2420 msgID=2421 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2420 msgID=2421 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2421 msgID=2422 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2421 msgID=2422 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2422 msgID=2423 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2422 msgID=2423 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2423 msgID=2424 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2423 msgID=2424 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2424 msgID=2425 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2424 msgID=2425 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2425 msgID=2426 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2425 msgID=2426 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2426 msgID=2427 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2426 msgID=2427 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2427 msgID=2428 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2427 msgID=2428 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2428 msgID=2429 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2428 msgID=2429 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2429 msgID=2430 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2429 msgID=2430 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2430 msgID=2431 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2430 msgID=2431 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2431 msgID=2432 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2431 msgID=2432 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2432 msgID=2433 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2432 msgID=2433 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2433 msgID=2434 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2433 msgID=2434 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2434 msgID=2435 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2434 msgID=2435 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2435 msgID=2436 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2435 msgID=2436 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2436 msgID=2437 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2436 msgID=2437 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2437 msgID=2438 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2437 msgID=2438 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2438 msgID=2439 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2438 msgID=2439 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2439 msgID=2440 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2439 msgID=2440 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2440 msgID=2441 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2440 msgID=2441 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2441 msgID=2442 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2441 msgID=2442 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2442 msgID=2443 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2442 msgID=2443 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2443 msgID=2444 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2443 msgID=2444 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2444 msgID=2445 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2444 msgID=2445 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2445 msgID=2446 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2445 msgID=2446 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2446 msgID=2447 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2446 msgID=2447 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2447 msgID=2448 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2447 msgID=2448 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2448 msgID=2449 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2448 msgID=2449 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2449 msgID=2450 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2449 msgID=2450 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2450 msgID=2451 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2450 msgID=2451 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2451 msgID=2452 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2451 msgID=2452 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2452 msgID=2453 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2452 msgID=2453 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2453 msgID=2454 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2453 msgID=2454 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2454 msgID=2455 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2454 msgID=2455 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2455 msgID=2456 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2455 msgID=2456 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2456 msgID=2457 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2456 msgID=2457 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2457 msgID=2458 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2457 msgID=2458 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2458 msgID=2459 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2458 msgID=2459 result=0 nentries=1 etime=3 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2459 msgID=2460 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2459 msgID=2460 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2460 msgID=2461 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2460 msgID=2461 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2461 msgID=2462 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2461 msgID=2462 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2462 msgID=2463 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2462 msgID=2463 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2463 msgID=2464 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2463 msgID=2464 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2464 msgID=2465 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2464 msgID=2465 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2465 msgID=2466 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2465 msgID=2466 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2466 msgID=2467 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2466 msgID=2467 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2467 msgID=2468 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2467 msgID=2468 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2468 msgID=2469 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2468 msgID=2469 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2469 msgID=2470 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2469 msgID=2470 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2470 msgID=2471 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2470 msgID=2471 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2471 msgID=2472 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2471 msgID=2472 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2472 msgID=2473 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2472 msgID=2473 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2473 msgID=2474 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2473 msgID=2474 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2474 msgID=2475 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2474 msgID=2475 result=0 nentries=0 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2475 msgID=2476 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2475 msgID=2476 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2476 msgID=2477 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2476 msgID=2477 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2477 msgID=2478 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2477 msgID=2478 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2478 msgID=2479 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2478 msgID=2479 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2479 msgID=2480 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2479 msgID=2480 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2480 msgID=2481 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2480 msgID=2481 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2481 msgID=2482 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2481 msgID=2482 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2482 msgID=2483 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2482 msgID=2483 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2483 msgID=2484 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2483 msgID=2484 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2484 msgID=2485 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2484 msgID=2485 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2485 msgID=2486 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2485 msgID=2486 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2486 msgID=2487 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2486 msgID=2487 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2487 msgID=2488 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2487 msgID=2488 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2488 msgID=2489 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2488 msgID=2489 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2489 msgID=2490 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2489 msgID=2490 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2490 msgID=2491 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2490 msgID=2491 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2491 msgID=2492 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2491 msgID=2492 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2492 msgID=2493 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2492 msgID=2493 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2493 msgID=2494 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2493 msgID=2494 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2494 msgID=2495 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2494 msgID=2495 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2495 msgID=2496 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2495 msgID=2496 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2496 msgID=2497 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2496 msgID=2497 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2497 msgID=2498 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2497 msgID=2498 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2498 msgID=2499 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2498 msgID=2499 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2499 msgID=2500 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2499 msgID=2500 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2500 msgID=2501 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2500 msgID=2501 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2501 msgID=2502 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2501 msgID=2502 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2502 msgID=2503 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2502 msgID=2503 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2503 msgID=2504 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2503 msgID=2504 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2504 msgID=2505 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2504 msgID=2505 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2505 msgID=2506 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2505 msgID=2506 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2506 msgID=2507 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2506 msgID=2507 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2507 msgID=2508 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2507 msgID=2508 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2508 msgID=2509 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2508 msgID=2509 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2509 msgID=2510 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2509 msgID=2510 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2510 msgID=2511 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2510 msgID=2511 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2511 msgID=2512 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2511 msgID=2512 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2512 msgID=2513 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2512 msgID=2513 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2513 msgID=2514 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2513 msgID=2514 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2514 msgID=2515 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2514 msgID=2515 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2515 msgID=2516 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2515 msgID=2516 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2516 msgID=2517 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2516 msgID=2517 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2517 msgID=2518 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2517 msgID=2518 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2518 msgID=2519 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2518 msgID=2519 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2519 msgID=2520 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2519 msgID=2520 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2520 msgID=2521 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2520 msgID=2521 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2521 msgID=2522 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2521 msgID=2522 result=0 nentries=3 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2522 msgID=2523 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2522 msgID=2523 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2523 msgID=2524 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2523 msgID=2524 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2524 msgID=2525 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2524 msgID=2525 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2525 msgID=2526 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2525 msgID=2526 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2526 msgID=2527 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2526 msgID=2527 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2527 msgID=2528 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2527 msgID=2528 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2528 msgID=2529 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2528 msgID=2529 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2529 msgID=2530 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2529 msgID=2530 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2530 msgID=2531 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2530 msgID=2531 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2531 msgID=2532 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2531 msgID=2532 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2532 msgID=2533 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2532 msgID=2533 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2533 msgID=2534 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2533 msgID=2534 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2534 msgID=2535 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2534 msgID=2535 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2535 msgID=2536 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2535 msgID=2536 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2536 msgID=2537 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2536 msgID=2537 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2537 msgID=2538 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2537 msgID=2538 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2538 msgID=2539 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2538 msgID=2539 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2539 msgID=2540 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2539 msgID=2540 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2540 msgID=2541 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2540 msgID=2541 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2541 msgID=2542 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2541 msgID=2542 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2542 msgID=2543 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2542 msgID=2543 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2543 msgID=2544 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2543 msgID=2544 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2544 msgID=2545 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2544 msgID=2545 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2545 msgID=2546 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2545 msgID=2546 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2546 msgID=2547 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2546 msgID=2547 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2547 msgID=2548 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2547 msgID=2548 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2548 msgID=2549 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2548 msgID=2549 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2549 msgID=2550 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2549 msgID=2550 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2550 msgID=2551 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2550 msgID=2551 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2551 msgID=2552 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2551 msgID=2552 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2552 msgID=2553 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2552 msgID=2553 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2553 msgID=2554 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2553 msgID=2554 result=0 nentries=42 etime=31 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2554 msgID=2555 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2554 msgID=2555 result=0 nentries=3 etime=3 +[06/Mar/2015:19:15:15 +0100] SEARCH REQ conn=0 op=2555 msgID=2556 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:15 +0100] SEARCH RES conn=0 op=2555 msgID=2556 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:21 +0100] CONNECT conn=2 from=10.1.1.55:58338 to=10.1.1.55:10389 protocol=LDAP +[06/Mar/2015:19:15:21 +0100] BIND REQ conn=2 op=0 msgID=1 version=3 type=SIMPLE dn="cn=Directory Manager" +[06/Mar/2015:19:15:21 +0100] BIND RES conn=2 op=0 msgID=1 result=0 authDN="cn=Directory Manager,cn=Root DNs,cn=config" etime=1 +[06/Mar/2015:19:15:21 +0100] SEARCH REQ conn=2 op=1 msgID=2 base="cn=config" scope=baseObject filter="(objectclass=*)" attrs="1.1" +[06/Mar/2015:19:15:21 +0100] SEARCH RES conn=2 op=1 msgID=2 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:21 +0100] CONNECT conn=3 from=10.1.1.55:58339 to=10.1.1.55:10389 protocol=LDAP +[06/Mar/2015:19:15:21 +0100] BIND REQ conn=3 op=0 msgID=1 version=3 type=SIMPLE dn="cn=Directory Manager" +[06/Mar/2015:19:15:21 +0100] BIND RES conn=3 op=0 msgID=1 result=0 authDN="cn=Directory Manager,cn=Root DNs,cn=config" etime=1 +[06/Mar/2015:19:15:21 +0100] SEARCH REQ conn=2 op=2 msgID=3 base="dc=example,dc=com" scope=baseObject filter="(|(objectClass=*)(objectClass=ldapsubentry))" attrs="objectClass,numsubordinates,hassubordinates,ref,aci" +[06/Mar/2015:19:15:21 +0100] SEARCH RES conn=2 op=2 msgID=3 result=0 nentries=1 etime=3 +[06/Mar/2015:19:15:23 +0100] SEARCH REQ conn=2 op=3 msgID=4 base="dc=example,dc=com" scope=baseObject filter="(|(objectClass=*)(objectClass=ldapsubentry))" attrs="objectClass,numsubordinates,hassubordinates,ref,aci" +[06/Mar/2015:19:15:23 +0100] SEARCH RES conn=2 op=3 msgID=4 result=0 nentries=1 etime=3 +[06/Mar/2015:19:15:23 +0100] SEARCH REQ conn=2 op=4 msgID=5 base="dc=example,dc=com" scope=singleLevel filter="(|(objectClass=*)(objectClass=ldapsubentry))" attrs="objectClass,numsubordinates,hassubordinates,ref,aci" +[06/Mar/2015:19:15:23 +0100] SEARCH RES conn=2 op=4 msgID=5 result=0 nentries=3 etime=6 +[06/Mar/2015:19:15:24 +0100] SEARCH REQ conn=2 op=5 msgID=6 base="ou=People,dc=example,dc=com" scope=baseObject filter="(|(objectclass=*)(objectclass=ldapsubentry))" attrs="*,+" +[06/Mar/2015:19:15:24 +0100] SEARCH RES conn=2 op=5 msgID=6 result=0 nentries=1 etime=4 +[06/Mar/2015:19:15:25 +0100] SEARCH REQ conn=2 op=6 msgID=7 base="ou=People,dc=example,dc=com" scope=baseObject filter="(|(objectClass=*)(objectClass=ldapsubentry))" attrs="objectClass,numsubordinates,hassubordinates,ref,aci" +[06/Mar/2015:19:15:25 +0100] SEARCH RES conn=2 op=6 msgID=7 result=0 nentries=1 etime=2 +[06/Mar/2015:19:15:25 +0100] SEARCH REQ conn=2 op=7 msgID=8 base="ou=People,dc=example,dc=com" scope=singleLevel filter="(|(objectClass=*)(objectClass=ldapsubentry))" attrs="objectClass,numsubordinates,hassubordinates,ref,aci" +[06/Mar/2015:19:15:25 +0100] SEARCH RES conn=2 op=7 msgID=8 result=0 nentries=3 etime=8 +[06/Mar/2015:19:15:28 +0100] SEARCH REQ conn=2 op=8 msgID=9 base="ou=Administrators,dc=example,dc=com" scope=baseObject filter="(|(objectClass=*)(objectClass=ldapsubentry))" attrs="objectClass,numsubordinates,hassubordinates,ref,aci" +[06/Mar/2015:19:15:28 +0100] SEARCH RES conn=2 op=8 msgID=9 result=0 nentries=1 etime=2 +[06/Mar/2015:19:15:28 +0100] SEARCH REQ conn=2 op=9 msgID=10 base="ou=Administrators,dc=example,dc=com" scope=singleLevel filter="(|(objectClass=*)(objectClass=ldapsubentry))" attrs="objectClass,numsubordinates,hassubordinates,ref,aci" +[06/Mar/2015:19:15:28 +0100] SEARCH RES conn=2 op=9 msgID=10 result=0 nentries=1 etime=3 +[06/Mar/2015:19:15:29 +0100] SEARCH REQ conn=2 op=10 msgID=11 base="uid=jgibbs,ou=People,dc=example,dc=com" scope=baseObject filter="(|(objectclass=*)(objectclass=ldapsubentry))" attrs="*,+" +[06/Mar/2015:19:15:29 +0100] SEARCH RES conn=2 op=10 msgID=11 result=0 nentries=1 etime=3 +[06/Mar/2015:19:15:30 +0100] SEARCH REQ conn=2 op=11 msgID=12 base="uid=hbarbossa,ou=People,dc=example,dc=com" scope=baseObject filter="(|(objectclass=*)(objectclass=ldapsubentry))" attrs="*,+" +[06/Mar/2015:19:15:30 +0100] SEARCH RES conn=2 op=11 msgID=12 result=0 nentries=1 etime=3 +[06/Mar/2015:19:15:31 +0100] SEARCH REQ conn=2 op=12 msgID=13 base="uid=jbeckett,ou=People,dc=example,dc=com" scope=baseObject filter="(|(objectclass=*)(objectclass=ldapsubentry))" attrs="*,+" +[06/Mar/2015:19:15:31 +0100] SEARCH RES conn=2 op=12 msgID=13 result=0 nentries=1 etime=3 +[06/Mar/2015:19:15:31 +0100] SEARCH REQ conn=2 op=13 msgID=14 base="uid=jgibbs,ou=People,dc=example,dc=com" scope=baseObject filter="(|(objectclass=*)(objectclass=ldapsubentry))" attrs="*,+" +[06/Mar/2015:19:15:31 +0100] SEARCH RES conn=2 op=13 msgID=14 result=0 nentries=1 etime=2 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2556 msgID=2557 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2556 msgID=2557 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2557 msgID=2558 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2557 msgID=2558 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2558 msgID=2559 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2558 msgID=2559 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2559 msgID=2560 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2559 msgID=2560 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2560 msgID=2561 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2560 msgID=2561 result=0 nentries=5 etime=1 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2561 msgID=2562 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2561 msgID=2562 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2562 msgID=2563 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2562 msgID=2563 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2563 msgID=2564 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2563 msgID=2564 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2564 msgID=2565 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2564 msgID=2565 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2565 msgID=2566 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2565 msgID=2566 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2566 msgID=2567 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2566 msgID=2567 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2567 msgID=2568 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2567 msgID=2568 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2568 msgID=2569 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2568 msgID=2569 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2569 msgID=2570 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2569 msgID=2570 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2570 msgID=2571 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2570 msgID=2571 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2571 msgID=2572 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2571 msgID=2572 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2572 msgID=2573 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2572 msgID=2573 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2573 msgID=2574 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2573 msgID=2574 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2574 msgID=2575 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2574 msgID=2575 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2575 msgID=2576 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2575 msgID=2576 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2576 msgID=2577 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2576 msgID=2577 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2577 msgID=2578 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2577 msgID=2578 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2578 msgID=2579 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2578 msgID=2579 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2579 msgID=2580 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2579 msgID=2580 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2580 msgID=2581 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2580 msgID=2581 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2581 msgID=2582 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2581 msgID=2582 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2582 msgID=2583 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2582 msgID=2583 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2583 msgID=2584 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2583 msgID=2584 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2584 msgID=2585 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:15:35 +0100] SEARCH RES conn=0 op=2584 msgID=2585 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:35 +0100] SEARCH REQ conn=0 op=2585 msgID=2586 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2585 msgID=2586 result=0 nentries=9 etime=2 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2586 msgID=2587 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2586 msgID=2587 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2587 msgID=2588 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2587 msgID=2588 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2588 msgID=2589 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2588 msgID=2589 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2589 msgID=2590 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2589 msgID=2590 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2590 msgID=2591 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2590 msgID=2591 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2591 msgID=2592 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2591 msgID=2592 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2592 msgID=2593 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2592 msgID=2593 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2593 msgID=2594 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2593 msgID=2594 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2594 msgID=2595 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2594 msgID=2595 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2595 msgID=2596 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2595 msgID=2596 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2596 msgID=2597 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2596 msgID=2597 result=0 nentries=13 etime=2 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2597 msgID=2598 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2597 msgID=2598 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2598 msgID=2599 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2598 msgID=2599 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2599 msgID=2600 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2599 msgID=2600 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2600 msgID=2601 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2600 msgID=2601 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2601 msgID=2602 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2601 msgID=2602 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2602 msgID=2603 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2602 msgID=2603 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2603 msgID=2604 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2603 msgID=2604 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2604 msgID=2605 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2604 msgID=2605 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2605 msgID=2606 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2605 msgID=2606 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2606 msgID=2607 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2606 msgID=2607 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2607 msgID=2608 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2607 msgID=2608 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2608 msgID=2609 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2608 msgID=2609 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2609 msgID=2610 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2609 msgID=2610 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2610 msgID=2611 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2610 msgID=2611 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2611 msgID=2612 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2611 msgID=2612 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2612 msgID=2613 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2612 msgID=2613 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2613 msgID=2614 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2613 msgID=2614 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2614 msgID=2615 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2614 msgID=2615 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2615 msgID=2616 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2615 msgID=2616 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2616 msgID=2617 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2616 msgID=2617 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2617 msgID=2618 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2617 msgID=2618 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2618 msgID=2619 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2618 msgID=2619 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2619 msgID=2620 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2619 msgID=2620 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2620 msgID=2621 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2620 msgID=2621 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2621 msgID=2622 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2621 msgID=2622 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2622 msgID=2623 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2622 msgID=2623 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2623 msgID=2624 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2623 msgID=2624 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2624 msgID=2625 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2624 msgID=2625 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2625 msgID=2626 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2625 msgID=2626 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2626 msgID=2627 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2626 msgID=2627 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2627 msgID=2628 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2627 msgID=2628 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2628 msgID=2629 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2628 msgID=2629 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2629 msgID=2630 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2629 msgID=2630 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2630 msgID=2631 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2630 msgID=2631 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2631 msgID=2632 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2631 msgID=2632 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2632 msgID=2633 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2632 msgID=2633 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2633 msgID=2634 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2633 msgID=2634 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2634 msgID=2635 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2634 msgID=2635 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2635 msgID=2636 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2635 msgID=2636 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2636 msgID=2637 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2636 msgID=2637 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2637 msgID=2638 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2637 msgID=2638 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2638 msgID=2639 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2638 msgID=2639 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2639 msgID=2640 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2639 msgID=2640 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2640 msgID=2641 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2640 msgID=2641 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2641 msgID=2642 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2641 msgID=2642 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2642 msgID=2643 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2642 msgID=2643 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2643 msgID=2644 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2643 msgID=2644 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2644 msgID=2645 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2644 msgID=2645 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2645 msgID=2646 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2645 msgID=2646 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2646 msgID=2647 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2646 msgID=2647 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2647 msgID=2648 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2647 msgID=2648 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2648 msgID=2649 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2648 msgID=2649 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2649 msgID=2650 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2649 msgID=2650 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2650 msgID=2651 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2650 msgID=2651 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2651 msgID=2652 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2651 msgID=2652 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2652 msgID=2653 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2652 msgID=2653 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2653 msgID=2654 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2653 msgID=2654 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2654 msgID=2655 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2654 msgID=2655 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2655 msgID=2656 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2655 msgID=2656 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2656 msgID=2657 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2656 msgID=2657 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2657 msgID=2658 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2657 msgID=2658 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2658 msgID=2659 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2658 msgID=2659 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2659 msgID=2660 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2659 msgID=2660 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2660 msgID=2661 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2660 msgID=2661 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2661 msgID=2662 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2661 msgID=2662 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2662 msgID=2663 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2662 msgID=2663 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2663 msgID=2664 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2663 msgID=2664 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2664 msgID=2665 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2664 msgID=2665 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2665 msgID=2666 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2665 msgID=2666 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2666 msgID=2667 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2666 msgID=2667 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2667 msgID=2668 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2667 msgID=2668 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2668 msgID=2669 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2668 msgID=2669 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2669 msgID=2670 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2669 msgID=2670 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2670 msgID=2671 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2670 msgID=2671 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2671 msgID=2672 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2671 msgID=2672 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2672 msgID=2673 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2672 msgID=2673 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2673 msgID=2674 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2673 msgID=2674 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2674 msgID=2675 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2674 msgID=2675 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2675 msgID=2676 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2675 msgID=2676 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2676 msgID=2677 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2676 msgID=2677 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2677 msgID=2678 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2677 msgID=2678 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2678 msgID=2679 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2678 msgID=2679 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2679 msgID=2680 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2679 msgID=2680 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2680 msgID=2681 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2680 msgID=2681 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2681 msgID=2682 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2681 msgID=2682 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2682 msgID=2683 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2682 msgID=2683 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2683 msgID=2684 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2683 msgID=2684 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2684 msgID=2685 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2684 msgID=2685 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2685 msgID=2686 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2685 msgID=2686 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2686 msgID=2687 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2686 msgID=2687 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2687 msgID=2688 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2687 msgID=2688 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2688 msgID=2689 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2688 msgID=2689 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2689 msgID=2690 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2689 msgID=2690 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2690 msgID=2691 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2690 msgID=2691 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2691 msgID=2692 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2691 msgID=2692 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2692 msgID=2693 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2692 msgID=2693 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2693 msgID=2694 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2693 msgID=2694 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2694 msgID=2695 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2694 msgID=2695 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2695 msgID=2696 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2695 msgID=2696 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2696 msgID=2697 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2696 msgID=2697 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2697 msgID=2698 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2697 msgID=2698 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2698 msgID=2699 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2698 msgID=2699 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2699 msgID=2700 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2699 msgID=2700 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2700 msgID=2701 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2700 msgID=2701 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2701 msgID=2702 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2701 msgID=2702 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2702 msgID=2703 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2702 msgID=2703 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2703 msgID=2704 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2703 msgID=2704 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2704 msgID=2705 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2704 msgID=2705 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2705 msgID=2706 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2705 msgID=2706 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2706 msgID=2707 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2706 msgID=2707 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2707 msgID=2708 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2707 msgID=2708 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2708 msgID=2709 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2708 msgID=2709 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2709 msgID=2710 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2709 msgID=2710 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2710 msgID=2711 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2710 msgID=2711 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2711 msgID=2712 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2711 msgID=2712 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2712 msgID=2713 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2712 msgID=2713 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2713 msgID=2714 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2713 msgID=2714 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2714 msgID=2715 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2714 msgID=2715 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2715 msgID=2716 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2715 msgID=2716 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2716 msgID=2717 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2716 msgID=2717 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2717 msgID=2718 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2717 msgID=2718 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2718 msgID=2719 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2718 msgID=2719 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2719 msgID=2720 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2719 msgID=2720 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2720 msgID=2721 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2720 msgID=2721 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2721 msgID=2722 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2721 msgID=2722 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2722 msgID=2723 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2722 msgID=2723 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2723 msgID=2724 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2723 msgID=2724 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2724 msgID=2725 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2724 msgID=2725 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2725 msgID=2726 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2725 msgID=2726 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2726 msgID=2727 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2726 msgID=2727 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2727 msgID=2728 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2727 msgID=2728 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2728 msgID=2729 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2728 msgID=2729 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2729 msgID=2730 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2729 msgID=2730 result=0 nentries=0 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2730 msgID=2731 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2730 msgID=2731 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2731 msgID=2732 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2731 msgID=2732 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2732 msgID=2733 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2732 msgID=2733 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2733 msgID=2734 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2733 msgID=2734 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2734 msgID=2735 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2734 msgID=2735 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2735 msgID=2736 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2735 msgID=2736 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2736 msgID=2737 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2736 msgID=2737 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2737 msgID=2738 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2737 msgID=2738 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2738 msgID=2739 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2738 msgID=2739 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2739 msgID=2740 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2739 msgID=2740 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2740 msgID=2741 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2740 msgID=2741 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2741 msgID=2742 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2741 msgID=2742 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2742 msgID=2743 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2742 msgID=2743 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2743 msgID=2744 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2743 msgID=2744 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2744 msgID=2745 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2744 msgID=2745 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2745 msgID=2746 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2745 msgID=2746 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2746 msgID=2747 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2746 msgID=2747 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2747 msgID=2748 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2747 msgID=2748 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2748 msgID=2749 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2748 msgID=2749 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2749 msgID=2750 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2749 msgID=2750 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2750 msgID=2751 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2750 msgID=2751 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2751 msgID=2752 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2751 msgID=2752 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2752 msgID=2753 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2752 msgID=2753 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2753 msgID=2754 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2753 msgID=2754 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2754 msgID=2755 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2754 msgID=2755 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2755 msgID=2756 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2755 msgID=2756 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2756 msgID=2757 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2756 msgID=2757 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2757 msgID=2758 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2757 msgID=2758 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2758 msgID=2759 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2758 msgID=2759 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2759 msgID=2760 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2759 msgID=2760 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2760 msgID=2761 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2760 msgID=2761 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2761 msgID=2762 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2761 msgID=2762 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2762 msgID=2763 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2762 msgID=2763 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2763 msgID=2764 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2763 msgID=2764 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2764 msgID=2765 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2764 msgID=2765 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2765 msgID=2766 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2765 msgID=2766 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2766 msgID=2767 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2766 msgID=2767 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2767 msgID=2768 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2767 msgID=2768 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2768 msgID=2769 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2768 msgID=2769 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2769 msgID=2770 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2769 msgID=2770 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2770 msgID=2771 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2770 msgID=2771 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2771 msgID=2772 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2771 msgID=2772 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2772 msgID=2773 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2772 msgID=2773 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2773 msgID=2774 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2773 msgID=2774 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2774 msgID=2775 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2774 msgID=2775 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2775 msgID=2776 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2775 msgID=2776 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2776 msgID=2777 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2776 msgID=2777 result=0 nentries=3 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2777 msgID=2778 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2777 msgID=2778 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2778 msgID=2779 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2778 msgID=2779 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2779 msgID=2780 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2779 msgID=2780 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2780 msgID=2781 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2780 msgID=2781 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2781 msgID=2782 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2781 msgID=2782 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2782 msgID=2783 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2782 msgID=2783 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2783 msgID=2784 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2783 msgID=2784 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2784 msgID=2785 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2784 msgID=2785 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2785 msgID=2786 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2785 msgID=2786 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2786 msgID=2787 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2786 msgID=2787 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2787 msgID=2788 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2787 msgID=2788 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2788 msgID=2789 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2788 msgID=2789 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2789 msgID=2790 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2789 msgID=2790 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2790 msgID=2791 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2790 msgID=2791 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2791 msgID=2792 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2791 msgID=2792 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2792 msgID=2793 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2792 msgID=2793 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2793 msgID=2794 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2793 msgID=2794 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2794 msgID=2795 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2794 msgID=2795 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2795 msgID=2796 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2795 msgID=2796 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2796 msgID=2797 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2796 msgID=2797 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2797 msgID=2798 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2797 msgID=2798 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2798 msgID=2799 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2798 msgID=2799 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2799 msgID=2800 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2799 msgID=2800 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2800 msgID=2801 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2800 msgID=2801 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2801 msgID=2802 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2801 msgID=2802 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2802 msgID=2803 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2802 msgID=2803 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2803 msgID=2804 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2803 msgID=2804 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2804 msgID=2805 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2804 msgID=2805 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2805 msgID=2806 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2805 msgID=2806 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2806 msgID=2807 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2806 msgID=2807 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2807 msgID=2808 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2807 msgID=2808 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2808 msgID=2809 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2808 msgID=2809 result=0 nentries=42 etime=66 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2809 msgID=2810 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2809 msgID=2810 result=0 nentries=3 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=0 op=2810 msgID=2811 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=0 op=2810 msgID=2811 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:36 +0100] SEARCH REQ conn=2 op=14 msgID=15 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:36 +0100] SEARCH RES conn=2 op=14 msgID=15 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2811 msgID=2812 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2811 msgID=2812 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2812 msgID=2813 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2812 msgID=2813 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2813 msgID=2814 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2813 msgID=2814 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2814 msgID=2815 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2814 msgID=2815 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2815 msgID=2816 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2815 msgID=2816 result=0 nentries=5 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2816 msgID=2817 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2816 msgID=2817 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2817 msgID=2818 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2817 msgID=2818 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2818 msgID=2819 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2818 msgID=2819 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2819 msgID=2820 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2819 msgID=2820 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2820 msgID=2821 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2820 msgID=2821 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2821 msgID=2822 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2821 msgID=2822 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2822 msgID=2823 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2822 msgID=2823 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2823 msgID=2824 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2823 msgID=2824 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2824 msgID=2825 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2824 msgID=2825 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2825 msgID=2826 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2825 msgID=2826 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2826 msgID=2827 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2826 msgID=2827 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2827 msgID=2828 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2827 msgID=2828 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2828 msgID=2829 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2828 msgID=2829 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2829 msgID=2830 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2829 msgID=2830 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2830 msgID=2831 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2830 msgID=2831 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2831 msgID=2832 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2831 msgID=2832 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2832 msgID=2833 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2832 msgID=2833 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2833 msgID=2834 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2833 msgID=2834 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2834 msgID=2835 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2834 msgID=2835 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2835 msgID=2836 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2835 msgID=2836 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2836 msgID=2837 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2836 msgID=2837 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2837 msgID=2838 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2837 msgID=2838 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2838 msgID=2839 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2838 msgID=2839 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2839 msgID=2840 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2839 msgID=2840 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2840 msgID=2841 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2840 msgID=2841 result=0 nentries=9 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2841 msgID=2842 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2841 msgID=2842 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2842 msgID=2843 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2842 msgID=2843 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2843 msgID=2844 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2843 msgID=2844 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2844 msgID=2845 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2844 msgID=2845 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2845 msgID=2846 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2845 msgID=2846 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2846 msgID=2847 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2846 msgID=2847 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2847 msgID=2848 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2847 msgID=2848 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2848 msgID=2849 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2848 msgID=2849 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2849 msgID=2850 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2849 msgID=2850 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2850 msgID=2851 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2850 msgID=2851 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2851 msgID=2852 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2851 msgID=2852 result=0 nentries=13 etime=2 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2852 msgID=2853 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2852 msgID=2853 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2853 msgID=2854 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2853 msgID=2854 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2854 msgID=2855 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2854 msgID=2855 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2855 msgID=2856 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2855 msgID=2856 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2856 msgID=2857 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2856 msgID=2857 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2857 msgID=2858 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2857 msgID=2858 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2858 msgID=2859 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2858 msgID=2859 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2859 msgID=2860 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2859 msgID=2860 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2860 msgID=2861 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2860 msgID=2861 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2861 msgID=2862 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2861 msgID=2862 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2862 msgID=2863 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2862 msgID=2863 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2863 msgID=2864 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2863 msgID=2864 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2864 msgID=2865 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2864 msgID=2865 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2865 msgID=2866 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2865 msgID=2866 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2866 msgID=2867 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2866 msgID=2867 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2867 msgID=2868 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2867 msgID=2868 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2868 msgID=2869 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2868 msgID=2869 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2869 msgID=2870 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2869 msgID=2870 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2870 msgID=2871 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2870 msgID=2871 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2871 msgID=2872 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2871 msgID=2872 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2872 msgID=2873 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2872 msgID=2873 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2873 msgID=2874 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2873 msgID=2874 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2874 msgID=2875 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2874 msgID=2875 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2875 msgID=2876 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2875 msgID=2876 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2876 msgID=2877 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2876 msgID=2877 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2877 msgID=2878 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2877 msgID=2878 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2878 msgID=2879 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2878 msgID=2879 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2879 msgID=2880 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2879 msgID=2880 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2880 msgID=2881 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2880 msgID=2881 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2881 msgID=2882 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2881 msgID=2882 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2882 msgID=2883 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2882 msgID=2883 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2883 msgID=2884 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2883 msgID=2884 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2884 msgID=2885 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2884 msgID=2885 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2885 msgID=2886 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2885 msgID=2886 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2886 msgID=2887 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2886 msgID=2887 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2887 msgID=2888 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2887 msgID=2888 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2888 msgID=2889 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2888 msgID=2889 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2889 msgID=2890 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2889 msgID=2890 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2890 msgID=2891 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2890 msgID=2891 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2891 msgID=2892 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2891 msgID=2892 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2892 msgID=2893 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2892 msgID=2893 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2893 msgID=2894 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2893 msgID=2894 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2894 msgID=2895 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2894 msgID=2895 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2895 msgID=2896 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2895 msgID=2896 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2896 msgID=2897 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2896 msgID=2897 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2897 msgID=2898 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2897 msgID=2898 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2898 msgID=2899 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2898 msgID=2899 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2899 msgID=2900 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2899 msgID=2900 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2900 msgID=2901 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2900 msgID=2901 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2901 msgID=2902 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2901 msgID=2902 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2902 msgID=2903 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2902 msgID=2903 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2903 msgID=2904 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2903 msgID=2904 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2904 msgID=2905 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2904 msgID=2905 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2905 msgID=2906 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2905 msgID=2906 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2906 msgID=2907 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2906 msgID=2907 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2907 msgID=2908 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2907 msgID=2908 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2908 msgID=2909 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2908 msgID=2909 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2909 msgID=2910 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2909 msgID=2910 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2910 msgID=2911 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2910 msgID=2911 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2911 msgID=2912 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2911 msgID=2912 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2912 msgID=2913 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2912 msgID=2913 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2913 msgID=2914 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2913 msgID=2914 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2914 msgID=2915 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2914 msgID=2915 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2915 msgID=2916 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2915 msgID=2916 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2916 msgID=2917 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2916 msgID=2917 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2917 msgID=2918 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2917 msgID=2918 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2918 msgID=2919 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2918 msgID=2919 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2919 msgID=2920 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2919 msgID=2920 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2920 msgID=2921 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2920 msgID=2921 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2921 msgID=2922 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2921 msgID=2922 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2922 msgID=2923 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2922 msgID=2923 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2923 msgID=2924 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2923 msgID=2924 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2924 msgID=2925 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2924 msgID=2925 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2925 msgID=2926 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2925 msgID=2926 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2926 msgID=2927 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2926 msgID=2927 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2927 msgID=2928 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2927 msgID=2928 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2928 msgID=2929 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2928 msgID=2929 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2929 msgID=2930 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2929 msgID=2930 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2930 msgID=2931 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2930 msgID=2931 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2931 msgID=2932 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2931 msgID=2932 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2932 msgID=2933 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2932 msgID=2933 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2933 msgID=2934 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2933 msgID=2934 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2934 msgID=2935 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2934 msgID=2935 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2935 msgID=2936 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2935 msgID=2936 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2936 msgID=2937 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2936 msgID=2937 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2937 msgID=2938 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2937 msgID=2938 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2938 msgID=2939 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2938 msgID=2939 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2939 msgID=2940 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2939 msgID=2940 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2940 msgID=2941 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2940 msgID=2941 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2941 msgID=2942 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2941 msgID=2942 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2942 msgID=2943 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2942 msgID=2943 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2943 msgID=2944 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2943 msgID=2944 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2944 msgID=2945 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2944 msgID=2945 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2945 msgID=2946 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2945 msgID=2946 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2946 msgID=2947 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2946 msgID=2947 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2947 msgID=2948 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2947 msgID=2948 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2948 msgID=2949 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2948 msgID=2949 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2949 msgID=2950 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2949 msgID=2950 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2950 msgID=2951 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2950 msgID=2951 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2951 msgID=2952 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2951 msgID=2952 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2952 msgID=2953 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2952 msgID=2953 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2953 msgID=2954 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2953 msgID=2954 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2954 msgID=2955 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2954 msgID=2955 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2955 msgID=2956 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2955 msgID=2956 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2956 msgID=2957 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2956 msgID=2957 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2957 msgID=2958 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2957 msgID=2958 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2958 msgID=2959 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2958 msgID=2959 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2959 msgID=2960 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2959 msgID=2960 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2960 msgID=2961 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2960 msgID=2961 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2961 msgID=2962 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2961 msgID=2962 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2962 msgID=2963 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2962 msgID=2963 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2963 msgID=2964 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2963 msgID=2964 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2964 msgID=2965 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2964 msgID=2965 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2965 msgID=2966 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2965 msgID=2966 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2966 msgID=2967 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2966 msgID=2967 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2967 msgID=2968 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2967 msgID=2968 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2968 msgID=2969 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2968 msgID=2969 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2969 msgID=2970 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2969 msgID=2970 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2970 msgID=2971 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2970 msgID=2971 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2971 msgID=2972 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2971 msgID=2972 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2972 msgID=2973 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2972 msgID=2973 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2973 msgID=2974 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2973 msgID=2974 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2974 msgID=2975 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2974 msgID=2975 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2975 msgID=2976 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2975 msgID=2976 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2976 msgID=2977 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2976 msgID=2977 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2977 msgID=2978 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2977 msgID=2978 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2978 msgID=2979 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2978 msgID=2979 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2979 msgID=2980 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2979 msgID=2980 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2980 msgID=2981 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2980 msgID=2981 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2981 msgID=2982 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2981 msgID=2982 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2982 msgID=2983 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2982 msgID=2983 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2983 msgID=2984 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2983 msgID=2984 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2984 msgID=2985 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2984 msgID=2985 result=0 nentries=0 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2985 msgID=2986 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2985 msgID=2986 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2986 msgID=2987 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2986 msgID=2987 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2987 msgID=2988 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2987 msgID=2988 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2988 msgID=2989 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2988 msgID=2989 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2989 msgID=2990 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2989 msgID=2990 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2990 msgID=2991 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2990 msgID=2991 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2991 msgID=2992 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2991 msgID=2992 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2992 msgID=2993 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2992 msgID=2993 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2993 msgID=2994 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2993 msgID=2994 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2994 msgID=2995 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2994 msgID=2995 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2995 msgID=2996 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2995 msgID=2996 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2996 msgID=2997 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2996 msgID=2997 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2997 msgID=2998 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2997 msgID=2998 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2998 msgID=2999 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2998 msgID=2999 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=2999 msgID=3000 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=2999 msgID=3000 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3000 msgID=3001 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3000 msgID=3001 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3001 msgID=3002 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3001 msgID=3002 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3002 msgID=3003 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3002 msgID=3003 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3003 msgID=3004 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3003 msgID=3004 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3004 msgID=3005 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3004 msgID=3005 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3005 msgID=3006 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3005 msgID=3006 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3006 msgID=3007 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3006 msgID=3007 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3007 msgID=3008 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3007 msgID=3008 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3008 msgID=3009 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3008 msgID=3009 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3009 msgID=3010 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3009 msgID=3010 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3010 msgID=3011 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3010 msgID=3011 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3011 msgID=3012 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3011 msgID=3012 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3012 msgID=3013 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3012 msgID=3013 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3013 msgID=3014 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3013 msgID=3014 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3014 msgID=3015 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3014 msgID=3015 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3015 msgID=3016 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3015 msgID=3016 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3016 msgID=3017 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3016 msgID=3017 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3017 msgID=3018 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3017 msgID=3018 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3018 msgID=3019 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3018 msgID=3019 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3019 msgID=3020 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3019 msgID=3020 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3020 msgID=3021 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3020 msgID=3021 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3021 msgID=3022 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3021 msgID=3022 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3022 msgID=3023 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3022 msgID=3023 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3023 msgID=3024 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3023 msgID=3024 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3024 msgID=3025 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3024 msgID=3025 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3025 msgID=3026 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3025 msgID=3026 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3026 msgID=3027 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3026 msgID=3027 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3027 msgID=3028 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3027 msgID=3028 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3028 msgID=3029 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3028 msgID=3029 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3029 msgID=3030 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3029 msgID=3030 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3030 msgID=3031 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3030 msgID=3031 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3031 msgID=3032 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3031 msgID=3032 result=0 nentries=3 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3032 msgID=3033 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3032 msgID=3033 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3033 msgID=3034 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3033 msgID=3034 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3034 msgID=3035 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3034 msgID=3035 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3035 msgID=3036 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3035 msgID=3036 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3036 msgID=3037 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3036 msgID=3037 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3037 msgID=3038 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3037 msgID=3038 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3038 msgID=3039 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3038 msgID=3039 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3039 msgID=3040 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3039 msgID=3040 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3040 msgID=3041 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3040 msgID=3041 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3041 msgID=3042 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3041 msgID=3042 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3042 msgID=3043 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3042 msgID=3043 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3043 msgID=3044 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3043 msgID=3044 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3044 msgID=3045 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3044 msgID=3045 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3045 msgID=3046 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3045 msgID=3046 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3046 msgID=3047 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3046 msgID=3047 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3047 msgID=3048 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3047 msgID=3048 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3048 msgID=3049 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3048 msgID=3049 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3049 msgID=3050 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3049 msgID=3050 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3050 msgID=3051 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3050 msgID=3051 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3051 msgID=3052 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3051 msgID=3052 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3052 msgID=3053 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3052 msgID=3053 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3053 msgID=3054 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3053 msgID=3054 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3054 msgID=3055 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3054 msgID=3055 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3055 msgID=3056 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3055 msgID=3056 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3056 msgID=3057 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3056 msgID=3057 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3057 msgID=3058 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3057 msgID=3058 result=0 nentries=1 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3058 msgID=3059 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3058 msgID=3059 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3059 msgID=3060 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3059 msgID=3060 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3060 msgID=3061 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3060 msgID=3061 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3061 msgID=3062 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3061 msgID=3062 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3062 msgID=3063 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3062 msgID=3063 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3063 msgID=3064 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3063 msgID=3064 result=0 nentries=42 etime=29 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3064 msgID=3065 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3064 msgID=3065 result=0 nentries=3 etime=1 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=0 op=3065 msgID=3066 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=0 op=3065 msgID=3066 result=0 nentries=1 etime=0 +[06/Mar/2015:19:15:56 +0100] SEARCH REQ conn=2 op=15 msgID=16 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:15:56 +0100] SEARCH RES conn=2 op=15 msgID=16 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3066 msgID=3067 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3066 msgID=3067 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3067 msgID=3068 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3067 msgID=3068 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3068 msgID=3069 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3068 msgID=3069 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3069 msgID=3070 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3069 msgID=3070 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3070 msgID=3071 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3070 msgID=3071 result=0 nentries=5 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3071 msgID=3072 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3071 msgID=3072 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3072 msgID=3073 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3072 msgID=3073 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3073 msgID=3074 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3073 msgID=3074 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3074 msgID=3075 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3074 msgID=3075 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3075 msgID=3076 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3075 msgID=3076 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3076 msgID=3077 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3076 msgID=3077 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3077 msgID=3078 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3077 msgID=3078 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3078 msgID=3079 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3078 msgID=3079 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3079 msgID=3080 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3079 msgID=3080 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3080 msgID=3081 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3080 msgID=3081 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3081 msgID=3082 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3081 msgID=3082 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3082 msgID=3083 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3082 msgID=3083 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3083 msgID=3084 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3083 msgID=3084 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3084 msgID=3085 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3084 msgID=3085 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3085 msgID=3086 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3085 msgID=3086 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3086 msgID=3087 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3086 msgID=3087 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3087 msgID=3088 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3087 msgID=3088 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3088 msgID=3089 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3088 msgID=3089 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3089 msgID=3090 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3089 msgID=3090 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3090 msgID=3091 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3090 msgID=3091 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3091 msgID=3092 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3091 msgID=3092 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3092 msgID=3093 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3092 msgID=3093 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3093 msgID=3094 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3093 msgID=3094 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3094 msgID=3095 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3094 msgID=3095 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3095 msgID=3096 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3095 msgID=3096 result=0 nentries=9 etime=2 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3096 msgID=3097 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3096 msgID=3097 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3097 msgID=3098 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3097 msgID=3098 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3098 msgID=3099 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3098 msgID=3099 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3099 msgID=3100 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3099 msgID=3100 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3100 msgID=3101 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3100 msgID=3101 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3101 msgID=3102 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3101 msgID=3102 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3102 msgID=3103 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3102 msgID=3103 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3103 msgID=3104 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3103 msgID=3104 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3104 msgID=3105 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3104 msgID=3105 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3105 msgID=3106 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3105 msgID=3106 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3106 msgID=3107 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3106 msgID=3107 result=0 nentries=13 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3107 msgID=3108 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3107 msgID=3108 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3108 msgID=3109 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3108 msgID=3109 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3109 msgID=3110 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3109 msgID=3110 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3110 msgID=3111 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3110 msgID=3111 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3111 msgID=3112 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3111 msgID=3112 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3112 msgID=3113 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3112 msgID=3113 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3113 msgID=3114 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3113 msgID=3114 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3114 msgID=3115 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3114 msgID=3115 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3115 msgID=3116 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3115 msgID=3116 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3116 msgID=3117 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3116 msgID=3117 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3117 msgID=3118 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3117 msgID=3118 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3118 msgID=3119 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3118 msgID=3119 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3119 msgID=3120 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3119 msgID=3120 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3120 msgID=3121 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3120 msgID=3121 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3121 msgID=3122 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3121 msgID=3122 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3122 msgID=3123 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3122 msgID=3123 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3123 msgID=3124 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3123 msgID=3124 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3124 msgID=3125 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3124 msgID=3125 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3125 msgID=3126 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3125 msgID=3126 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3126 msgID=3127 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3126 msgID=3127 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3127 msgID=3128 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3127 msgID=3128 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3128 msgID=3129 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3128 msgID=3129 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3129 msgID=3130 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3129 msgID=3130 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3130 msgID=3131 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3130 msgID=3131 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3131 msgID=3132 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3131 msgID=3132 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3132 msgID=3133 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3132 msgID=3133 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3133 msgID=3134 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3133 msgID=3134 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3134 msgID=3135 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3134 msgID=3135 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3135 msgID=3136 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3135 msgID=3136 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3136 msgID=3137 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3136 msgID=3137 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3137 msgID=3138 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3137 msgID=3138 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3138 msgID=3139 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3138 msgID=3139 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3139 msgID=3140 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3139 msgID=3140 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3140 msgID=3141 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3140 msgID=3141 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3141 msgID=3142 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3141 msgID=3142 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3142 msgID=3143 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3142 msgID=3143 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3143 msgID=3144 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3143 msgID=3144 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3144 msgID=3145 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3144 msgID=3145 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3145 msgID=3146 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3145 msgID=3146 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3146 msgID=3147 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3146 msgID=3147 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3147 msgID=3148 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3147 msgID=3148 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3148 msgID=3149 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3148 msgID=3149 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3149 msgID=3150 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3149 msgID=3150 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3150 msgID=3151 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3150 msgID=3151 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3151 msgID=3152 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3151 msgID=3152 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3152 msgID=3153 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3152 msgID=3153 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3153 msgID=3154 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3153 msgID=3154 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3154 msgID=3155 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3154 msgID=3155 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3155 msgID=3156 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3155 msgID=3156 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3156 msgID=3157 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3156 msgID=3157 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3157 msgID=3158 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3157 msgID=3158 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3158 msgID=3159 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3158 msgID=3159 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3159 msgID=3160 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3159 msgID=3160 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3160 msgID=3161 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3160 msgID=3161 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3161 msgID=3162 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3161 msgID=3162 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3162 msgID=3163 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3162 msgID=3163 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3163 msgID=3164 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3163 msgID=3164 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3164 msgID=3165 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3164 msgID=3165 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3165 msgID=3166 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3165 msgID=3166 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3166 msgID=3167 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3166 msgID=3167 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3167 msgID=3168 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3167 msgID=3168 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3168 msgID=3169 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3168 msgID=3169 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3169 msgID=3170 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3169 msgID=3170 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3170 msgID=3171 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3170 msgID=3171 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3171 msgID=3172 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3171 msgID=3172 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3172 msgID=3173 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3172 msgID=3173 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3173 msgID=3174 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3173 msgID=3174 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3174 msgID=3175 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3174 msgID=3175 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3175 msgID=3176 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3175 msgID=3176 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3176 msgID=3177 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3176 msgID=3177 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3177 msgID=3178 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3177 msgID=3178 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3178 msgID=3179 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3178 msgID=3179 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3179 msgID=3180 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3179 msgID=3180 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3180 msgID=3181 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3180 msgID=3181 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3181 msgID=3182 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3181 msgID=3182 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3182 msgID=3183 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3182 msgID=3183 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3183 msgID=3184 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3183 msgID=3184 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3184 msgID=3185 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3184 msgID=3185 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3185 msgID=3186 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3185 msgID=3186 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3186 msgID=3187 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3186 msgID=3187 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3187 msgID=3188 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3187 msgID=3188 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3188 msgID=3189 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3188 msgID=3189 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3189 msgID=3190 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3189 msgID=3190 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3190 msgID=3191 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3190 msgID=3191 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3191 msgID=3192 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3191 msgID=3192 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3192 msgID=3193 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3192 msgID=3193 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3193 msgID=3194 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3193 msgID=3194 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3194 msgID=3195 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3194 msgID=3195 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3195 msgID=3196 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3195 msgID=3196 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3196 msgID=3197 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3196 msgID=3197 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3197 msgID=3198 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3197 msgID=3198 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3198 msgID=3199 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3198 msgID=3199 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3199 msgID=3200 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3199 msgID=3200 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3200 msgID=3201 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3200 msgID=3201 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3201 msgID=3202 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3201 msgID=3202 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3202 msgID=3203 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3202 msgID=3203 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3203 msgID=3204 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3203 msgID=3204 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3204 msgID=3205 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3204 msgID=3205 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3205 msgID=3206 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3205 msgID=3206 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3206 msgID=3207 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3206 msgID=3207 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3207 msgID=3208 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3207 msgID=3208 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3208 msgID=3209 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3208 msgID=3209 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3209 msgID=3210 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3209 msgID=3210 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3210 msgID=3211 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3210 msgID=3211 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3211 msgID=3212 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3211 msgID=3212 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3212 msgID=3213 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3212 msgID=3213 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3213 msgID=3214 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3213 msgID=3214 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3214 msgID=3215 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3214 msgID=3215 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3215 msgID=3216 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3215 msgID=3216 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3216 msgID=3217 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3216 msgID=3217 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3217 msgID=3218 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3217 msgID=3218 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3218 msgID=3219 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3218 msgID=3219 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3219 msgID=3220 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3219 msgID=3220 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3220 msgID=3221 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3220 msgID=3221 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3221 msgID=3222 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3221 msgID=3222 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3222 msgID=3223 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3222 msgID=3223 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3223 msgID=3224 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3223 msgID=3224 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3224 msgID=3225 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3224 msgID=3225 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3225 msgID=3226 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3225 msgID=3226 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3226 msgID=3227 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3226 msgID=3227 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3227 msgID=3228 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3227 msgID=3228 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3228 msgID=3229 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3228 msgID=3229 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3229 msgID=3230 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3229 msgID=3230 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3230 msgID=3231 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3230 msgID=3231 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3231 msgID=3232 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3231 msgID=3232 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3232 msgID=3233 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3232 msgID=3233 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3233 msgID=3234 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3233 msgID=3234 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3234 msgID=3235 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3234 msgID=3235 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3235 msgID=3236 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3235 msgID=3236 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3236 msgID=3237 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3236 msgID=3237 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3237 msgID=3238 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3237 msgID=3238 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3238 msgID=3239 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3238 msgID=3239 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3239 msgID=3240 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3239 msgID=3240 result=0 nentries=0 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3240 msgID=3241 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3240 msgID=3241 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3241 msgID=3242 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3241 msgID=3242 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3242 msgID=3243 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3242 msgID=3243 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3243 msgID=3244 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3243 msgID=3244 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3244 msgID=3245 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3244 msgID=3245 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3245 msgID=3246 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3245 msgID=3246 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3246 msgID=3247 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3246 msgID=3247 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3247 msgID=3248 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3247 msgID=3248 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3248 msgID=3249 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3248 msgID=3249 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3249 msgID=3250 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3249 msgID=3250 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3250 msgID=3251 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3250 msgID=3251 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3251 msgID=3252 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3251 msgID=3252 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3252 msgID=3253 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3252 msgID=3253 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3253 msgID=3254 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3253 msgID=3254 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3254 msgID=3255 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3254 msgID=3255 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3255 msgID=3256 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3255 msgID=3256 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3256 msgID=3257 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3256 msgID=3257 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3257 msgID=3258 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3257 msgID=3258 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3258 msgID=3259 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3258 msgID=3259 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3259 msgID=3260 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3259 msgID=3260 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3260 msgID=3261 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3260 msgID=3261 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3261 msgID=3262 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3261 msgID=3262 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3262 msgID=3263 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3262 msgID=3263 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3263 msgID=3264 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3263 msgID=3264 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3264 msgID=3265 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3264 msgID=3265 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3265 msgID=3266 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3265 msgID=3266 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3266 msgID=3267 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3266 msgID=3267 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3267 msgID=3268 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3267 msgID=3268 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3268 msgID=3269 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3268 msgID=3269 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3269 msgID=3270 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3269 msgID=3270 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3270 msgID=3271 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3270 msgID=3271 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3271 msgID=3272 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3271 msgID=3272 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3272 msgID=3273 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3272 msgID=3273 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3273 msgID=3274 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3273 msgID=3274 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3274 msgID=3275 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3274 msgID=3275 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3275 msgID=3276 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3275 msgID=3276 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3276 msgID=3277 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3276 msgID=3277 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3277 msgID=3278 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3277 msgID=3278 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3278 msgID=3279 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3278 msgID=3279 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3279 msgID=3280 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3279 msgID=3280 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3280 msgID=3281 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3280 msgID=3281 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3281 msgID=3282 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3281 msgID=3282 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3282 msgID=3283 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3282 msgID=3283 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3283 msgID=3284 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3283 msgID=3284 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3284 msgID=3285 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3284 msgID=3285 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3285 msgID=3286 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3285 msgID=3286 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3286 msgID=3287 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3286 msgID=3287 result=0 nentries=3 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3287 msgID=3288 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3287 msgID=3288 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3288 msgID=3289 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3288 msgID=3289 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3289 msgID=3290 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3289 msgID=3290 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3290 msgID=3291 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3290 msgID=3291 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3291 msgID=3292 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3291 msgID=3292 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3292 msgID=3293 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3292 msgID=3293 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3293 msgID=3294 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3293 msgID=3294 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3294 msgID=3295 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3294 msgID=3295 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3295 msgID=3296 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3295 msgID=3296 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3296 msgID=3297 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3296 msgID=3297 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3297 msgID=3298 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3297 msgID=3298 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3298 msgID=3299 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3298 msgID=3299 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3299 msgID=3300 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3299 msgID=3300 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3300 msgID=3301 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3300 msgID=3301 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3301 msgID=3302 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3301 msgID=3302 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3302 msgID=3303 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3302 msgID=3303 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3303 msgID=3304 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3303 msgID=3304 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3304 msgID=3305 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3304 msgID=3305 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3305 msgID=3306 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3305 msgID=3306 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3306 msgID=3307 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3306 msgID=3307 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3307 msgID=3308 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3307 msgID=3308 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3308 msgID=3309 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3308 msgID=3309 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3309 msgID=3310 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3309 msgID=3310 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3310 msgID=3311 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3310 msgID=3311 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3311 msgID=3312 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3311 msgID=3312 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3312 msgID=3313 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3312 msgID=3313 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3313 msgID=3314 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3313 msgID=3314 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3314 msgID=3315 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3314 msgID=3315 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3315 msgID=3316 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3315 msgID=3316 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3316 msgID=3317 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3316 msgID=3317 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3317 msgID=3318 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3317 msgID=3318 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3318 msgID=3319 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3318 msgID=3319 result=0 nentries=42 etime=27 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3319 msgID=3320 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3319 msgID=3320 result=0 nentries=3 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=0 op=3320 msgID=3321 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=0 op=3320 msgID=3321 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:16 +0100] SEARCH REQ conn=2 op=16 msgID=17 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:16 +0100] SEARCH RES conn=2 op=16 msgID=17 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3321 msgID=3322 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3321 msgID=3322 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3322 msgID=3323 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3322 msgID=3323 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3323 msgID=3324 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3323 msgID=3324 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3324 msgID=3325 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3324 msgID=3325 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3325 msgID=3326 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3325 msgID=3326 result=0 nentries=5 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3326 msgID=3327 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3326 msgID=3327 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3327 msgID=3328 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3327 msgID=3328 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3328 msgID=3329 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3328 msgID=3329 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3329 msgID=3330 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3329 msgID=3330 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3330 msgID=3331 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3330 msgID=3331 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3331 msgID=3332 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3331 msgID=3332 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3332 msgID=3333 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3332 msgID=3333 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3333 msgID=3334 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3333 msgID=3334 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3334 msgID=3335 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3334 msgID=3335 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3335 msgID=3336 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3335 msgID=3336 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3336 msgID=3337 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3336 msgID=3337 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3337 msgID=3338 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3337 msgID=3338 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3338 msgID=3339 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3338 msgID=3339 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3339 msgID=3340 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3339 msgID=3340 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3340 msgID=3341 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3340 msgID=3341 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3341 msgID=3342 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3341 msgID=3342 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3342 msgID=3343 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3342 msgID=3343 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3343 msgID=3344 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3343 msgID=3344 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3344 msgID=3345 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3344 msgID=3345 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3345 msgID=3346 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3345 msgID=3346 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3346 msgID=3347 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3346 msgID=3347 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3347 msgID=3348 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3347 msgID=3348 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3348 msgID=3349 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3348 msgID=3349 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3349 msgID=3350 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3349 msgID=3350 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3350 msgID=3351 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3350 msgID=3351 result=0 nentries=9 etime=3 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3351 msgID=3352 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3351 msgID=3352 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3352 msgID=3353 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3352 msgID=3353 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3353 msgID=3354 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3353 msgID=3354 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3354 msgID=3355 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3354 msgID=3355 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3355 msgID=3356 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3355 msgID=3356 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3356 msgID=3357 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3356 msgID=3357 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3357 msgID=3358 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3357 msgID=3358 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3358 msgID=3359 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3358 msgID=3359 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3359 msgID=3360 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3359 msgID=3360 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3360 msgID=3361 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3360 msgID=3361 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3361 msgID=3362 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3361 msgID=3362 result=0 nentries=13 etime=3 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3362 msgID=3363 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3362 msgID=3363 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3363 msgID=3364 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3363 msgID=3364 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3364 msgID=3365 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3364 msgID=3365 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3365 msgID=3366 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3365 msgID=3366 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3366 msgID=3367 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3366 msgID=3367 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3367 msgID=3368 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3367 msgID=3368 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3368 msgID=3369 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3368 msgID=3369 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3369 msgID=3370 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3369 msgID=3370 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3370 msgID=3371 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3370 msgID=3371 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3371 msgID=3372 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3371 msgID=3372 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3372 msgID=3373 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3372 msgID=3373 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3373 msgID=3374 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3373 msgID=3374 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3374 msgID=3375 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3374 msgID=3375 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3375 msgID=3376 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3375 msgID=3376 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3376 msgID=3377 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3376 msgID=3377 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3377 msgID=3378 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3377 msgID=3378 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3378 msgID=3379 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3378 msgID=3379 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3379 msgID=3380 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3379 msgID=3380 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3380 msgID=3381 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3380 msgID=3381 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3381 msgID=3382 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3381 msgID=3382 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3382 msgID=3383 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3382 msgID=3383 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3383 msgID=3384 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3383 msgID=3384 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3384 msgID=3385 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3384 msgID=3385 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3385 msgID=3386 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3385 msgID=3386 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3386 msgID=3387 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3386 msgID=3387 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3387 msgID=3388 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:36 +0100] SEARCH RES conn=0 op=3387 msgID=3388 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:36 +0100] SEARCH REQ conn=0 op=3388 msgID=3389 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3388 msgID=3389 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3389 msgID=3390 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3389 msgID=3390 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3390 msgID=3391 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3390 msgID=3391 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3391 msgID=3392 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3391 msgID=3392 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3392 msgID=3393 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3392 msgID=3393 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3393 msgID=3394 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3393 msgID=3394 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3394 msgID=3395 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3394 msgID=3395 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3395 msgID=3396 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3395 msgID=3396 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3396 msgID=3397 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3396 msgID=3397 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3397 msgID=3398 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3397 msgID=3398 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3398 msgID=3399 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3398 msgID=3399 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3399 msgID=3400 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3399 msgID=3400 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3400 msgID=3401 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3400 msgID=3401 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3401 msgID=3402 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3401 msgID=3402 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3402 msgID=3403 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3402 msgID=3403 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3403 msgID=3404 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3403 msgID=3404 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3404 msgID=3405 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3404 msgID=3405 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3405 msgID=3406 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3405 msgID=3406 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3406 msgID=3407 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3406 msgID=3407 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3407 msgID=3408 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3407 msgID=3408 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3408 msgID=3409 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3408 msgID=3409 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3409 msgID=3410 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3409 msgID=3410 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3410 msgID=3411 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3410 msgID=3411 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3411 msgID=3412 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3411 msgID=3412 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3412 msgID=3413 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3412 msgID=3413 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3413 msgID=3414 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3413 msgID=3414 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3414 msgID=3415 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3414 msgID=3415 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3415 msgID=3416 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3415 msgID=3416 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3416 msgID=3417 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3416 msgID=3417 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3417 msgID=3418 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3417 msgID=3418 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3418 msgID=3419 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3418 msgID=3419 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3419 msgID=3420 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3419 msgID=3420 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3420 msgID=3421 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3420 msgID=3421 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3421 msgID=3422 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3421 msgID=3422 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3422 msgID=3423 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3422 msgID=3423 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3423 msgID=3424 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3423 msgID=3424 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3424 msgID=3425 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3424 msgID=3425 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3425 msgID=3426 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3425 msgID=3426 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3426 msgID=3427 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3426 msgID=3427 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3427 msgID=3428 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3427 msgID=3428 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3428 msgID=3429 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3428 msgID=3429 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3429 msgID=3430 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3429 msgID=3430 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3430 msgID=3431 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3430 msgID=3431 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3431 msgID=3432 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3431 msgID=3432 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3432 msgID=3433 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3432 msgID=3433 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3433 msgID=3434 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3433 msgID=3434 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3434 msgID=3435 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3434 msgID=3435 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3435 msgID=3436 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3435 msgID=3436 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3436 msgID=3437 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3436 msgID=3437 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3437 msgID=3438 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3437 msgID=3438 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3438 msgID=3439 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3438 msgID=3439 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3439 msgID=3440 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3439 msgID=3440 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3440 msgID=3441 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3440 msgID=3441 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3441 msgID=3442 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3441 msgID=3442 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3442 msgID=3443 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3442 msgID=3443 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3443 msgID=3444 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3443 msgID=3444 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3444 msgID=3445 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3444 msgID=3445 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3445 msgID=3446 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3445 msgID=3446 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3446 msgID=3447 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3446 msgID=3447 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3447 msgID=3448 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3447 msgID=3448 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3448 msgID=3449 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3448 msgID=3449 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3449 msgID=3450 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3449 msgID=3450 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3450 msgID=3451 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3450 msgID=3451 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3451 msgID=3452 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3451 msgID=3452 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3452 msgID=3453 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3452 msgID=3453 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3453 msgID=3454 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3453 msgID=3454 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3454 msgID=3455 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3454 msgID=3455 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3455 msgID=3456 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3455 msgID=3456 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3456 msgID=3457 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3456 msgID=3457 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3457 msgID=3458 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3457 msgID=3458 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3458 msgID=3459 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3458 msgID=3459 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3459 msgID=3460 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3459 msgID=3460 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3460 msgID=3461 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3460 msgID=3461 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3461 msgID=3462 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3461 msgID=3462 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3462 msgID=3463 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3462 msgID=3463 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3463 msgID=3464 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3463 msgID=3464 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3464 msgID=3465 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3464 msgID=3465 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3465 msgID=3466 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3465 msgID=3466 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3466 msgID=3467 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3466 msgID=3467 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3467 msgID=3468 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3467 msgID=3468 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3468 msgID=3469 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3468 msgID=3469 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3469 msgID=3470 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3469 msgID=3470 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3470 msgID=3471 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3470 msgID=3471 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3471 msgID=3472 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3471 msgID=3472 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3472 msgID=3473 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3472 msgID=3473 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3473 msgID=3474 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3473 msgID=3474 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3474 msgID=3475 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3474 msgID=3475 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3475 msgID=3476 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3475 msgID=3476 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3476 msgID=3477 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3476 msgID=3477 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3477 msgID=3478 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3477 msgID=3478 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3478 msgID=3479 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3478 msgID=3479 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3479 msgID=3480 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3479 msgID=3480 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3480 msgID=3481 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3480 msgID=3481 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3481 msgID=3482 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3481 msgID=3482 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3482 msgID=3483 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3482 msgID=3483 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3483 msgID=3484 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3483 msgID=3484 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3484 msgID=3485 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3484 msgID=3485 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3485 msgID=3486 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3485 msgID=3486 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3486 msgID=3487 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3486 msgID=3487 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3487 msgID=3488 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3487 msgID=3488 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3488 msgID=3489 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3488 msgID=3489 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3489 msgID=3490 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3489 msgID=3490 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3490 msgID=3491 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3490 msgID=3491 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3491 msgID=3492 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3491 msgID=3492 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3492 msgID=3493 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3492 msgID=3493 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3493 msgID=3494 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3493 msgID=3494 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3494 msgID=3495 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3494 msgID=3495 result=0 nentries=0 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3495 msgID=3496 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3495 msgID=3496 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3496 msgID=3497 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3496 msgID=3497 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3497 msgID=3498 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3497 msgID=3498 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3498 msgID=3499 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3498 msgID=3499 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3499 msgID=3500 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3499 msgID=3500 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3500 msgID=3501 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3500 msgID=3501 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3501 msgID=3502 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3501 msgID=3502 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3502 msgID=3503 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3502 msgID=3503 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3503 msgID=3504 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3503 msgID=3504 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3504 msgID=3505 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3504 msgID=3505 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3505 msgID=3506 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3505 msgID=3506 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3506 msgID=3507 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3506 msgID=3507 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3507 msgID=3508 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3507 msgID=3508 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3508 msgID=3509 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3508 msgID=3509 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3509 msgID=3510 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3509 msgID=3510 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3510 msgID=3511 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3510 msgID=3511 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3511 msgID=3512 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3511 msgID=3512 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3512 msgID=3513 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3512 msgID=3513 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3513 msgID=3514 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3513 msgID=3514 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3514 msgID=3515 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3514 msgID=3515 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3515 msgID=3516 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3515 msgID=3516 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3516 msgID=3517 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3516 msgID=3517 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3517 msgID=3518 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3517 msgID=3518 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3518 msgID=3519 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3518 msgID=3519 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3519 msgID=3520 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3519 msgID=3520 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3520 msgID=3521 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3520 msgID=3521 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3521 msgID=3522 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3521 msgID=3522 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3522 msgID=3523 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3522 msgID=3523 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3523 msgID=3524 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3523 msgID=3524 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3524 msgID=3525 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3524 msgID=3525 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3525 msgID=3526 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3525 msgID=3526 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3526 msgID=3527 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3526 msgID=3527 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3527 msgID=3528 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3527 msgID=3528 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3528 msgID=3529 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3528 msgID=3529 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3529 msgID=3530 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3529 msgID=3530 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3530 msgID=3531 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3530 msgID=3531 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3531 msgID=3532 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3531 msgID=3532 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3532 msgID=3533 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3532 msgID=3533 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3533 msgID=3534 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3533 msgID=3534 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3534 msgID=3535 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3534 msgID=3535 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3535 msgID=3536 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3535 msgID=3536 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3536 msgID=3537 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3536 msgID=3537 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3537 msgID=3538 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3537 msgID=3538 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3538 msgID=3539 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3538 msgID=3539 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3539 msgID=3540 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3539 msgID=3540 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3540 msgID=3541 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3540 msgID=3541 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3541 msgID=3542 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3541 msgID=3542 result=0 nentries=3 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3542 msgID=3543 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3542 msgID=3543 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3543 msgID=3544 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3543 msgID=3544 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3544 msgID=3545 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3544 msgID=3545 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3545 msgID=3546 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3545 msgID=3546 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3546 msgID=3547 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3546 msgID=3547 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3547 msgID=3548 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3547 msgID=3548 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3548 msgID=3549 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3548 msgID=3549 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3549 msgID=3550 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3549 msgID=3550 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3550 msgID=3551 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3550 msgID=3551 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3551 msgID=3552 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3551 msgID=3552 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3552 msgID=3553 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3552 msgID=3553 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3553 msgID=3554 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3553 msgID=3554 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3554 msgID=3555 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3554 msgID=3555 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3555 msgID=3556 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3555 msgID=3556 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3556 msgID=3557 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3556 msgID=3557 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3557 msgID=3558 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3557 msgID=3558 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3558 msgID=3559 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3558 msgID=3559 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3559 msgID=3560 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3559 msgID=3560 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3560 msgID=3561 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3560 msgID=3561 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3561 msgID=3562 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3561 msgID=3562 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3562 msgID=3563 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3562 msgID=3563 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3563 msgID=3564 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3563 msgID=3564 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3564 msgID=3565 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3564 msgID=3565 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3565 msgID=3566 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3565 msgID=3566 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3566 msgID=3567 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3566 msgID=3567 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3567 msgID=3568 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3567 msgID=3568 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3568 msgID=3569 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3568 msgID=3569 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3569 msgID=3570 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3569 msgID=3570 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3570 msgID=3571 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3570 msgID=3571 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3571 msgID=3572 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3571 msgID=3572 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3572 msgID=3573 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3572 msgID=3573 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3573 msgID=3574 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3573 msgID=3574 result=0 nentries=42 etime=35 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3574 msgID=3575 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3574 msgID=3575 result=0 nentries=3 etime=3 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=0 op=3575 msgID=3576 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=0 op=3575 msgID=3576 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:37 +0100] SEARCH REQ conn=2 op=17 msgID=18 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:37 +0100] SEARCH RES conn=2 op=17 msgID=18 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3576 msgID=3577 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3576 msgID=3577 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3577 msgID=3578 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3577 msgID=3578 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3578 msgID=3579 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3578 msgID=3579 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3579 msgID=3580 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3579 msgID=3580 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3580 msgID=3581 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3580 msgID=3581 result=0 nentries=5 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3581 msgID=3582 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3581 msgID=3582 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3582 msgID=3583 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3582 msgID=3583 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3583 msgID=3584 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3583 msgID=3584 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3584 msgID=3585 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3584 msgID=3585 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3585 msgID=3586 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3585 msgID=3586 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3586 msgID=3587 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3586 msgID=3587 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3587 msgID=3588 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3587 msgID=3588 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3588 msgID=3589 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3588 msgID=3589 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3589 msgID=3590 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3589 msgID=3590 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3590 msgID=3591 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3590 msgID=3591 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3591 msgID=3592 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3591 msgID=3592 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3592 msgID=3593 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3592 msgID=3593 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3593 msgID=3594 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3593 msgID=3594 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3594 msgID=3595 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3594 msgID=3595 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3595 msgID=3596 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3595 msgID=3596 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3596 msgID=3597 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3596 msgID=3597 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3597 msgID=3598 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3597 msgID=3598 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3598 msgID=3599 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3598 msgID=3599 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3599 msgID=3600 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3599 msgID=3600 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3600 msgID=3601 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3600 msgID=3601 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3601 msgID=3602 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3601 msgID=3602 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3602 msgID=3603 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3602 msgID=3603 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3603 msgID=3604 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3603 msgID=3604 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3604 msgID=3605 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3604 msgID=3605 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3605 msgID=3606 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3605 msgID=3606 result=0 nentries=9 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3606 msgID=3607 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3606 msgID=3607 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3607 msgID=3608 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3607 msgID=3608 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3608 msgID=3609 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3608 msgID=3609 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3609 msgID=3610 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3609 msgID=3610 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3610 msgID=3611 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3610 msgID=3611 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3611 msgID=3612 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3611 msgID=3612 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3612 msgID=3613 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3612 msgID=3613 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3613 msgID=3614 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3613 msgID=3614 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3614 msgID=3615 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3614 msgID=3615 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3615 msgID=3616 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3615 msgID=3616 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3616 msgID=3617 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3616 msgID=3617 result=0 nentries=13 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3617 msgID=3618 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3617 msgID=3618 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3618 msgID=3619 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3618 msgID=3619 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3619 msgID=3620 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3619 msgID=3620 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3620 msgID=3621 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3620 msgID=3621 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3621 msgID=3622 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3621 msgID=3622 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3622 msgID=3623 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3622 msgID=3623 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3623 msgID=3624 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3623 msgID=3624 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3624 msgID=3625 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3624 msgID=3625 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3625 msgID=3626 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3625 msgID=3626 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3626 msgID=3627 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3626 msgID=3627 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3627 msgID=3628 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3627 msgID=3628 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3628 msgID=3629 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3628 msgID=3629 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3629 msgID=3630 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3629 msgID=3630 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3630 msgID=3631 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3630 msgID=3631 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3631 msgID=3632 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3631 msgID=3632 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3632 msgID=3633 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3632 msgID=3633 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3633 msgID=3634 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3633 msgID=3634 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3634 msgID=3635 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3634 msgID=3635 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3635 msgID=3636 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3635 msgID=3636 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3636 msgID=3637 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3636 msgID=3637 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3637 msgID=3638 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3637 msgID=3638 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3638 msgID=3639 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3638 msgID=3639 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3639 msgID=3640 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3639 msgID=3640 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3640 msgID=3641 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3640 msgID=3641 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3641 msgID=3642 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3641 msgID=3642 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3642 msgID=3643 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3642 msgID=3643 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3643 msgID=3644 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3643 msgID=3644 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3644 msgID=3645 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3644 msgID=3645 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3645 msgID=3646 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3645 msgID=3646 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3646 msgID=3647 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3646 msgID=3647 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3647 msgID=3648 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3647 msgID=3648 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3648 msgID=3649 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3648 msgID=3649 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3649 msgID=3650 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3649 msgID=3650 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3650 msgID=3651 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3650 msgID=3651 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3651 msgID=3652 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3651 msgID=3652 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3652 msgID=3653 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3652 msgID=3653 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3653 msgID=3654 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3653 msgID=3654 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3654 msgID=3655 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3654 msgID=3655 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3655 msgID=3656 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3655 msgID=3656 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3656 msgID=3657 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3656 msgID=3657 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3657 msgID=3658 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3657 msgID=3658 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3658 msgID=3659 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3658 msgID=3659 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3659 msgID=3660 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3659 msgID=3660 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3660 msgID=3661 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3660 msgID=3661 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3661 msgID=3662 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3661 msgID=3662 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3662 msgID=3663 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3662 msgID=3663 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3663 msgID=3664 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3663 msgID=3664 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3664 msgID=3665 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3664 msgID=3665 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3665 msgID=3666 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3665 msgID=3666 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3666 msgID=3667 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3666 msgID=3667 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3667 msgID=3668 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3667 msgID=3668 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3668 msgID=3669 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3668 msgID=3669 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3669 msgID=3670 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3669 msgID=3670 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3670 msgID=3671 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3670 msgID=3671 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3671 msgID=3672 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3671 msgID=3672 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3672 msgID=3673 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3672 msgID=3673 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3673 msgID=3674 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3673 msgID=3674 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3674 msgID=3675 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3674 msgID=3675 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3675 msgID=3676 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3675 msgID=3676 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3676 msgID=3677 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3676 msgID=3677 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3677 msgID=3678 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3677 msgID=3678 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3678 msgID=3679 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3678 msgID=3679 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3679 msgID=3680 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3679 msgID=3680 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3680 msgID=3681 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3680 msgID=3681 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3681 msgID=3682 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3681 msgID=3682 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3682 msgID=3683 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3682 msgID=3683 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3683 msgID=3684 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3683 msgID=3684 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3684 msgID=3685 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3684 msgID=3685 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3685 msgID=3686 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3685 msgID=3686 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3686 msgID=3687 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3686 msgID=3687 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3687 msgID=3688 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3687 msgID=3688 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3688 msgID=3689 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3688 msgID=3689 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3689 msgID=3690 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3689 msgID=3690 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3690 msgID=3691 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3690 msgID=3691 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3691 msgID=3692 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3691 msgID=3692 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3692 msgID=3693 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3692 msgID=3693 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3693 msgID=3694 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3693 msgID=3694 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3694 msgID=3695 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3694 msgID=3695 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3695 msgID=3696 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3695 msgID=3696 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3696 msgID=3697 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3696 msgID=3697 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3697 msgID=3698 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3697 msgID=3698 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3698 msgID=3699 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3698 msgID=3699 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3699 msgID=3700 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3699 msgID=3700 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3700 msgID=3701 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3700 msgID=3701 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3701 msgID=3702 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3701 msgID=3702 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3702 msgID=3703 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3702 msgID=3703 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3703 msgID=3704 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3703 msgID=3704 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3704 msgID=3705 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3704 msgID=3705 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3705 msgID=3706 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3705 msgID=3706 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3706 msgID=3707 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3706 msgID=3707 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3707 msgID=3708 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3707 msgID=3708 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3708 msgID=3709 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3708 msgID=3709 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3709 msgID=3710 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3709 msgID=3710 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3710 msgID=3711 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3710 msgID=3711 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3711 msgID=3712 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3711 msgID=3712 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3712 msgID=3713 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3712 msgID=3713 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3713 msgID=3714 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3713 msgID=3714 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3714 msgID=3715 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3714 msgID=3715 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3715 msgID=3716 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3715 msgID=3716 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3716 msgID=3717 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3716 msgID=3717 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3717 msgID=3718 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3717 msgID=3718 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3718 msgID=3719 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3718 msgID=3719 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3719 msgID=3720 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3719 msgID=3720 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3720 msgID=3721 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3720 msgID=3721 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3721 msgID=3722 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3721 msgID=3722 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3722 msgID=3723 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3722 msgID=3723 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3723 msgID=3724 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3723 msgID=3724 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3724 msgID=3725 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3724 msgID=3725 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3725 msgID=3726 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3725 msgID=3726 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3726 msgID=3727 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3726 msgID=3727 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3727 msgID=3728 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3727 msgID=3728 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3728 msgID=3729 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3728 msgID=3729 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3729 msgID=3730 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3729 msgID=3730 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3730 msgID=3731 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3730 msgID=3731 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3731 msgID=3732 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3731 msgID=3732 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3732 msgID=3733 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3732 msgID=3733 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3733 msgID=3734 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3733 msgID=3734 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3734 msgID=3735 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3734 msgID=3735 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3735 msgID=3736 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3735 msgID=3736 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3736 msgID=3737 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3736 msgID=3737 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3737 msgID=3738 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3737 msgID=3738 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3738 msgID=3739 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3738 msgID=3739 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3739 msgID=3740 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3739 msgID=3740 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3740 msgID=3741 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3740 msgID=3741 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3741 msgID=3742 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3741 msgID=3742 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3742 msgID=3743 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3742 msgID=3743 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3743 msgID=3744 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3743 msgID=3744 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3744 msgID=3745 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3744 msgID=3745 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3745 msgID=3746 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3745 msgID=3746 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3746 msgID=3747 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3746 msgID=3747 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3747 msgID=3748 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3747 msgID=3748 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3748 msgID=3749 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3748 msgID=3749 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3749 msgID=3750 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3749 msgID=3750 result=0 nentries=0 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3750 msgID=3751 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3750 msgID=3751 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3751 msgID=3752 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3751 msgID=3752 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3752 msgID=3753 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3752 msgID=3753 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3753 msgID=3754 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3753 msgID=3754 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3754 msgID=3755 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3754 msgID=3755 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3755 msgID=3756 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3755 msgID=3756 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3756 msgID=3757 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3756 msgID=3757 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3757 msgID=3758 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3757 msgID=3758 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3758 msgID=3759 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3758 msgID=3759 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3759 msgID=3760 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3759 msgID=3760 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3760 msgID=3761 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3760 msgID=3761 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3761 msgID=3762 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3761 msgID=3762 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3762 msgID=3763 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3762 msgID=3763 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3763 msgID=3764 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3763 msgID=3764 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3764 msgID=3765 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3764 msgID=3765 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3765 msgID=3766 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3765 msgID=3766 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3766 msgID=3767 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3766 msgID=3767 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3767 msgID=3768 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3767 msgID=3768 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3768 msgID=3769 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3768 msgID=3769 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3769 msgID=3770 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3769 msgID=3770 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3770 msgID=3771 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3770 msgID=3771 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3771 msgID=3772 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3771 msgID=3772 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3772 msgID=3773 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3772 msgID=3773 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3773 msgID=3774 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3773 msgID=3774 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3774 msgID=3775 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3774 msgID=3775 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3775 msgID=3776 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3775 msgID=3776 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3776 msgID=3777 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3776 msgID=3777 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3777 msgID=3778 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3777 msgID=3778 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3778 msgID=3779 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3778 msgID=3779 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3779 msgID=3780 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3779 msgID=3780 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3780 msgID=3781 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3780 msgID=3781 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3781 msgID=3782 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3781 msgID=3782 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3782 msgID=3783 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3782 msgID=3783 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3783 msgID=3784 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3783 msgID=3784 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3784 msgID=3785 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3784 msgID=3785 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3785 msgID=3786 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3785 msgID=3786 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3786 msgID=3787 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3786 msgID=3787 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3787 msgID=3788 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3787 msgID=3788 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3788 msgID=3789 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3788 msgID=3789 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3789 msgID=3790 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3789 msgID=3790 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3790 msgID=3791 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3790 msgID=3791 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3791 msgID=3792 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3791 msgID=3792 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3792 msgID=3793 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3792 msgID=3793 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3793 msgID=3794 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3793 msgID=3794 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3794 msgID=3795 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3794 msgID=3795 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3795 msgID=3796 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3795 msgID=3796 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3796 msgID=3797 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3796 msgID=3797 result=0 nentries=3 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3797 msgID=3798 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3797 msgID=3798 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3798 msgID=3799 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3798 msgID=3799 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3799 msgID=3800 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3799 msgID=3800 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3800 msgID=3801 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3800 msgID=3801 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3801 msgID=3802 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3801 msgID=3802 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3802 msgID=3803 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3802 msgID=3803 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3803 msgID=3804 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3803 msgID=3804 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3804 msgID=3805 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3804 msgID=3805 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3805 msgID=3806 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3805 msgID=3806 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3806 msgID=3807 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3806 msgID=3807 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3807 msgID=3808 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3807 msgID=3808 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3808 msgID=3809 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3808 msgID=3809 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3809 msgID=3810 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3809 msgID=3810 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3810 msgID=3811 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3810 msgID=3811 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3811 msgID=3812 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3811 msgID=3812 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3812 msgID=3813 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3812 msgID=3813 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3813 msgID=3814 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3813 msgID=3814 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3814 msgID=3815 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3814 msgID=3815 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3815 msgID=3816 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3815 msgID=3816 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3816 msgID=3817 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3816 msgID=3817 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3817 msgID=3818 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3817 msgID=3818 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3818 msgID=3819 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3818 msgID=3819 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3819 msgID=3820 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3819 msgID=3820 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3820 msgID=3821 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3820 msgID=3821 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3821 msgID=3822 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3821 msgID=3822 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3822 msgID=3823 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3822 msgID=3823 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3823 msgID=3824 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3823 msgID=3824 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3824 msgID=3825 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3824 msgID=3825 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3825 msgID=3826 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3825 msgID=3826 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3826 msgID=3827 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3826 msgID=3827 result=0 nentries=1 etime=1 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3827 msgID=3828 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3827 msgID=3828 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3828 msgID=3829 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3828 msgID=3829 result=0 nentries=42 etime=22 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3829 msgID=3830 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3829 msgID=3830 result=0 nentries=3 etime=2 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=0 op=3830 msgID=3831 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=0 op=3830 msgID=3831 result=0 nentries=1 etime=0 +[06/Mar/2015:19:16:57 +0100] SEARCH REQ conn=2 op=18 msgID=19 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:16:57 +0100] SEARCH RES conn=2 op=18 msgID=19 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3831 msgID=3832 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3831 msgID=3832 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3832 msgID=3833 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3832 msgID=3833 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3833 msgID=3834 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3833 msgID=3834 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3834 msgID=3835 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3834 msgID=3835 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3835 msgID=3836 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3835 msgID=3836 result=0 nentries=5 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3836 msgID=3837 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3836 msgID=3837 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3837 msgID=3838 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3837 msgID=3838 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3838 msgID=3839 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3838 msgID=3839 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3839 msgID=3840 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3839 msgID=3840 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3840 msgID=3841 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3840 msgID=3841 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3841 msgID=3842 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3841 msgID=3842 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3842 msgID=3843 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3842 msgID=3843 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3843 msgID=3844 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3843 msgID=3844 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3844 msgID=3845 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3844 msgID=3845 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3845 msgID=3846 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3845 msgID=3846 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3846 msgID=3847 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3846 msgID=3847 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3847 msgID=3848 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3847 msgID=3848 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3848 msgID=3849 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3848 msgID=3849 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3849 msgID=3850 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3849 msgID=3850 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3850 msgID=3851 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3850 msgID=3851 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3851 msgID=3852 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3851 msgID=3852 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3852 msgID=3853 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3852 msgID=3853 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3853 msgID=3854 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3853 msgID=3854 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3854 msgID=3855 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3854 msgID=3855 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3855 msgID=3856 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3855 msgID=3856 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3856 msgID=3857 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3856 msgID=3857 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3857 msgID=3858 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3857 msgID=3858 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3858 msgID=3859 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3858 msgID=3859 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3859 msgID=3860 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3859 msgID=3860 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3860 msgID=3861 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3860 msgID=3861 result=0 nentries=9 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3861 msgID=3862 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3861 msgID=3862 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3862 msgID=3863 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3862 msgID=3863 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3863 msgID=3864 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3863 msgID=3864 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3864 msgID=3865 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3864 msgID=3865 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3865 msgID=3866 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3865 msgID=3866 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3866 msgID=3867 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3866 msgID=3867 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3867 msgID=3868 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3867 msgID=3868 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3868 msgID=3869 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3868 msgID=3869 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3869 msgID=3870 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3869 msgID=3870 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3870 msgID=3871 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3870 msgID=3871 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3871 msgID=3872 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3871 msgID=3872 result=0 nentries=13 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3872 msgID=3873 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3872 msgID=3873 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3873 msgID=3874 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3873 msgID=3874 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3874 msgID=3875 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3874 msgID=3875 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3875 msgID=3876 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3875 msgID=3876 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3876 msgID=3877 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3876 msgID=3877 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3877 msgID=3878 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3877 msgID=3878 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3878 msgID=3879 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3878 msgID=3879 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3879 msgID=3880 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3879 msgID=3880 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3880 msgID=3881 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3880 msgID=3881 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3881 msgID=3882 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3881 msgID=3882 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3882 msgID=3883 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3882 msgID=3883 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3883 msgID=3884 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3883 msgID=3884 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3884 msgID=3885 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3884 msgID=3885 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3885 msgID=3886 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3885 msgID=3886 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3886 msgID=3887 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3886 msgID=3887 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3887 msgID=3888 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3887 msgID=3888 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3888 msgID=3889 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3888 msgID=3889 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3889 msgID=3890 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3889 msgID=3890 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3890 msgID=3891 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3890 msgID=3891 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3891 msgID=3892 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3891 msgID=3892 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3892 msgID=3893 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3892 msgID=3893 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3893 msgID=3894 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3893 msgID=3894 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3894 msgID=3895 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3894 msgID=3895 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3895 msgID=3896 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3895 msgID=3896 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3896 msgID=3897 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3896 msgID=3897 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3897 msgID=3898 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3897 msgID=3898 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3898 msgID=3899 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3898 msgID=3899 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3899 msgID=3900 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3899 msgID=3900 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3900 msgID=3901 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3900 msgID=3901 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3901 msgID=3902 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3901 msgID=3902 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3902 msgID=3903 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3902 msgID=3903 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3903 msgID=3904 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3903 msgID=3904 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3904 msgID=3905 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3904 msgID=3905 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3905 msgID=3906 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3905 msgID=3906 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3906 msgID=3907 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3906 msgID=3907 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3907 msgID=3908 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3907 msgID=3908 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3908 msgID=3909 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3908 msgID=3909 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3909 msgID=3910 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3909 msgID=3910 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3910 msgID=3911 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3910 msgID=3911 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3911 msgID=3912 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3911 msgID=3912 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3912 msgID=3913 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3912 msgID=3913 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3913 msgID=3914 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3913 msgID=3914 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3914 msgID=3915 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3914 msgID=3915 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3915 msgID=3916 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3915 msgID=3916 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3916 msgID=3917 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3916 msgID=3917 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3917 msgID=3918 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3917 msgID=3918 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3918 msgID=3919 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3918 msgID=3919 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3919 msgID=3920 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3919 msgID=3920 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3920 msgID=3921 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3920 msgID=3921 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3921 msgID=3922 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3921 msgID=3922 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3922 msgID=3923 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3922 msgID=3923 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3923 msgID=3924 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3923 msgID=3924 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3924 msgID=3925 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3924 msgID=3925 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3925 msgID=3926 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3925 msgID=3926 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3926 msgID=3927 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3926 msgID=3927 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3927 msgID=3928 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3927 msgID=3928 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3928 msgID=3929 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3928 msgID=3929 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3929 msgID=3930 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3929 msgID=3930 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3930 msgID=3931 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3930 msgID=3931 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3931 msgID=3932 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3931 msgID=3932 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3932 msgID=3933 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3932 msgID=3933 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3933 msgID=3934 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3933 msgID=3934 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3934 msgID=3935 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3934 msgID=3935 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3935 msgID=3936 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3935 msgID=3936 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3936 msgID=3937 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3936 msgID=3937 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3937 msgID=3938 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3937 msgID=3938 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3938 msgID=3939 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3938 msgID=3939 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3939 msgID=3940 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3939 msgID=3940 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3940 msgID=3941 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3940 msgID=3941 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3941 msgID=3942 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3941 msgID=3942 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3942 msgID=3943 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3942 msgID=3943 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3943 msgID=3944 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3943 msgID=3944 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3944 msgID=3945 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3944 msgID=3945 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3945 msgID=3946 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3945 msgID=3946 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3946 msgID=3947 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3946 msgID=3947 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3947 msgID=3948 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3947 msgID=3948 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3948 msgID=3949 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3948 msgID=3949 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3949 msgID=3950 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3949 msgID=3950 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3950 msgID=3951 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3950 msgID=3951 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3951 msgID=3952 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3951 msgID=3952 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3952 msgID=3953 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3952 msgID=3953 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3953 msgID=3954 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3953 msgID=3954 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3954 msgID=3955 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3954 msgID=3955 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3955 msgID=3956 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3955 msgID=3956 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3956 msgID=3957 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3956 msgID=3957 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3957 msgID=3958 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3957 msgID=3958 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3958 msgID=3959 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3958 msgID=3959 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3959 msgID=3960 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3959 msgID=3960 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3960 msgID=3961 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3960 msgID=3961 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3961 msgID=3962 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3961 msgID=3962 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3962 msgID=3963 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3962 msgID=3963 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3963 msgID=3964 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3963 msgID=3964 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3964 msgID=3965 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3964 msgID=3965 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3965 msgID=3966 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3965 msgID=3966 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3966 msgID=3967 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3966 msgID=3967 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3967 msgID=3968 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3967 msgID=3968 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3968 msgID=3969 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3968 msgID=3969 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3969 msgID=3970 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3969 msgID=3970 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3970 msgID=3971 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3970 msgID=3971 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3971 msgID=3972 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3971 msgID=3972 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3972 msgID=3973 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3972 msgID=3973 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3973 msgID=3974 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3973 msgID=3974 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3974 msgID=3975 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3974 msgID=3975 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3975 msgID=3976 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3975 msgID=3976 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3976 msgID=3977 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3976 msgID=3977 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3977 msgID=3978 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3977 msgID=3978 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3978 msgID=3979 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3978 msgID=3979 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3979 msgID=3980 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3979 msgID=3980 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3980 msgID=3981 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3980 msgID=3981 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3981 msgID=3982 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3981 msgID=3982 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3982 msgID=3983 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3982 msgID=3983 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3983 msgID=3984 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3983 msgID=3984 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3984 msgID=3985 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3984 msgID=3985 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3985 msgID=3986 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3985 msgID=3986 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3986 msgID=3987 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3986 msgID=3987 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3987 msgID=3988 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3987 msgID=3988 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3988 msgID=3989 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3988 msgID=3989 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3989 msgID=3990 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3989 msgID=3990 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3990 msgID=3991 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3990 msgID=3991 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3991 msgID=3992 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3991 msgID=3992 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3992 msgID=3993 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3992 msgID=3993 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3993 msgID=3994 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3993 msgID=3994 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3994 msgID=3995 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3994 msgID=3995 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3995 msgID=3996 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3995 msgID=3996 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3996 msgID=3997 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3996 msgID=3997 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3997 msgID=3998 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3997 msgID=3998 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3998 msgID=3999 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3998 msgID=3999 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=3999 msgID=4000 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=3999 msgID=4000 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4000 msgID=4001 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4000 msgID=4001 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4001 msgID=4002 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4001 msgID=4002 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4002 msgID=4003 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4002 msgID=4003 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4003 msgID=4004 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4003 msgID=4004 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4004 msgID=4005 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4004 msgID=4005 result=0 nentries=0 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4005 msgID=4006 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4005 msgID=4006 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4006 msgID=4007 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4006 msgID=4007 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4007 msgID=4008 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4007 msgID=4008 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4008 msgID=4009 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4008 msgID=4009 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4009 msgID=4010 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4009 msgID=4010 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4010 msgID=4011 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4010 msgID=4011 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4011 msgID=4012 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4011 msgID=4012 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4012 msgID=4013 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4012 msgID=4013 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4013 msgID=4014 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4013 msgID=4014 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4014 msgID=4015 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4014 msgID=4015 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4015 msgID=4016 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4015 msgID=4016 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4016 msgID=4017 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4016 msgID=4017 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4017 msgID=4018 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4017 msgID=4018 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4018 msgID=4019 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4018 msgID=4019 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4019 msgID=4020 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4019 msgID=4020 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4020 msgID=4021 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4020 msgID=4021 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4021 msgID=4022 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4021 msgID=4022 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4022 msgID=4023 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4022 msgID=4023 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4023 msgID=4024 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4023 msgID=4024 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4024 msgID=4025 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4024 msgID=4025 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4025 msgID=4026 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4025 msgID=4026 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4026 msgID=4027 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4026 msgID=4027 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4027 msgID=4028 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4027 msgID=4028 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4028 msgID=4029 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4028 msgID=4029 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4029 msgID=4030 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4029 msgID=4030 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4030 msgID=4031 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4030 msgID=4031 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4031 msgID=4032 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4031 msgID=4032 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4032 msgID=4033 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4032 msgID=4033 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4033 msgID=4034 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4033 msgID=4034 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4034 msgID=4035 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4034 msgID=4035 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4035 msgID=4036 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4035 msgID=4036 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4036 msgID=4037 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4036 msgID=4037 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4037 msgID=4038 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4037 msgID=4038 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4038 msgID=4039 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4038 msgID=4039 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4039 msgID=4040 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4039 msgID=4040 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4040 msgID=4041 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4040 msgID=4041 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4041 msgID=4042 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4041 msgID=4042 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4042 msgID=4043 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4042 msgID=4043 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4043 msgID=4044 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4043 msgID=4044 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4044 msgID=4045 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4044 msgID=4045 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4045 msgID=4046 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4045 msgID=4046 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4046 msgID=4047 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4046 msgID=4047 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4047 msgID=4048 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4047 msgID=4048 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4048 msgID=4049 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4048 msgID=4049 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4049 msgID=4050 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4049 msgID=4050 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4050 msgID=4051 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4050 msgID=4051 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4051 msgID=4052 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4051 msgID=4052 result=0 nentries=3 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4052 msgID=4053 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4052 msgID=4053 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4053 msgID=4054 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4053 msgID=4054 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4054 msgID=4055 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4054 msgID=4055 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4055 msgID=4056 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4055 msgID=4056 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4056 msgID=4057 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4056 msgID=4057 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4057 msgID=4058 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4057 msgID=4058 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4058 msgID=4059 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4058 msgID=4059 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4059 msgID=4060 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4059 msgID=4060 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4060 msgID=4061 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4060 msgID=4061 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4061 msgID=4062 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4061 msgID=4062 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4062 msgID=4063 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4062 msgID=4063 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4063 msgID=4064 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4063 msgID=4064 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4064 msgID=4065 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4064 msgID=4065 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4065 msgID=4066 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4065 msgID=4066 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4066 msgID=4067 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4066 msgID=4067 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4067 msgID=4068 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4067 msgID=4068 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4068 msgID=4069 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4068 msgID=4069 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4069 msgID=4070 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4069 msgID=4070 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4070 msgID=4071 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4070 msgID=4071 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4071 msgID=4072 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4071 msgID=4072 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4072 msgID=4073 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4072 msgID=4073 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4073 msgID=4074 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4073 msgID=4074 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4074 msgID=4075 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4074 msgID=4075 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4075 msgID=4076 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4075 msgID=4076 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4076 msgID=4077 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4076 msgID=4077 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4077 msgID=4078 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4077 msgID=4078 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4078 msgID=4079 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4078 msgID=4079 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4079 msgID=4080 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4079 msgID=4080 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4080 msgID=4081 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4080 msgID=4081 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4081 msgID=4082 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4081 msgID=4082 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4082 msgID=4083 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4082 msgID=4083 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4083 msgID=4084 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4083 msgID=4084 result=0 nentries=42 etime=22 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4084 msgID=4085 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4084 msgID=4085 result=0 nentries=3 etime=1 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=0 op=4085 msgID=4086 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=0 op=4085 msgID=4086 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:17 +0100] SEARCH REQ conn=2 op=19 msgID=20 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:17 +0100] SEARCH RES conn=2 op=19 msgID=20 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:28 +0100] CONNECT conn=4 from=127.0.0.1:52953 to=127.0.0.1:10444 protocol=LDAPS +[06/Mar/2015:19:17:28 +0100] BIND REQ conn=4 op=0 msgID=1 version=3 type=SIMPLE dn="cn=Directory Manager" +[06/Mar/2015:19:17:28 +0100] BIND RES conn=4 op=0 msgID=1 result=0 authDN="cn=Directory Manager,cn=Root DNs,cn=config" etime=1 +[06/Mar/2015:19:17:28 +0100] BIND REQ conn=4 op=1 msgID=2 version=3 type=SIMPLE dn="cn=Directory Manager" +[06/Mar/2015:19:17:28 +0100] BIND RES conn=4 op=1 msgID=2 result=0 authDN="cn=Directory Manager,cn=Root DNs,cn=config" etime=1 +[06/Mar/2015:19:17:28 +0100] SEARCH REQ conn=4 op=2 msgID=3 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:28 +0100] SEARCH RES conn=4 op=2 msgID=3 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:28 +0100] SEARCH REQ conn=4 op=3 msgID=4 base="cn=Access Control Handler,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:28 +0100] SEARCH RES conn=4 op=3 msgID=4 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:28 +0100] SEARCH REQ conn=4 op=4 msgID=5 base="cn=Access Control Handler,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:28 +0100] SEARCH RES conn=4 op=4 msgID=5 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:28 +0100] SEARCH REQ conn=4 op=5 msgID=6 base="cn=Access Control Handler,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-global-aci" +[06/Mar/2015:19:17:28 +0100] SEARCH RES conn=4 op=5 msgID=6 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:28 +0100] MODIFY REQ conn=4 op=6 msgID=7 dn="cn=Access Control Handler,cn=config" +[06/Mar/2015:19:17:28 +0100] MODIFY RES conn=4 op=6 msgID=7 result=0 etime=35 +[06/Mar/2015:19:17:28 +0100] UNBIND REQ conn=4 op=7 msgID=8 +[06/Mar/2015:19:17:28 +0100] DISCONNECT conn=4 reason="Client Unbind" +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4086 msgID=4087 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4086 msgID=4087 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4087 msgID=4088 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4087 msgID=4088 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4088 msgID=4089 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4088 msgID=4089 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4089 msgID=4090 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4089 msgID=4090 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4090 msgID=4091 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4090 msgID=4091 result=0 nentries=5 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4091 msgID=4092 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4091 msgID=4092 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4092 msgID=4093 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4092 msgID=4093 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4093 msgID=4094 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4093 msgID=4094 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4094 msgID=4095 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4094 msgID=4095 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4095 msgID=4096 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4095 msgID=4096 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4096 msgID=4097 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4096 msgID=4097 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4097 msgID=4098 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4097 msgID=4098 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4098 msgID=4099 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4098 msgID=4099 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4099 msgID=4100 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4099 msgID=4100 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4100 msgID=4101 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4100 msgID=4101 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4101 msgID=4102 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4101 msgID=4102 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4102 msgID=4103 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4102 msgID=4103 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4103 msgID=4104 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4103 msgID=4104 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4104 msgID=4105 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4104 msgID=4105 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4105 msgID=4106 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4105 msgID=4106 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4106 msgID=4107 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4106 msgID=4107 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4107 msgID=4108 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4107 msgID=4108 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4108 msgID=4109 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4108 msgID=4109 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4109 msgID=4110 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4109 msgID=4110 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4110 msgID=4111 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4110 msgID=4111 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4111 msgID=4112 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4111 msgID=4112 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4112 msgID=4113 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4112 msgID=4113 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4113 msgID=4114 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4113 msgID=4114 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4114 msgID=4115 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4114 msgID=4115 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4115 msgID=4116 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4115 msgID=4116 result=0 nentries=9 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4116 msgID=4117 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4116 msgID=4117 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4117 msgID=4118 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4117 msgID=4118 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4118 msgID=4119 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4118 msgID=4119 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4119 msgID=4120 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4119 msgID=4120 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4120 msgID=4121 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4120 msgID=4121 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4121 msgID=4122 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4121 msgID=4122 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4122 msgID=4123 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4122 msgID=4123 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4123 msgID=4124 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4123 msgID=4124 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4124 msgID=4125 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4124 msgID=4125 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4125 msgID=4126 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4125 msgID=4126 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4126 msgID=4127 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4126 msgID=4127 result=0 nentries=13 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4127 msgID=4128 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4127 msgID=4128 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4128 msgID=4129 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4128 msgID=4129 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4129 msgID=4130 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4129 msgID=4130 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4130 msgID=4131 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4130 msgID=4131 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4131 msgID=4132 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4131 msgID=4132 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4132 msgID=4133 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4132 msgID=4133 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4133 msgID=4134 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4133 msgID=4134 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4134 msgID=4135 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4134 msgID=4135 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4135 msgID=4136 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4135 msgID=4136 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4136 msgID=4137 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4136 msgID=4137 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4137 msgID=4138 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4137 msgID=4138 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4138 msgID=4139 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4138 msgID=4139 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4139 msgID=4140 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4139 msgID=4140 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4140 msgID=4141 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4140 msgID=4141 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4141 msgID=4142 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4141 msgID=4142 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4142 msgID=4143 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4142 msgID=4143 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4143 msgID=4144 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4143 msgID=4144 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4144 msgID=4145 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4144 msgID=4145 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4145 msgID=4146 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4145 msgID=4146 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4146 msgID=4147 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4146 msgID=4147 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4147 msgID=4148 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4147 msgID=4148 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4148 msgID=4149 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4148 msgID=4149 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4149 msgID=4150 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4149 msgID=4150 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4150 msgID=4151 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4150 msgID=4151 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4151 msgID=4152 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4151 msgID=4152 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4152 msgID=4153 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4152 msgID=4153 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4153 msgID=4154 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4153 msgID=4154 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4154 msgID=4155 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4154 msgID=4155 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4155 msgID=4156 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4155 msgID=4156 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4156 msgID=4157 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4156 msgID=4157 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4157 msgID=4158 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4157 msgID=4158 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4158 msgID=4159 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4158 msgID=4159 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4159 msgID=4160 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4159 msgID=4160 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4160 msgID=4161 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4160 msgID=4161 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4161 msgID=4162 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4161 msgID=4162 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4162 msgID=4163 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4162 msgID=4163 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4163 msgID=4164 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4163 msgID=4164 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4164 msgID=4165 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4164 msgID=4165 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4165 msgID=4166 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4165 msgID=4166 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4166 msgID=4167 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4166 msgID=4167 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4167 msgID=4168 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4167 msgID=4168 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4168 msgID=4169 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4168 msgID=4169 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4169 msgID=4170 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4169 msgID=4170 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4170 msgID=4171 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4170 msgID=4171 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4171 msgID=4172 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4171 msgID=4172 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4172 msgID=4173 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4172 msgID=4173 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4173 msgID=4174 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4173 msgID=4174 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4174 msgID=4175 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4174 msgID=4175 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4175 msgID=4176 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4175 msgID=4176 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4176 msgID=4177 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4176 msgID=4177 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4177 msgID=4178 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4177 msgID=4178 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4178 msgID=4179 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4178 msgID=4179 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4179 msgID=4180 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4179 msgID=4180 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4180 msgID=4181 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4180 msgID=4181 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4181 msgID=4182 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4181 msgID=4182 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4182 msgID=4183 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4182 msgID=4183 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4183 msgID=4184 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4183 msgID=4184 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4184 msgID=4185 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4184 msgID=4185 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4185 msgID=4186 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4185 msgID=4186 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4186 msgID=4187 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4186 msgID=4187 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4187 msgID=4188 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4187 msgID=4188 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4188 msgID=4189 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4188 msgID=4189 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4189 msgID=4190 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4189 msgID=4190 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4190 msgID=4191 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4190 msgID=4191 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4191 msgID=4192 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4191 msgID=4192 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4192 msgID=4193 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4192 msgID=4193 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4193 msgID=4194 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4193 msgID=4194 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4194 msgID=4195 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4194 msgID=4195 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4195 msgID=4196 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4195 msgID=4196 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4196 msgID=4197 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4196 msgID=4197 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4197 msgID=4198 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4197 msgID=4198 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4198 msgID=4199 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4198 msgID=4199 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4199 msgID=4200 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4199 msgID=4200 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4200 msgID=4201 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4200 msgID=4201 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4201 msgID=4202 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4201 msgID=4202 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4202 msgID=4203 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4202 msgID=4203 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4203 msgID=4204 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4203 msgID=4204 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4204 msgID=4205 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4204 msgID=4205 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4205 msgID=4206 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4205 msgID=4206 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4206 msgID=4207 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4206 msgID=4207 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4207 msgID=4208 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4207 msgID=4208 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4208 msgID=4209 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4208 msgID=4209 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4209 msgID=4210 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4209 msgID=4210 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4210 msgID=4211 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4210 msgID=4211 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4211 msgID=4212 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4211 msgID=4212 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4212 msgID=4213 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4212 msgID=4213 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4213 msgID=4214 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4213 msgID=4214 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4214 msgID=4215 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4214 msgID=4215 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4215 msgID=4216 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4215 msgID=4216 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4216 msgID=4217 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4216 msgID=4217 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4217 msgID=4218 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4217 msgID=4218 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4218 msgID=4219 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4218 msgID=4219 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4219 msgID=4220 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4219 msgID=4220 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4220 msgID=4221 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4220 msgID=4221 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4221 msgID=4222 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4221 msgID=4222 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4222 msgID=4223 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4222 msgID=4223 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4223 msgID=4224 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4223 msgID=4224 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4224 msgID=4225 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4224 msgID=4225 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4225 msgID=4226 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4225 msgID=4226 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4226 msgID=4227 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4226 msgID=4227 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4227 msgID=4228 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4227 msgID=4228 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4228 msgID=4229 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4228 msgID=4229 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4229 msgID=4230 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4229 msgID=4230 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4230 msgID=4231 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4230 msgID=4231 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4231 msgID=4232 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4231 msgID=4232 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4232 msgID=4233 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4232 msgID=4233 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4233 msgID=4234 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4233 msgID=4234 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4234 msgID=4235 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4234 msgID=4235 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4235 msgID=4236 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4235 msgID=4236 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4236 msgID=4237 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4236 msgID=4237 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4237 msgID=4238 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4237 msgID=4238 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4238 msgID=4239 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4238 msgID=4239 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4239 msgID=4240 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4239 msgID=4240 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4240 msgID=4241 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4240 msgID=4241 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4241 msgID=4242 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4241 msgID=4242 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4242 msgID=4243 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4242 msgID=4243 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4243 msgID=4244 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4243 msgID=4244 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4244 msgID=4245 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4244 msgID=4245 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4245 msgID=4246 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4245 msgID=4246 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4246 msgID=4247 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4246 msgID=4247 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4247 msgID=4248 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4247 msgID=4248 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4248 msgID=4249 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4248 msgID=4249 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4249 msgID=4250 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4249 msgID=4250 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4250 msgID=4251 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4250 msgID=4251 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4251 msgID=4252 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4251 msgID=4252 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4252 msgID=4253 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4252 msgID=4253 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4253 msgID=4254 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4253 msgID=4254 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4254 msgID=4255 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4254 msgID=4255 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4255 msgID=4256 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4255 msgID=4256 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4256 msgID=4257 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4256 msgID=4257 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4257 msgID=4258 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4257 msgID=4258 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4258 msgID=4259 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4258 msgID=4259 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4259 msgID=4260 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4259 msgID=4260 result=0 nentries=0 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4260 msgID=4261 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4260 msgID=4261 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4261 msgID=4262 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4261 msgID=4262 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4262 msgID=4263 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4262 msgID=4263 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4263 msgID=4264 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4263 msgID=4264 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4264 msgID=4265 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4264 msgID=4265 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4265 msgID=4266 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4265 msgID=4266 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4266 msgID=4267 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4266 msgID=4267 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4267 msgID=4268 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4267 msgID=4268 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4268 msgID=4269 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4268 msgID=4269 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4269 msgID=4270 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4269 msgID=4270 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4270 msgID=4271 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4270 msgID=4271 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4271 msgID=4272 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4271 msgID=4272 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4272 msgID=4273 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4272 msgID=4273 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4273 msgID=4274 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4273 msgID=4274 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4274 msgID=4275 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4274 msgID=4275 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4275 msgID=4276 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4275 msgID=4276 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4276 msgID=4277 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4276 msgID=4277 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4277 msgID=4278 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4277 msgID=4278 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4278 msgID=4279 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4278 msgID=4279 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4279 msgID=4280 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4279 msgID=4280 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4280 msgID=4281 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4280 msgID=4281 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4281 msgID=4282 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4281 msgID=4282 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4282 msgID=4283 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4282 msgID=4283 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4283 msgID=4284 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4283 msgID=4284 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4284 msgID=4285 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4284 msgID=4285 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4285 msgID=4286 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4285 msgID=4286 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4286 msgID=4287 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4286 msgID=4287 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4287 msgID=4288 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4287 msgID=4288 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4288 msgID=4289 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4288 msgID=4289 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4289 msgID=4290 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4289 msgID=4290 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4290 msgID=4291 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4290 msgID=4291 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4291 msgID=4292 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4291 msgID=4292 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4292 msgID=4293 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4292 msgID=4293 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4293 msgID=4294 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4293 msgID=4294 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4294 msgID=4295 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4294 msgID=4295 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4295 msgID=4296 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4295 msgID=4296 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4296 msgID=4297 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4296 msgID=4297 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4297 msgID=4298 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4297 msgID=4298 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4298 msgID=4299 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4298 msgID=4299 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4299 msgID=4300 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4299 msgID=4300 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4300 msgID=4301 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4300 msgID=4301 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4301 msgID=4302 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4301 msgID=4302 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4302 msgID=4303 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4302 msgID=4303 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4303 msgID=4304 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4303 msgID=4304 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4304 msgID=4305 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4304 msgID=4305 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4305 msgID=4306 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4305 msgID=4306 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4306 msgID=4307 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4306 msgID=4307 result=0 nentries=3 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4307 msgID=4308 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4307 msgID=4308 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4308 msgID=4309 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4308 msgID=4309 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4309 msgID=4310 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4309 msgID=4310 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4310 msgID=4311 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4310 msgID=4311 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4311 msgID=4312 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4311 msgID=4312 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4312 msgID=4313 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4312 msgID=4313 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4313 msgID=4314 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4313 msgID=4314 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4314 msgID=4315 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4314 msgID=4315 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4315 msgID=4316 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4315 msgID=4316 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4316 msgID=4317 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4316 msgID=4317 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4317 msgID=4318 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4317 msgID=4318 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4318 msgID=4319 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4318 msgID=4319 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4319 msgID=4320 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4319 msgID=4320 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4320 msgID=4321 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4320 msgID=4321 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4321 msgID=4322 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4321 msgID=4322 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4322 msgID=4323 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4322 msgID=4323 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4323 msgID=4324 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4323 msgID=4324 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4324 msgID=4325 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4324 msgID=4325 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4325 msgID=4326 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4325 msgID=4326 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4326 msgID=4327 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4326 msgID=4327 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4327 msgID=4328 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4327 msgID=4328 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4328 msgID=4329 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4328 msgID=4329 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4329 msgID=4330 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4329 msgID=4330 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4330 msgID=4331 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4330 msgID=4331 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4331 msgID=4332 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4331 msgID=4332 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4332 msgID=4333 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4332 msgID=4333 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4333 msgID=4334 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4333 msgID=4334 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4334 msgID=4335 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4334 msgID=4335 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4335 msgID=4336 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4335 msgID=4336 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4336 msgID=4337 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4336 msgID=4337 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4337 msgID=4338 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4337 msgID=4338 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4338 msgID=4339 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4338 msgID=4339 result=0 nentries=42 etime=19 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4339 msgID=4340 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4339 msgID=4340 result=0 nentries=3 etime=0 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=0 op=4340 msgID=4341 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=0 op=4340 msgID=4341 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:38 +0100] SEARCH REQ conn=2 op=20 msgID=21 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:38 +0100] SEARCH RES conn=2 op=20 msgID=21 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4341 msgID=4342 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4341 msgID=4342 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4342 msgID=4343 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4342 msgID=4343 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4343 msgID=4344 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4343 msgID=4344 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4344 msgID=4345 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4344 msgID=4345 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4345 msgID=4346 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4345 msgID=4346 result=0 nentries=5 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4346 msgID=4347 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4346 msgID=4347 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4347 msgID=4348 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4347 msgID=4348 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4348 msgID=4349 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4348 msgID=4349 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4349 msgID=4350 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4349 msgID=4350 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4350 msgID=4351 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4350 msgID=4351 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4351 msgID=4352 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4351 msgID=4352 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4352 msgID=4353 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4352 msgID=4353 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4353 msgID=4354 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4353 msgID=4354 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4354 msgID=4355 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4354 msgID=4355 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4355 msgID=4356 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4355 msgID=4356 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4356 msgID=4357 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4356 msgID=4357 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4357 msgID=4358 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4357 msgID=4358 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4358 msgID=4359 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4358 msgID=4359 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4359 msgID=4360 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4359 msgID=4360 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4360 msgID=4361 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4360 msgID=4361 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4361 msgID=4362 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4361 msgID=4362 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4362 msgID=4363 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4362 msgID=4363 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4363 msgID=4364 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4363 msgID=4364 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4364 msgID=4365 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4364 msgID=4365 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4365 msgID=4366 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4365 msgID=4366 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4366 msgID=4367 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4366 msgID=4367 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4367 msgID=4368 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4367 msgID=4368 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4368 msgID=4369 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4368 msgID=4369 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4369 msgID=4370 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4369 msgID=4370 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4370 msgID=4371 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4370 msgID=4371 result=0 nentries=9 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4371 msgID=4372 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4371 msgID=4372 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4372 msgID=4373 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4372 msgID=4373 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4373 msgID=4374 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4373 msgID=4374 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4374 msgID=4375 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4374 msgID=4375 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4375 msgID=4376 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4375 msgID=4376 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4376 msgID=4377 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4376 msgID=4377 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4377 msgID=4378 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4377 msgID=4378 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4378 msgID=4379 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4378 msgID=4379 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4379 msgID=4380 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4379 msgID=4380 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4380 msgID=4381 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4380 msgID=4381 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4381 msgID=4382 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4381 msgID=4382 result=0 nentries=13 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4382 msgID=4383 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4382 msgID=4383 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4383 msgID=4384 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4383 msgID=4384 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4384 msgID=4385 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4384 msgID=4385 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4385 msgID=4386 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4385 msgID=4386 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4386 msgID=4387 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4386 msgID=4387 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4387 msgID=4388 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4387 msgID=4388 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4388 msgID=4389 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4388 msgID=4389 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4389 msgID=4390 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4389 msgID=4390 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4390 msgID=4391 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4390 msgID=4391 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4391 msgID=4392 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4391 msgID=4392 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4392 msgID=4393 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4392 msgID=4393 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4393 msgID=4394 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4393 msgID=4394 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4394 msgID=4395 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4394 msgID=4395 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4395 msgID=4396 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4395 msgID=4396 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4396 msgID=4397 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4396 msgID=4397 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4397 msgID=4398 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4397 msgID=4398 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4398 msgID=4399 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4398 msgID=4399 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4399 msgID=4400 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4399 msgID=4400 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4400 msgID=4401 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4400 msgID=4401 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4401 msgID=4402 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4401 msgID=4402 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4402 msgID=4403 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4402 msgID=4403 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4403 msgID=4404 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4403 msgID=4404 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4404 msgID=4405 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4404 msgID=4405 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4405 msgID=4406 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4405 msgID=4406 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4406 msgID=4407 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4406 msgID=4407 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4407 msgID=4408 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4407 msgID=4408 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4408 msgID=4409 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4408 msgID=4409 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4409 msgID=4410 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4409 msgID=4410 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4410 msgID=4411 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4410 msgID=4411 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4411 msgID=4412 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4411 msgID=4412 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4412 msgID=4413 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4412 msgID=4413 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4413 msgID=4414 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4413 msgID=4414 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4414 msgID=4415 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4414 msgID=4415 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4415 msgID=4416 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4415 msgID=4416 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4416 msgID=4417 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4416 msgID=4417 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4417 msgID=4418 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4417 msgID=4418 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4418 msgID=4419 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4418 msgID=4419 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4419 msgID=4420 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4419 msgID=4420 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4420 msgID=4421 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4420 msgID=4421 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4421 msgID=4422 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4421 msgID=4422 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4422 msgID=4423 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4422 msgID=4423 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4423 msgID=4424 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4423 msgID=4424 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4424 msgID=4425 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4424 msgID=4425 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4425 msgID=4426 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4425 msgID=4426 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4426 msgID=4427 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4426 msgID=4427 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4427 msgID=4428 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4427 msgID=4428 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4428 msgID=4429 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4428 msgID=4429 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4429 msgID=4430 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4429 msgID=4430 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4430 msgID=4431 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4430 msgID=4431 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4431 msgID=4432 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4431 msgID=4432 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4432 msgID=4433 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4432 msgID=4433 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4433 msgID=4434 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4433 msgID=4434 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4434 msgID=4435 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4434 msgID=4435 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4435 msgID=4436 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4435 msgID=4436 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4436 msgID=4437 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4436 msgID=4437 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4437 msgID=4438 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4437 msgID=4438 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4438 msgID=4439 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4438 msgID=4439 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4439 msgID=4440 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4439 msgID=4440 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4440 msgID=4441 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4440 msgID=4441 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4441 msgID=4442 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4441 msgID=4442 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4442 msgID=4443 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4442 msgID=4443 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4443 msgID=4444 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4443 msgID=4444 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4444 msgID=4445 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4444 msgID=4445 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4445 msgID=4446 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4445 msgID=4446 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4446 msgID=4447 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4446 msgID=4447 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4447 msgID=4448 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4447 msgID=4448 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4448 msgID=4449 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4448 msgID=4449 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4449 msgID=4450 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4449 msgID=4450 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4450 msgID=4451 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4450 msgID=4451 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4451 msgID=4452 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4451 msgID=4452 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4452 msgID=4453 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4452 msgID=4453 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4453 msgID=4454 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4453 msgID=4454 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4454 msgID=4455 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4454 msgID=4455 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4455 msgID=4456 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4455 msgID=4456 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4456 msgID=4457 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4456 msgID=4457 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4457 msgID=4458 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4457 msgID=4458 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4458 msgID=4459 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4458 msgID=4459 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4459 msgID=4460 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4459 msgID=4460 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4460 msgID=4461 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4460 msgID=4461 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4461 msgID=4462 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4461 msgID=4462 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4462 msgID=4463 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4462 msgID=4463 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4463 msgID=4464 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4463 msgID=4464 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4464 msgID=4465 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4464 msgID=4465 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4465 msgID=4466 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4465 msgID=4466 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4466 msgID=4467 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4466 msgID=4467 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4467 msgID=4468 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4467 msgID=4468 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4468 msgID=4469 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4468 msgID=4469 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4469 msgID=4470 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4469 msgID=4470 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4470 msgID=4471 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4470 msgID=4471 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4471 msgID=4472 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4471 msgID=4472 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4472 msgID=4473 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4472 msgID=4473 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4473 msgID=4474 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4473 msgID=4474 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4474 msgID=4475 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4474 msgID=4475 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4475 msgID=4476 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4475 msgID=4476 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4476 msgID=4477 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4476 msgID=4477 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4477 msgID=4478 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4477 msgID=4478 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4478 msgID=4479 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4478 msgID=4479 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4479 msgID=4480 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4479 msgID=4480 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4480 msgID=4481 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4480 msgID=4481 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4481 msgID=4482 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4481 msgID=4482 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4482 msgID=4483 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4482 msgID=4483 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4483 msgID=4484 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4483 msgID=4484 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4484 msgID=4485 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4484 msgID=4485 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4485 msgID=4486 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4485 msgID=4486 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4486 msgID=4487 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4486 msgID=4487 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4487 msgID=4488 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4487 msgID=4488 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4488 msgID=4489 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4488 msgID=4489 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4489 msgID=4490 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4489 msgID=4490 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4490 msgID=4491 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4490 msgID=4491 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4491 msgID=4492 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4491 msgID=4492 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4492 msgID=4493 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4492 msgID=4493 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4493 msgID=4494 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4493 msgID=4494 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4494 msgID=4495 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4494 msgID=4495 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4495 msgID=4496 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4495 msgID=4496 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4496 msgID=4497 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4496 msgID=4497 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4497 msgID=4498 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4497 msgID=4498 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4498 msgID=4499 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4498 msgID=4499 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4499 msgID=4500 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4499 msgID=4500 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4500 msgID=4501 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4500 msgID=4501 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4501 msgID=4502 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4501 msgID=4502 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4502 msgID=4503 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4502 msgID=4503 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4503 msgID=4504 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4503 msgID=4504 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4504 msgID=4505 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4504 msgID=4505 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4505 msgID=4506 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4505 msgID=4506 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4506 msgID=4507 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4506 msgID=4507 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4507 msgID=4508 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4507 msgID=4508 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4508 msgID=4509 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4508 msgID=4509 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4509 msgID=4510 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4509 msgID=4510 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4510 msgID=4511 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4510 msgID=4511 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4511 msgID=4512 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4511 msgID=4512 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4512 msgID=4513 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4512 msgID=4513 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4513 msgID=4514 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4513 msgID=4514 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4514 msgID=4515 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4514 msgID=4515 result=0 nentries=0 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4515 msgID=4516 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4515 msgID=4516 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4516 msgID=4517 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4516 msgID=4517 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4517 msgID=4518 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4517 msgID=4518 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4518 msgID=4519 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4518 msgID=4519 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4519 msgID=4520 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4519 msgID=4520 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4520 msgID=4521 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4520 msgID=4521 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4521 msgID=4522 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4521 msgID=4522 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4522 msgID=4523 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4522 msgID=4523 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4523 msgID=4524 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4523 msgID=4524 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4524 msgID=4525 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4524 msgID=4525 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4525 msgID=4526 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4525 msgID=4526 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4526 msgID=4527 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4526 msgID=4527 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4527 msgID=4528 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4527 msgID=4528 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4528 msgID=4529 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4528 msgID=4529 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4529 msgID=4530 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4529 msgID=4530 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4530 msgID=4531 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4530 msgID=4531 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4531 msgID=4532 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4531 msgID=4532 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4532 msgID=4533 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4532 msgID=4533 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4533 msgID=4534 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4533 msgID=4534 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4534 msgID=4535 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4534 msgID=4535 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4535 msgID=4536 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4535 msgID=4536 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4536 msgID=4537 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4536 msgID=4537 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4537 msgID=4538 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4537 msgID=4538 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4538 msgID=4539 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4538 msgID=4539 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4539 msgID=4540 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4539 msgID=4540 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4540 msgID=4541 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4540 msgID=4541 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4541 msgID=4542 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4541 msgID=4542 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4542 msgID=4543 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4542 msgID=4543 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4543 msgID=4544 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4543 msgID=4544 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4544 msgID=4545 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4544 msgID=4545 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4545 msgID=4546 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4545 msgID=4546 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4546 msgID=4547 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4546 msgID=4547 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4547 msgID=4548 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4547 msgID=4548 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4548 msgID=4549 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4548 msgID=4549 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4549 msgID=4550 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4549 msgID=4550 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4550 msgID=4551 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4550 msgID=4551 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4551 msgID=4552 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4551 msgID=4552 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4552 msgID=4553 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4552 msgID=4553 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4553 msgID=4554 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4553 msgID=4554 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4554 msgID=4555 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4554 msgID=4555 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4555 msgID=4556 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4555 msgID=4556 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4556 msgID=4557 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4556 msgID=4557 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4557 msgID=4558 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4557 msgID=4558 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4558 msgID=4559 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4558 msgID=4559 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4559 msgID=4560 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4559 msgID=4560 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4560 msgID=4561 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4560 msgID=4561 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4561 msgID=4562 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4561 msgID=4562 result=0 nentries=3 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4562 msgID=4563 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4562 msgID=4563 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4563 msgID=4564 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4563 msgID=4564 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4564 msgID=4565 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4564 msgID=4565 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4565 msgID=4566 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4565 msgID=4566 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4566 msgID=4567 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4566 msgID=4567 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4567 msgID=4568 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4567 msgID=4568 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4568 msgID=4569 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4568 msgID=4569 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4569 msgID=4570 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4569 msgID=4570 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4570 msgID=4571 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4570 msgID=4571 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4571 msgID=4572 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4571 msgID=4572 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4572 msgID=4573 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4572 msgID=4573 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4573 msgID=4574 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4573 msgID=4574 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4574 msgID=4575 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4574 msgID=4575 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4575 msgID=4576 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4575 msgID=4576 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4576 msgID=4577 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4576 msgID=4577 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4577 msgID=4578 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4577 msgID=4578 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4578 msgID=4579 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4578 msgID=4579 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4579 msgID=4580 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4579 msgID=4580 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4580 msgID=4581 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4580 msgID=4581 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4581 msgID=4582 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4581 msgID=4582 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4582 msgID=4583 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4582 msgID=4583 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4583 msgID=4584 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4583 msgID=4584 result=0 nentries=1 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4584 msgID=4585 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4584 msgID=4585 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4585 msgID=4586 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4585 msgID=4586 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4586 msgID=4587 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4586 msgID=4587 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4587 msgID=4588 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4587 msgID=4588 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4588 msgID=4589 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4588 msgID=4589 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4589 msgID=4590 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4589 msgID=4590 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4590 msgID=4591 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4590 msgID=4591 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4591 msgID=4592 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4591 msgID=4592 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4592 msgID=4593 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4592 msgID=4593 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4593 msgID=4594 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4593 msgID=4594 result=0 nentries=42 etime=32 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4594 msgID=4595 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4594 msgID=4595 result=0 nentries=3 etime=1 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=0 op=4595 msgID=4596 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=0 op=4595 msgID=4596 result=0 nentries=1 etime=0 +[06/Mar/2015:19:17:58 +0100] SEARCH REQ conn=2 op=21 msgID=22 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:17:58 +0100] SEARCH RES conn=2 op=21 msgID=22 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4596 msgID=4597 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4596 msgID=4597 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4597 msgID=4598 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4597 msgID=4598 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4598 msgID=4599 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4598 msgID=4599 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4599 msgID=4600 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4599 msgID=4600 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4600 msgID=4601 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4600 msgID=4601 result=0 nentries=5 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4601 msgID=4602 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4601 msgID=4602 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4602 msgID=4603 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4602 msgID=4603 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4603 msgID=4604 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4603 msgID=4604 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4604 msgID=4605 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4604 msgID=4605 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4605 msgID=4606 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4605 msgID=4606 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4606 msgID=4607 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4606 msgID=4607 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4607 msgID=4608 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4607 msgID=4608 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4608 msgID=4609 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4608 msgID=4609 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4609 msgID=4610 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4609 msgID=4610 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4610 msgID=4611 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4610 msgID=4611 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4611 msgID=4612 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4611 msgID=4612 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4612 msgID=4613 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4612 msgID=4613 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4613 msgID=4614 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4613 msgID=4614 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4614 msgID=4615 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4614 msgID=4615 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4615 msgID=4616 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4615 msgID=4616 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4616 msgID=4617 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4616 msgID=4617 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4617 msgID=4618 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4617 msgID=4618 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4618 msgID=4619 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4618 msgID=4619 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4619 msgID=4620 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4619 msgID=4620 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4620 msgID=4621 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4620 msgID=4621 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4621 msgID=4622 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4621 msgID=4622 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4622 msgID=4623 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4622 msgID=4623 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4623 msgID=4624 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4623 msgID=4624 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4624 msgID=4625 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4624 msgID=4625 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4625 msgID=4626 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4625 msgID=4626 result=0 nentries=9 etime=2 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4626 msgID=4627 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4626 msgID=4627 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4627 msgID=4628 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4627 msgID=4628 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4628 msgID=4629 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4628 msgID=4629 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4629 msgID=4630 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4629 msgID=4630 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4630 msgID=4631 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4630 msgID=4631 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4631 msgID=4632 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4631 msgID=4632 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4632 msgID=4633 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4632 msgID=4633 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4633 msgID=4634 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4633 msgID=4634 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4634 msgID=4635 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4634 msgID=4635 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4635 msgID=4636 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4635 msgID=4636 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4636 msgID=4637 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4636 msgID=4637 result=0 nentries=13 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4637 msgID=4638 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4637 msgID=4638 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4638 msgID=4639 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4638 msgID=4639 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4639 msgID=4640 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4639 msgID=4640 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4640 msgID=4641 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4640 msgID=4641 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4641 msgID=4642 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4641 msgID=4642 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4642 msgID=4643 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4642 msgID=4643 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4643 msgID=4644 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4643 msgID=4644 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4644 msgID=4645 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4644 msgID=4645 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4645 msgID=4646 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4645 msgID=4646 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4646 msgID=4647 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4646 msgID=4647 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4647 msgID=4648 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4647 msgID=4648 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4648 msgID=4649 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4648 msgID=4649 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4649 msgID=4650 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4649 msgID=4650 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4650 msgID=4651 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4650 msgID=4651 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4651 msgID=4652 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4651 msgID=4652 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4652 msgID=4653 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4652 msgID=4653 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4653 msgID=4654 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4653 msgID=4654 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4654 msgID=4655 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4654 msgID=4655 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4655 msgID=4656 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4655 msgID=4656 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4656 msgID=4657 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4656 msgID=4657 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4657 msgID=4658 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4657 msgID=4658 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4658 msgID=4659 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4658 msgID=4659 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4659 msgID=4660 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4659 msgID=4660 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4660 msgID=4661 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4660 msgID=4661 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4661 msgID=4662 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4661 msgID=4662 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4662 msgID=4663 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4662 msgID=4663 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4663 msgID=4664 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4663 msgID=4664 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4664 msgID=4665 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4664 msgID=4665 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4665 msgID=4666 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4665 msgID=4666 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4666 msgID=4667 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4666 msgID=4667 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4667 msgID=4668 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4667 msgID=4668 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4668 msgID=4669 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4668 msgID=4669 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4669 msgID=4670 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4669 msgID=4670 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4670 msgID=4671 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4670 msgID=4671 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4671 msgID=4672 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4671 msgID=4672 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4672 msgID=4673 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4672 msgID=4673 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4673 msgID=4674 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4673 msgID=4674 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4674 msgID=4675 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4674 msgID=4675 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4675 msgID=4676 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4675 msgID=4676 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4676 msgID=4677 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4676 msgID=4677 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4677 msgID=4678 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4677 msgID=4678 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4678 msgID=4679 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4678 msgID=4679 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4679 msgID=4680 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4679 msgID=4680 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4680 msgID=4681 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4680 msgID=4681 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4681 msgID=4682 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4681 msgID=4682 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4682 msgID=4683 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4682 msgID=4683 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4683 msgID=4684 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4683 msgID=4684 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4684 msgID=4685 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4684 msgID=4685 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4685 msgID=4686 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4685 msgID=4686 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4686 msgID=4687 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4686 msgID=4687 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4687 msgID=4688 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4687 msgID=4688 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4688 msgID=4689 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4688 msgID=4689 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4689 msgID=4690 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4689 msgID=4690 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4690 msgID=4691 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4690 msgID=4691 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4691 msgID=4692 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4691 msgID=4692 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4692 msgID=4693 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4692 msgID=4693 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4693 msgID=4694 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4693 msgID=4694 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4694 msgID=4695 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4694 msgID=4695 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4695 msgID=4696 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4695 msgID=4696 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4696 msgID=4697 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4696 msgID=4697 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4697 msgID=4698 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4697 msgID=4698 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4698 msgID=4699 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4698 msgID=4699 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4699 msgID=4700 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4699 msgID=4700 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4700 msgID=4701 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4700 msgID=4701 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4701 msgID=4702 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4701 msgID=4702 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4702 msgID=4703 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4702 msgID=4703 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4703 msgID=4704 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4703 msgID=4704 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4704 msgID=4705 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4704 msgID=4705 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4705 msgID=4706 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4705 msgID=4706 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4706 msgID=4707 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4706 msgID=4707 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4707 msgID=4708 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4707 msgID=4708 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4708 msgID=4709 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4708 msgID=4709 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4709 msgID=4710 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4709 msgID=4710 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4710 msgID=4711 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4710 msgID=4711 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4711 msgID=4712 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4711 msgID=4712 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4712 msgID=4713 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4712 msgID=4713 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4713 msgID=4714 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4713 msgID=4714 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4714 msgID=4715 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4714 msgID=4715 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4715 msgID=4716 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4715 msgID=4716 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4716 msgID=4717 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4716 msgID=4717 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4717 msgID=4718 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4717 msgID=4718 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4718 msgID=4719 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4718 msgID=4719 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4719 msgID=4720 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4719 msgID=4720 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4720 msgID=4721 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4720 msgID=4721 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4721 msgID=4722 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4721 msgID=4722 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4722 msgID=4723 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4722 msgID=4723 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4723 msgID=4724 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4723 msgID=4724 result=0 nentries=1 etime=3 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4724 msgID=4725 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4724 msgID=4725 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4725 msgID=4726 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4725 msgID=4726 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4726 msgID=4727 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4726 msgID=4727 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4727 msgID=4728 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4727 msgID=4728 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4728 msgID=4729 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4728 msgID=4729 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4729 msgID=4730 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4729 msgID=4730 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4730 msgID=4731 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4730 msgID=4731 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4731 msgID=4732 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4731 msgID=4732 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4732 msgID=4733 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4732 msgID=4733 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4733 msgID=4734 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4733 msgID=4734 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4734 msgID=4735 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4734 msgID=4735 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4735 msgID=4736 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4735 msgID=4736 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4736 msgID=4737 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4736 msgID=4737 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4737 msgID=4738 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4737 msgID=4738 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4738 msgID=4739 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4738 msgID=4739 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4739 msgID=4740 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4739 msgID=4740 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4740 msgID=4741 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4740 msgID=4741 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4741 msgID=4742 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4741 msgID=4742 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4742 msgID=4743 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4742 msgID=4743 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4743 msgID=4744 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4743 msgID=4744 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4744 msgID=4745 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4744 msgID=4745 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4745 msgID=4746 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4745 msgID=4746 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4746 msgID=4747 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4746 msgID=4747 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4747 msgID=4748 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4747 msgID=4748 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4748 msgID=4749 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4748 msgID=4749 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4749 msgID=4750 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4749 msgID=4750 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4750 msgID=4751 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4750 msgID=4751 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4751 msgID=4752 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4751 msgID=4752 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4752 msgID=4753 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4752 msgID=4753 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4753 msgID=4754 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4753 msgID=4754 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4754 msgID=4755 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4754 msgID=4755 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4755 msgID=4756 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4755 msgID=4756 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4756 msgID=4757 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4756 msgID=4757 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4757 msgID=4758 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4757 msgID=4758 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4758 msgID=4759 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4758 msgID=4759 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4759 msgID=4760 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4759 msgID=4760 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4760 msgID=4761 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4760 msgID=4761 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4761 msgID=4762 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4761 msgID=4762 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4762 msgID=4763 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4762 msgID=4763 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4763 msgID=4764 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4763 msgID=4764 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4764 msgID=4765 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4764 msgID=4765 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4765 msgID=4766 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4765 msgID=4766 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4766 msgID=4767 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4766 msgID=4767 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4767 msgID=4768 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4767 msgID=4768 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4768 msgID=4769 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4768 msgID=4769 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4769 msgID=4770 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4769 msgID=4770 result=0 nentries=0 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4770 msgID=4771 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4770 msgID=4771 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4771 msgID=4772 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4771 msgID=4772 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4772 msgID=4773 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4772 msgID=4773 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4773 msgID=4774 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4773 msgID=4774 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4774 msgID=4775 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4774 msgID=4775 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4775 msgID=4776 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4775 msgID=4776 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4776 msgID=4777 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4776 msgID=4777 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4777 msgID=4778 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4777 msgID=4778 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4778 msgID=4779 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4778 msgID=4779 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4779 msgID=4780 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4779 msgID=4780 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4780 msgID=4781 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4780 msgID=4781 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4781 msgID=4782 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4781 msgID=4782 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4782 msgID=4783 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4782 msgID=4783 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4783 msgID=4784 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4783 msgID=4784 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4784 msgID=4785 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4784 msgID=4785 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4785 msgID=4786 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4785 msgID=4786 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4786 msgID=4787 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4786 msgID=4787 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4787 msgID=4788 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4787 msgID=4788 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4788 msgID=4789 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4788 msgID=4789 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4789 msgID=4790 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4789 msgID=4790 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4790 msgID=4791 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4790 msgID=4791 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4791 msgID=4792 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4791 msgID=4792 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4792 msgID=4793 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4792 msgID=4793 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4793 msgID=4794 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4793 msgID=4794 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4794 msgID=4795 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4794 msgID=4795 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4795 msgID=4796 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4795 msgID=4796 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4796 msgID=4797 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4796 msgID=4797 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4797 msgID=4798 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4797 msgID=4798 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4798 msgID=4799 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4798 msgID=4799 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4799 msgID=4800 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4799 msgID=4800 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4800 msgID=4801 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4800 msgID=4801 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4801 msgID=4802 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4801 msgID=4802 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4802 msgID=4803 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4802 msgID=4803 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4803 msgID=4804 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4803 msgID=4804 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4804 msgID=4805 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4804 msgID=4805 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4805 msgID=4806 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4805 msgID=4806 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4806 msgID=4807 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4806 msgID=4807 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4807 msgID=4808 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4807 msgID=4808 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4808 msgID=4809 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4808 msgID=4809 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4809 msgID=4810 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4809 msgID=4810 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4810 msgID=4811 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4810 msgID=4811 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4811 msgID=4812 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4811 msgID=4812 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4812 msgID=4813 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4812 msgID=4813 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4813 msgID=4814 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4813 msgID=4814 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4814 msgID=4815 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4814 msgID=4815 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4815 msgID=4816 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4815 msgID=4816 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4816 msgID=4817 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4816 msgID=4817 result=0 nentries=3 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4817 msgID=4818 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4817 msgID=4818 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4818 msgID=4819 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4818 msgID=4819 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4819 msgID=4820 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4819 msgID=4820 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4820 msgID=4821 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4820 msgID=4821 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4821 msgID=4822 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4821 msgID=4822 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4822 msgID=4823 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4822 msgID=4823 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4823 msgID=4824 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4823 msgID=4824 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4824 msgID=4825 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4824 msgID=4825 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4825 msgID=4826 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4825 msgID=4826 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4826 msgID=4827 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4826 msgID=4827 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4827 msgID=4828 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4827 msgID=4828 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4828 msgID=4829 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4828 msgID=4829 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4829 msgID=4830 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4829 msgID=4830 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4830 msgID=4831 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4830 msgID=4831 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4831 msgID=4832 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4831 msgID=4832 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4832 msgID=4833 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4832 msgID=4833 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4833 msgID=4834 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4833 msgID=4834 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4834 msgID=4835 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4834 msgID=4835 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4835 msgID=4836 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4835 msgID=4836 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4836 msgID=4837 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4836 msgID=4837 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4837 msgID=4838 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4837 msgID=4838 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4838 msgID=4839 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4838 msgID=4839 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4839 msgID=4840 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4839 msgID=4840 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4840 msgID=4841 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4840 msgID=4841 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4841 msgID=4842 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4841 msgID=4842 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4842 msgID=4843 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4842 msgID=4843 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4843 msgID=4844 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4843 msgID=4844 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4844 msgID=4845 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4844 msgID=4845 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4845 msgID=4846 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4845 msgID=4846 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4846 msgID=4847 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4846 msgID=4847 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4847 msgID=4848 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4847 msgID=4848 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4848 msgID=4849 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4848 msgID=4849 result=0 nentries=42 etime=24 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4849 msgID=4850 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4849 msgID=4850 result=0 nentries=3 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=0 op=4850 msgID=4851 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=0 op=4850 msgID=4851 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=2 op=22 msgID=23 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:18 +0100] SEARCH RES conn=2 op=22 msgID=23 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:18 +0100] CONNECT conn=5 from=127.0.0.1:44374 to=127.0.0.1:10389 protocol=LDAP +[06/Mar/2015:19:18:18 +0100] BIND REQ conn=5 op=0 msgID=1 version=3 type=SIMPLE dn="uid=idm,ou=Administrators,dc=example,dc=com" +[06/Mar/2015:19:18:18 +0100] BIND RES conn=5 op=0 msgID=1 result=0 authDN="uid=idm,ou=Administrators,dc=example,dc=com" etime=1 +[06/Mar/2015:19:18:18 +0100] SEARCH REQ conn=5 op=1 msgID=2 base="cn=changelog" scope=wholeSubtree filter="(objectclass=*)" attrs="ALL" +[06/Mar/2015:19:18:19 +0100] SEARCH RES conn=5 op=1 msgID=2 result=0 nentries=1 etime=27 +[06/Mar/2015:19:18:19 +0100] UNBIND REQ conn=5 op=2 msgID=3 +[06/Mar/2015:19:18:19 +0100] DISCONNECT conn=5 reason="Client Unbind" +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4851 msgID=4852 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4851 msgID=4852 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4852 msgID=4853 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4852 msgID=4853 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4853 msgID=4854 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4853 msgID=4854 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4854 msgID=4855 base="cn=Administration Connector,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-trust-manager-provider,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite,ds-cfg-key-manager-provider" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4854 msgID=4855 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4855 msgID=4856 base="cn=connection handlers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-connection-handler)" attrs="ALL" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4855 msgID=4856 result=0 nentries=5 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4856 msgID=4857 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4856 msgID=4857 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4857 msgID=4858 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4857 msgID=4858 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4858 msgID=4859 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4858 msgID=4859 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4859 msgID=4860 base="cn=LDAP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4859 msgID=4860 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4860 msgID=4861 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4860 msgID=4861 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4861 msgID=4862 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4861 msgID=4862 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4862 msgID=4863 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4862 msgID=4863 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4863 msgID=4864 base="cn=LDIF Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ldif-directory,ds-cfg-poll-interval,ds-cfg-allowed-client" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4863 msgID=4864 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4864 msgID=4865 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4864 msgID=4865 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4865 msgID=4866 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4865 msgID=4866 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4866 msgID=4867 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4866 msgID=4867 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4867 msgID=4868 base="cn=JMX Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-denied-client,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-key-manager-provider,ds-cfg-allowed-client" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4867 msgID=4868 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4868 msgID=4869 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4868 msgID=4869 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4869 msgID=4870 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4869 msgID=4870 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4870 msgID=4871 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4870 msgID=4871 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4871 msgID=4872 base="cn=HTTP Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-config-file,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-tcp-reuse-address,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-authentication-required,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-max-concurrent-ops-per-connection,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4871 msgID=4872 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4872 msgID=4873 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4872 msgID=4873 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4873 msgID=4874 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4873 msgID=4874 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4874 msgID=4875 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4874 msgID=4875 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4875 msgID=4876 base="cn=LDAPS Connection Handler,cn=connection handlers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-client-auth-policy,ds-cfg-enabled,ds-cfg-max-blocked-write-time-limit,ds-cfg-keep-stats,ds-cfg-denied-client,ds-cfg-allow-start-tls,ds-cfg-allow-tcp-reuse-address,ds-cfg-send-rejection-notice,ds-cfg-listen-port,ds-cfg-listen-address,ds-cfg-use-ssl,ds-cfg-trust-manager-provider,ds-cfg-ssl-cipher-suite,ds-cfg-allow-ldap-v2,ds-cfg-use-tcp-no-delay,ds-cfg-accept-backlog,ds-cfg-max-request-size,ds-cfg-java-class,ds-cfg-ssl-cert-nickname,ds-cfg-use-tcp-keep-alive,ds-cfg-buffer-size,ds-cfg-num-request-handlers,ds-cfg-ssl-protocol,ds-cfg-allowed-client,ds-cfg-key-manager-provider" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4875 msgID=4876 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4876 msgID=4877 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4876 msgID=4877 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4877 msgID=4878 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4877 msgID=4878 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4878 msgID=4879 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4878 msgID=4879 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4879 msgID=4880 base="cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-entry-cache-preload,ds-cfg-disabled-privilege,ds-cfg-proxied-authorization-identity-mapper,ds-cfg-default-password-policy,ds-cfg-etime-resolution,ds-cfg-single-structural-objectclass-behavior,ds-cfg-size-limit,ds-cfg-max-allowed-client-connections,ds-cfg-allowed-task,ds-cfg-workflow-configuration-mode,ds-cfg-reject-unauthenticated-requests,ds-cfg-return-bind-error-messages,ds-cfg-allow-attribute-name-exceptions,ds-cfg-lookthrough-limit,ds-cfg-bind-with-dn-requires-password,ds-cfg-writability-mode,ds-cfg-max-psearches,ds-cfg-idle-time-limit,ds-cfg-time-limit,ds-cfg-check-schema,ds-cfg-max-internal-buffer-size,ds-cfg-server-error-result-code,ds-cfg-add-missing-rdn-attributes,ds-cfg-save-config-on-successful-startup,ds-cfg-notify-abandoned-operations,ds-cfg-smtp-server,ds-cfg-invalid-attribute-syntax-behavior" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4879 msgID=4880 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4880 msgID=4881 base="cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-backend)" attrs="ALL" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4880 msgID=4881 result=0 nentries=9 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4881 msgID=4882 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4881 msgID=4882 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4882 msgID=4883 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4882 msgID=4883 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4883 msgID=4884 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4883 msgID=4884 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4884 msgID=4885 base="ds-cfg-backend-id=config,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4884 msgID=4885 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4885 msgID=4886 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4885 msgID=4886 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4886 msgID=4887 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4886 msgID=4887 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4887 msgID=4888 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4887 msgID=4888 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4888 msgID=4889 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-disk-full-threshold,ds-cfg-db-run-cleaner,ds-cfg-db-logging-file-handler-on,ds-cfg-je-property,ds-cfg-db-txn-write-no-sync,ds-cfg-db-evictor-nodes-per-scan,ds-cfg-db-evictor-max-threads,ds-cfg-index-filter-analyzer-max-filters,ds-cfg-db-num-lock-tables,ds-cfg-import-thread-count,ds-cfg-db-evictor-core-threads,ds-cfg-db-directory,ds-cfg-db-checkpointer-bytes-interval,ds-cfg-db-directory-permissions,ds-cfg-base-dn,ds-cfg-db-evictor-keep-alive,ds-cfg-import-queue-size,ds-cfg-entries-compressed,ds-cfg-db-evictor-lru-only,ds-cfg-db-logging-level,ds-cfg-subordinate-indexes-enabled,ds-cfg-enabled,ds-cfg-db-log-filecache-size,ds-cfg-db-cache-percent,ds-cfg-writability-mode,ds-cfg-db-cache-size,ds-cfg-db-cleaner-min-utilization,ds-cfg-db-txn-no-sync,ds-cfg-preload-time-limit,ds-cfg-backend-id,ds-cfg-compact-encoding,ds-cfg-db-num-cleaner-threads,ds-cfg-index-entry-limit,ds-cfg-java-class,ds-cfg-disk-low-threshold,ds-cfg-db-log-file-max,ds-cfg-db-checkpointer-wakeup-interval,ds-cfg-index-filter-analyzer-enabled" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4888 msgID=4889 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4889 msgID=4890 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4889 msgID=4890 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4890 msgID=4891 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4890 msgID=4891 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4891 msgID=4892 base="cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-index)" attrs="ALL" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4891 msgID=4892 result=0 nentries=13 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4892 msgID=4893 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4892 msgID=4893 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4893 msgID=4894 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4893 msgID=4894 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4894 msgID=4895 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4894 msgID=4895 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4895 msgID=4896 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4895 msgID=4896 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4896 msgID=4897 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4896 msgID=4897 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4897 msgID=4898 base="ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4897 msgID=4898 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4898 msgID=4899 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4898 msgID=4899 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4899 msgID=4900 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4899 msgID=4900 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4900 msgID=4901 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4900 msgID=4901 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4901 msgID=4902 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4901 msgID=4902 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4902 msgID=4903 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4902 msgID=4903 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4903 msgID=4904 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4903 msgID=4904 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4904 msgID=4905 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4904 msgID=4905 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4905 msgID=4906 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4905 msgID=4906 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4906 msgID=4907 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4906 msgID=4907 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4907 msgID=4908 base="ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4907 msgID=4908 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4908 msgID=4909 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4908 msgID=4909 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4909 msgID=4910 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4909 msgID=4910 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4910 msgID=4911 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4910 msgID=4911 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4911 msgID=4912 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4911 msgID=4912 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4912 msgID=4913 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4912 msgID=4913 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4913 msgID=4914 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4913 msgID=4914 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4914 msgID=4915 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4914 msgID=4915 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4915 msgID=4916 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4915 msgID=4916 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4916 msgID=4917 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4916 msgID=4917 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4917 msgID=4918 base="ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4917 msgID=4918 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4918 msgID=4919 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4918 msgID=4919 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4919 msgID=4920 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4919 msgID=4920 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4920 msgID=4921 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4920 msgID=4921 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4921 msgID=4922 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4921 msgID=4922 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4922 msgID=4923 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4922 msgID=4923 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4923 msgID=4924 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4923 msgID=4924 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4924 msgID=4925 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4924 msgID=4925 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4925 msgID=4926 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4925 msgID=4926 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4926 msgID=4927 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4926 msgID=4927 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4927 msgID=4928 base="ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4927 msgID=4928 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4928 msgID=4929 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4928 msgID=4929 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4929 msgID=4930 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4929 msgID=4930 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4930 msgID=4931 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4930 msgID=4931 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4931 msgID=4932 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4931 msgID=4932 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4932 msgID=4933 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4932 msgID=4933 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4933 msgID=4934 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4933 msgID=4934 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4934 msgID=4935 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4934 msgID=4935 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4935 msgID=4936 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4935 msgID=4936 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4936 msgID=4937 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4936 msgID=4937 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4937 msgID=4938 base="ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4937 msgID=4938 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4938 msgID=4939 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4938 msgID=4939 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4939 msgID=4940 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4939 msgID=4940 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4940 msgID=4941 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4940 msgID=4941 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4941 msgID=4942 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4941 msgID=4942 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4942 msgID=4943 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4942 msgID=4943 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4943 msgID=4944 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4943 msgID=4944 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4944 msgID=4945 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4944 msgID=4945 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4945 msgID=4946 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4945 msgID=4946 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4946 msgID=4947 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4946 msgID=4947 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4947 msgID=4948 base="ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4947 msgID=4948 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4948 msgID=4949 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4948 msgID=4949 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4949 msgID=4950 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4949 msgID=4950 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4950 msgID=4951 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4950 msgID=4951 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4951 msgID=4952 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4951 msgID=4952 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4952 msgID=4953 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4952 msgID=4953 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4953 msgID=4954 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4953 msgID=4954 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4954 msgID=4955 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4954 msgID=4955 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4955 msgID=4956 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4955 msgID=4956 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4956 msgID=4957 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4956 msgID=4957 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4957 msgID=4958 base="ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4957 msgID=4958 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4958 msgID=4959 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4958 msgID=4959 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4959 msgID=4960 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4959 msgID=4960 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4960 msgID=4961 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4960 msgID=4961 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4961 msgID=4962 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4961 msgID=4962 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4962 msgID=4963 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4962 msgID=4963 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4963 msgID=4964 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4963 msgID=4964 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4964 msgID=4965 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4964 msgID=4965 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4965 msgID=4966 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4965 msgID=4966 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4966 msgID=4967 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4966 msgID=4967 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4967 msgID=4968 base="ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4967 msgID=4968 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4968 msgID=4969 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4968 msgID=4969 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4969 msgID=4970 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4969 msgID=4970 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4970 msgID=4971 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4970 msgID=4971 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4971 msgID=4972 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4971 msgID=4972 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4972 msgID=4973 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4972 msgID=4973 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4973 msgID=4974 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4973 msgID=4974 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4974 msgID=4975 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4974 msgID=4975 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4975 msgID=4976 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4975 msgID=4976 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4976 msgID=4977 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4976 msgID=4977 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4977 msgID=4978 base="ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4977 msgID=4978 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4978 msgID=4979 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4978 msgID=4979 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4979 msgID=4980 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4979 msgID=4980 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4980 msgID=4981 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4980 msgID=4981 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4981 msgID=4982 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4981 msgID=4982 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4982 msgID=4983 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4982 msgID=4983 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4983 msgID=4984 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4983 msgID=4984 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4984 msgID=4985 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4984 msgID=4985 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4985 msgID=4986 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4985 msgID=4986 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4986 msgID=4987 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4986 msgID=4987 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4987 msgID=4988 base="ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4987 msgID=4988 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4988 msgID=4989 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4988 msgID=4989 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4989 msgID=4990 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4989 msgID=4990 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4990 msgID=4991 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4990 msgID=4991 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4991 msgID=4992 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4991 msgID=4992 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4992 msgID=4993 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4992 msgID=4993 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4993 msgID=4994 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4993 msgID=4994 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4994 msgID=4995 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4994 msgID=4995 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4995 msgID=4996 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4995 msgID=4996 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4996 msgID=4997 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4996 msgID=4997 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4997 msgID=4998 base="ds-cfg-attribute=ds-sync-conflict,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4997 msgID=4998 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4998 msgID=4999 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4998 msgID=4999 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=4999 msgID=5000 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=4999 msgID=5000 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5000 msgID=5001 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5000 msgID=5001 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5001 msgID=5002 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5001 msgID=5002 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5002 msgID=5003 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5002 msgID=5003 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5003 msgID=5004 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5003 msgID=5004 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5004 msgID=5005 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5004 msgID=5005 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5005 msgID=5006 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5005 msgID=5006 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5006 msgID=5007 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5006 msgID=5007 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5007 msgID=5008 base="ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5007 msgID=5008 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5008 msgID=5009 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5008 msgID=5009 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5009 msgID=5010 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5009 msgID=5010 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5010 msgID=5011 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5010 msgID=5011 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5011 msgID=5012 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5011 msgID=5012 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5012 msgID=5013 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5012 msgID=5013 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5013 msgID=5014 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5013 msgID=5014 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5014 msgID=5015 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5014 msgID=5015 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5015 msgID=5016 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5015 msgID=5016 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5016 msgID=5017 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5016 msgID=5017 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5017 msgID=5018 base="ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit,ds-cfg-index-type,ds-cfg-index-extensible-matching-rule,ds-cfg-attribute,ds-cfg-substring-length" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5017 msgID=5018 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5018 msgID=5019 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5018 msgID=5019 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5019 msgID=5020 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5019 msgID=5020 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5020 msgID=5021 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5020 msgID=5021 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5021 msgID=5022 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-index-entry-limit" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5021 msgID=5022 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5022 msgID=5023 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5022 msgID=5023 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5023 msgID=5024 base="ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5023 msgID=5024 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5024 msgID=5025 base="cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-local-db-vlv-index)" attrs="ALL" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5024 msgID=5025 result=0 nentries=0 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5025 msgID=5026 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5025 msgID=5026 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5026 msgID=5027 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5026 msgID=5027 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5027 msgID=5028 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5027 msgID=5028 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5028 msgID=5029 base="ds-cfg-backend-id=backup,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-backup-directory,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5028 msgID=5029 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5029 msgID=5030 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5029 msgID=5030 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5030 msgID=5031 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5030 msgID=5031 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5031 msgID=5032 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5031 msgID=5032 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5032 msgID=5033 base="ds-cfg-backend-id=adminRoot,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-is-private-backend,ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-ldif-file,ds-cfg-backend-id" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5032 msgID=5033 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5033 msgID=5034 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5033 msgID=5034 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5034 msgID=5035 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5034 msgID=5035 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5035 msgID=5036 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5035 msgID=5036 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5036 msgID=5037 base="ds-cfg-backend-id=schema,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-show-all-attributes,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-schema-entry-dn,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5036 msgID=5037 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5037 msgID=5038 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5037 msgID=5038 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5038 msgID=5039 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5038 msgID=5039 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5039 msgID=5040 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5039 msgID=5040 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5040 msgID=5041 base="ds-cfg-backend-id=tasks,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-task-retention-time,ds-cfg-task-backing-file,ds-cfg-notification-sender-address,ds-cfg-backend-id" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5040 msgID=5041 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5041 msgID=5042 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5041 msgID=5042 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5042 msgID=5043 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5042 msgID=5043 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5043 msgID=5044 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5043 msgID=5044 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5044 msgID=5045 base="ds-cfg-backend-id=replicationChanges,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5044 msgID=5045 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5045 msgID=5046 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5045 msgID=5046 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5046 msgID=5047 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5046 msgID=5047 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5047 msgID=5048 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5047 msgID=5048 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5048 msgID=5049 base="ds-cfg-backend-id=monitor,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-base-dn,ds-cfg-backend-id" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5048 msgID=5049 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5049 msgID=5050 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5049 msgID=5050 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5050 msgID=5051 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5050 msgID=5051 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5051 msgID=5052 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5051 msgID=5052 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5052 msgID=5053 base="ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-trust-store-pin-environment-variable,ds-cfg-java-class,ds-cfg-writability-mode,ds-cfg-trust-store-pin-file,ds-cfg-base-dn,ds-cfg-trust-store-file,ds-cfg-trust-store-pin,ds-cfg-trust-store-type,ds-cfg-backend-id,ds-cfg-trust-store-pin-property" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5052 msgID=5053 result=0 nentries=1 etime=2 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5053 msgID=5054 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5053 msgID=5054 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5054 msgID=5055 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5054 msgID=5055 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5055 msgID=5056 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5055 msgID=5056 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5056 msgID=5057 base="cn=Crypto Manager,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-ssl-encryption,ds-cfg-mac-algorithm,ds-cfg-cipher-key-length,ds-cfg-key-wrapping-transformation,ds-cfg-cipher-transformation,ds-cfg-ssl-cert-nickname,ds-cfg-mac-key-length,ds-cfg-digest-algorithm,ds-cfg-ssl-protocol,ds-cfg-ssl-cipher-suite" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5056 msgID=5057 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5057 msgID=5058 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5057 msgID=5058 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5058 msgID=5059 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5058 msgID=5059 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5059 msgID=5060 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5059 msgID=5060 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5060 msgID=5061 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-enabled,ds-cfg-java-class,ds-cfg-num-update-replay-threads,ds-cfg-connection-timeout" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5060 msgID=5061 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5061 msgID=5062 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5061 msgID=5062 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5062 msgID=5063 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5062 msgID=5063 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5063 msgID=5064 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5063 msgID=5064 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5064 msgID=5065 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5064 msgID=5065 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5065 msgID=5066 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5065 msgID=5066 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5066 msgID=5067 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5066 msgID=5067 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5067 msgID=5068 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5067 msgID=5068 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5068 msgID=5069 base="cn=replication server,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-group-id,ds-cfg-weight,ds-cfg-monitoring-period,ds-cfg-replication-db-directory,ds-cfg-replication-server-id,ds-cfg-window-size,ds-cfg-assured-timeout,ds-cfg-replication-purge-delay,ds-cfg-replication-server,ds-cfg-source-address,ds-cfg-degraded-status-threshold,ds-cfg-queue-size,ds-cfg-replication-port" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5068 msgID=5069 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5069 msgID=5070 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5069 msgID=5070 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5070 msgID=5071 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5070 msgID=5071 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5071 msgID=5072 base="cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-replication-domain)" attrs="ALL" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5071 msgID=5072 result=0 nentries=3 etime=3 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5072 msgID=5073 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5072 msgID=5073 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5073 msgID=5074 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5073 msgID=5074 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5074 msgID=5075 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5074 msgID=5075 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5075 msgID=5076 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5075 msgID=5076 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5076 msgID=5077 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5076 msgID=5077 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5077 msgID=5078 base="cn=cn\=admin data,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5077 msgID=5078 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5078 msgID=5079 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5078 msgID=5079 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5079 msgID=5080 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5079 msgID=5080 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5080 msgID=5081 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5080 msgID=5081 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5081 msgID=5082 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5081 msgID=5082 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5082 msgID=5083 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5082 msgID=5083 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5083 msgID=5084 base="cn=cn\=schema,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5083 msgID=5084 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:38 +0100] SEARCH REQ conn=0 op=5084 msgID=5085 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:38 +0100] SEARCH RES conn=0 op=5084 msgID=5085 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5085 msgID=5086 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5085 msgID=5086 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5086 msgID=5087 base="cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5086 msgID=5087 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5087 msgID=5088 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5087 msgID=5088 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5088 msgID=5089 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5088 msgID=5089 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5089 msgID=5090 base="cn=dc\=example\,dc\=com,cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-fractional-include,ds-cfg-group-id,ds-cfg-isolation-policy,ds-cfg-fractional-exclude,ds-cfg-window-size,ds-cfg-changetime-heartbeat-interval,ds-cfg-solve-conflicts,ds-cfg-assured-type,ds-cfg-assured-timeout,ds-cfg-server-id,ds-cfg-initialization-window-size,ds-cfg-replication-server,ds-cfg-heartbeat-interval,ds-cfg-source-address,ds-cfg-referrals-url,ds-cfg-base-dn,ds-cfg-log-changenumber,ds-cfg-conflicts-historical-purge-delay,ds-cfg-assured-sd-level" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5089 msgID=5090 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5090 msgID=5091 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5090 msgID=5091 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5091 msgID=5092 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5091 msgID=5092 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5092 msgID=5093 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5092 msgID=5093 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5093 msgID=5094 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-default-root-privilege-name" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5093 msgID=5094 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5094 msgID=5095 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5094 msgID=5095 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5095 msgID=5096 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5095 msgID=5096 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5096 msgID=5097 base="cn=Root DNs,cn=config" scope=singleLevel filter="(objectclass=ds-cfg-root-dn-user)" attrs="ALL" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5096 msgID=5097 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5097 msgID=5098 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5097 msgID=5098 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5098 msgID=5099 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5098 msgID=5099 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5099 msgID=5100 base="cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5099 msgID=5100 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5100 msgID=5101 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5100 msgID=5101 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5101 msgID=5102 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="objectclass" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5101 msgID=5102 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5102 msgID=5103 base="cn=Directory Manager,cn=Root DNs,cn=config" scope=baseObject filter="(objectClass=*)" attrs="ds-cfg-alternate-bind-dn" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5102 msgID=5103 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5103 msgID=5104 base="cn=monitor" scope=wholeSubtree filter="(objectclass=*)" attrs="*" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5103 msgID=5104 result=0 nentries=43 etime=32 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5104 msgID=5105 base="cn=Tasks" scope=wholeSubtree filter="(objectclass=ds-task)" attrs="*" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5104 msgID=5105 result=0 nentries=3 etime=1 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=0 op=5105 msgID=5106 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=0 op=5105 msgID=5106 result=0 nentries=1 etime=1 +[06/Mar/2015:19:18:39 +0100] SEARCH REQ conn=2 op=23 msgID=24 base="" scope=baseObject filter="(objectClass=*)" attrs="1.1" +[06/Mar/2015:19:18:39 +0100] SEARCH RES conn=2 op=23 msgID=24 result=0 nentries=1 etime=0 +[06/Mar/2015:19:18:44 +0100] UNBIND REQ conn=0 op=5106 msgID=5107 +[06/Mar/2015:19:18:44 +0100] DISCONNECT conn=0 reason="Client Unbind" +[06/Mar/2015:19:18:44 +0100] UNBIND REQ conn=2 op=24 msgID=25 +[06/Mar/2015:19:18:44 +0100] DISCONNECT conn=2 reason="Client Unbind" +[06/Mar/2015:19:18:45 +0100] DISCONNECT conn=3 reason="Server Shutdown" msg="This client connection is being deregistered from the associated request handler because the Directory Server is shutting down" diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/logs/errors b/infra/test-util/src/main/resources/test-data/opendj.template/logs/errors index e69de29bb2d..5de28f03496 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/logs/errors +++ b/infra/test-util/src/main/resources/test-data/opendj.template/logs/errors @@ -0,0 +1,100 @@ +[06/Mar/2015:19:08:43 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381717 msg=Installation Directory: /home/semancik/projects/forgerock/opendj/2.6.2-svn/build/package/OpenDJ-2.6.2 +[06/Mar/2015:19:08:43 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381719 msg=Instance Directory: /home/semancik/projects/forgerock/opendj/2.6.2-svn/build/package/OpenDJ-2.6.2 +[06/Mar/2015:19:08:43 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381713 msg=JVM Information: 1.7.0_75-b13 by Oracle Corporation, 64-bit architecture, 1862270976 bytes heap size +[06/Mar/2015:19:08:43 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381714 msg=JVM Host: triglav.nlight.eu, running Linux 3.16.0-30-generic amd64, 8372068352 bytes physical memory size, number of processors available 4 +[06/Mar/2015:19:08:43 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381715 msg=JVM Arguments: "-Dorg.opends.server.scriptName=start-ds" +[06/Mar/2015:19:08:44 +0100] category=JEB severity=NOTICE msgID=8847402 msg=The database backend userRoot containing 0 entries has started +[06/Mar/2015:19:08:45 +0100] category=EXTENSIONS severity=NOTICE msgID=1507549 msg=DIGEST-MD5 SASL mechanism using a server fully qualified domain name of: localhost +[06/Mar/2015:19:08:45 +0100] category=PROTOCOL severity=NOTICE msgID=2556180 msg=Started listening for new connections on Administration Connector 0.0.0.0 port 10444 +[06/Mar/2015:19:08:45 +0100] category=PROTOCOL severity=NOTICE msgID=2556180 msg=Started listening for new connections on LDAP Connection Handler 0.0.0.0 port 10389 +[06/Mar/2015:19:08:45 +0100] category=CORE severity=NOTICE msgID=458887 msg=The Directory Server has started successfully +[06/Mar/2015:19:08:45 +0100] category=CORE severity=NOTICE msgID=458891 msg=The Directory Server has sent an alert notification generated by class org.opends.server.core.DirectoryServer (alert type org.opends.server.DirectoryServerStarted, alert ID 458887): The Directory Server has started successfully +[06/Mar/2015:19:08:47 +0100] category=SYNC severity=NOTICE msgID=15139020 msg=Replication server RS(9664) started listening for new connections on address 0.0.0.0 port 10989 +[06/Mar/2015:19:08:47 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(23955) has connected to replication server RS(9664) for domain "cn=admin data" at localhost/127.0.0.1:10989 with generation ID 113844 +[06/Mar/2015:19:08:47 +0100] category=JEB severity=NOTICE msgID=8847447 msg=Exported 0 entries and skipped 0 in 0 seconds (average rate 0.0/sec) +[06/Mar/2015:19:08:47 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(161) has connected to replication server RS(9664) for domain "dc=example,dc=com" at localhost/127.0.0.1:10989 with generation ID 48 +[06/Mar/2015:19:08:48 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(17438) has connected to replication server RS(9664) for domain "cn=schema" at localhost/127.0.0.1:10989 with generation ID 8408 +[06/Mar/2015:19:09:26 +0100] category=CORE severity=NOTICE msgID=458891 msg=The Directory Server has sent an alert notification generated by class org.opends.server.core.DirectoryServer (alert type org.opends.server.DirectoryServerShutdown, alert ID 458893): The Directory Server has started the shutdown process. The shutdown was initiated by an instance of class org.opends.server.core.DirectoryServerShutdownHook and the reason provided for the shutdown was The Directory Server shutdown hook detected that the JVM is shutting down. This generally indicates that JVM received an external request to stop (e.g., through a kill signal) +[06/Mar/2015:19:09:30 +0100] category=BACKEND severity=NOTICE msgID=9896306 msg=The backend userRoot is now taken offline +[06/Mar/2015:19:09:30 +0100] category=CORE severity=NOTICE msgID=458955 msg=The Directory Server is now stopped +[06/Mar/2015:19:12:06 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381717 msg=Installation Directory: /opt/opendj-2.6.2 +[06/Mar/2015:19:12:06 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381719 msg=Instance Directory: /opt/opendj-2.6.2 +[06/Mar/2015:19:12:06 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381713 msg=JVM Information: 1.7.0_75-b13 by Oracle Corporation, 64-bit architecture, 1862270976 bytes heap size +[06/Mar/2015:19:12:06 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381714 msg=JVM Host: triglav.nlight.eu, running Linux 3.16.0-30-generic amd64, 8372068352 bytes physical memory size, number of processors available 4 +[06/Mar/2015:19:12:06 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381715 msg=JVM Arguments: "-Dorg.opends.server.scriptName=start-ds" +[06/Mar/2015:19:12:07 +0100] category=JEB severity=NOTICE msgID=8847402 msg=The database backend userRoot containing 0 entries has started +[06/Mar/2015:19:12:07 +0100] category=EXTENSIONS severity=NOTICE msgID=1507549 msg=DIGEST-MD5 SASL mechanism using a server fully qualified domain name of: localhost +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=NOTICE msgID=15139020 msg=Replication server RS(9664) started listening for new connections on address 0.0.0.0 port 10989 +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(23955) has connected to replication server RS(9664) for domain "cn=admin data" at localhost/127.0.0.1:10989 with generation ID 113844 +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(17438) has connected to replication server RS(9664) for domain "cn=schema" at localhost/127.0.0.1:10989 with generation ID 8408 +[06/Mar/2015:19:12:08 +0100] category=JEB severity=NOTICE msgID=8847447 msg=Exported 0 entries and skipped 0 in 0 seconds (average rate 0.0/sec) +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(161) has connected to replication server RS(9664) for domain "dc=example,dc=com" at localhost/127.0.0.1:10989 with generation ID 48 +[06/Mar/2015:19:12:08 +0100] category=PROTOCOL severity=NOTICE msgID=2556180 msg=Started listening for new connections on Administration Connector 0.0.0.0 port 10444 +[06/Mar/2015:19:12:08 +0100] category=PROTOCOL severity=NOTICE msgID=2556180 msg=Started listening for new connections on LDAP Connection Handler 0.0.0.0 port 10389 +[06/Mar/2015:19:12:08 +0100] category=CORE severity=NOTICE msgID=458887 msg=The Directory Server has started successfully +[06/Mar/2015:19:12:08 +0100] category=CORE severity=NOTICE msgID=458891 msg=The Directory Server has sent an alert notification generated by class org.opends.server.core.DirectoryServer (alert type org.opends.server.DirectoryServerStarted, alert ID 458887): The Directory Server has started successfully +[06/Mar/2015:19:15:05 +0100] category=BACKEND severity=NOTICE msgID=9896349 msg=Import task 20150306191505950 started execution +[06/Mar/2015:19:15:05 +0100] category=BACKEND severity=NOTICE msgID=9896306 msg=The backend userRoot is now taken offline +[06/Mar/2015:19:15:05 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381717 msg=Installation Directory: /opt/opendj-2.6.2 +[06/Mar/2015:19:15:05 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381719 msg=Instance Directory: /opt/opendj-2.6.2 +[06/Mar/2015:19:15:05 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381713 msg=JVM Information: 1.7.0_75-b13 by Oracle Corporation, 64-bit architecture, 1862270976 bytes heap size +[06/Mar/2015:19:15:05 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381714 msg=JVM Host: triglav.nlight.eu, running Linux 3.16.0-30-generic amd64, 8372068352 bytes physical memory size, number of processors available 4 +[06/Mar/2015:19:15:05 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381715 msg=JVM Arguments: "-Dorg.opends.server.scriptName=start-ds" +[06/Mar/2015:19:15:05 +0100] category=JEB severity=NOTICE msgID=8847546 msg=The amount of free memory available to the import task is 628135236 bytes. The number of phase one buffers required is 320 buffers +[06/Mar/2015:19:15:05 +0100] category=JEB severity=NOTICE msgID=8847568 msg=The amount memory available to the temporary DN cache environment is 414461121 bytes +[06/Mar/2015:19:15:05 +0100] category=JEB severity=NOTICE msgID=8847545 msg=Setting DB cache size to 8388608 bytes and phase one buffer size to to 512804 bytes +[06/Mar/2015:19:15:06 +0100] category=JEB severity=NOTICE msgID=8847533 msg=OpenDJ 2.6.2 starting import (build 20150306161742Z, R-1) +[06/Mar/2015:19:15:06 +0100] category=JEB severity=NOTICE msgID=8847449 msg=Import Thread Count: 8 threads +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847556 msg=The available memory for phase two processing is 628135236 bytes. The read ahead cache size is 512804 bytes calculated using 25 buffers +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index dn.dn phase two started processing 8 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index uid.equality phase two started processing 2 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index entryUUID.equality phase two started processing 7 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index objectClass.equality phase two started processing 6 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index uid.equality phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index aci.presence phase two started processing 1 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index aci.presence phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index cn.substring phase two started processing 3 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index objectClass.equality phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index cn.equality phase two started processing 4 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847538 msg=DN phase two processing completed. Processed 9 DNs +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index sn.substring phase two started processing 3 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index entryUUID.equality phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index uniqueMember.equality phase two started processing 1 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index cn.equality phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index mail.equality phase two started processing 1 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index mail.equality phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index uniqueMember.equality phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index sn.equality phase two started processing 3 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index sn.equality phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index mail.substring phase two started processing 2 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index givenName.equality phase two started processing 1 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index givenName.equality phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index sn.substring phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index telephoneNumber.substring phase two started processing 2 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index telephoneNumber.equality phase two started processing 1 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index telephoneNumber.equality phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847571 msg=Index givenName.substring phase two started processing 1 buffers in 1 batches +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index givenName.substring phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index mail.substring phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index telephoneNumber.substring phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847539 msg=Index cn.substring phase two processing completed +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847569 msg=Total import time was 0 seconds. Phase one processing completed in 0 seconds, phase two processing completed in 0 seconds +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847454 msg=Processed 9 entries, imported 9, skipped 0, rejected 0 and migrated 0 in 0 seconds (average rate 15.0/sec) +[06/Mar/2015:19:15:07 +0100] category=JEB severity=NOTICE msgID=8847536 msg=Import LDIF environment close took 0 seconds +[06/Mar/2015:19:15:08 +0100] category=JEB severity=NOTICE msgID=8847402 msg=The database backend userRoot containing 9 entries has started +[06/Mar/2015:19:15:08 +0100] category=JEB severity=NOTICE msgID=8847447 msg=Exported 9 entries and skipped 0 in 0 seconds (average rate 4500.0/sec) +[06/Mar/2015:19:15:08 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(161) has connected to replication server RS(9664) for domain "dc=example,dc=com" at localhost/127.0.0.1:10989 with generation ID 135297 +[06/Mar/2015:19:15:08 +0100] category=BACKEND severity=NOTICE msgID=9896350 msg=Import task 20150306191505950 finished execution +[06/Mar/2015:19:15:10 +0100] category=BACKEND severity=NOTICE msgID=9896349 msg=Initialize Backend task dsreplication-initialize1 started execution +[06/Mar/2015:19:15:10 +0100] category=SYNC severity=NOTICE msgID=15139025 msg=Starting total update: exporting 9 entries in domain "dc=example,dc=com" from this directory server DS(161) to all remote directory servers +[06/Mar/2015:19:15:10 +0100] category=SYNC severity=SEVERE_ERROR msgID=-1 msg=Domain dc=example,dc=com: the server with serverId=-2 is unreachable In Replication Server=Replication Server 10989 9664 unroutable message =InitializeTargetMsg Details:routing table is empty +[06/Mar/2015:19:15:10 +0100] category=JEB severity=NOTICE msgID=8847447 msg=Exported 9 entries and skipped 0 in 0 seconds (average rate 4500.0/sec) +[06/Mar/2015:19:15:10 +0100] category=SYNC severity=SEVERE_ERROR msgID=-1 msg=Domain dc=example,dc=com: the server with serverId=-2 is unreachable In Replication Server=Replication Server 10989 9664 unroutable message =DoneMsg Details:routing table is empty +[06/Mar/2015:19:15:10 +0100] category=SYNC severity=NOTICE msgID=15139026 msg=Finished total update: exported domain "dc=example,dc=com" from this directory server DS(161) to all remote directory servers. +[06/Mar/2015:19:15:10 +0100] category=BACKEND severity=NOTICE msgID=9896350 msg=Initialize Backend task dsreplication-initialize1 finished execution +[06/Mar/2015:19:15:10 +0100] category=BACKEND severity=NOTICE msgID=9896349 msg=Set Generation ID task dsreplication-reset-generation-id-1 started execution +[06/Mar/2015:19:15:10 +0100] category=BACKEND severity=NOTICE msgID=9896350 msg=Set Generation ID task dsreplication-reset-generation-id-1 finished execution +[06/Mar/2015:19:15:10 +0100] category=SYNC severity=NOTICE msgID=15138894 msg=The generation ID for domain "dc=example,dc=com" has been reset to 135297 +[06/Mar/2015:19:18:45 +0100] category=CORE severity=NOTICE msgID=458891 msg=The Directory Server has sent an alert notification generated by class org.opends.server.core.DirectoryServer (alert type org.opends.server.DirectoryServerShutdown, alert ID 458893): The Directory Server has started the shutdown process. The shutdown was initiated by an instance of class org.opends.server.core.DirectoryServerShutdownHook and the reason provided for the shutdown was The Directory Server shutdown hook detected that the JVM is shutting down. This generally indicates that JVM received an external request to stop (e.g., through a kill signal) +[06/Mar/2015:19:18:51 +0100] category=BACKEND severity=NOTICE msgID=9896306 msg=The backend userRoot is now taken offline +[06/Mar/2015:19:18:51 +0100] category=CORE severity=NOTICE msgID=458955 msg=The Directory Server is now stopped diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/logs/replication b/infra/test-util/src/main/resources/test-data/opendj.template/logs/replication index e69de29bb2d..33ead2d4a45 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/logs/replication +++ b/infra/test-util/src/main/resources/test-data/opendj.template/logs/replication @@ -0,0 +1,25 @@ +[06/Mar/2015:19:08:47 +0100] category=SYNC severity=NOTICE msgID=15139020 msg=Replication server RS(9664) started listening for new connections on address 0.0.0.0 port 10989 +[06/Mar/2015:19:08:47 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(23955) has connected to replication server RS(9664) for domain "cn=admin data" at localhost/127.0.0.1:10989 with generation ID 113844 +[06/Mar/2015:19:08:47 +0100] category=SYNC severity=INFORMATION msgID=14680271 msg=Replication server RS(9664) has accepted a connection from directory server DS(23955) for domain "cn=admin data" at localhost/127.0.0.1:51609 +[06/Mar/2015:19:08:47 +0100] category=SYNC severity=INFORMATION msgID=14680271 msg=Replication server RS(9664) has accepted a connection from directory server DS(161) for domain "dc=example,dc=com" at localhost/127.0.0.1:51611 +[06/Mar/2015:19:08:47 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(161) has connected to replication server RS(9664) for domain "dc=example,dc=com" at localhost/127.0.0.1:10989 with generation ID 48 +[06/Mar/2015:19:08:48 +0100] category=SYNC severity=INFORMATION msgID=14680271 msg=Replication server RS(9664) has accepted a connection from directory server DS(17438) for domain "cn=schema" at localhost/127.0.0.1:51613 +[06/Mar/2015:19:08:48 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(17438) has connected to replication server RS(9664) for domain "cn=schema" at localhost/127.0.0.1:10989 with generation ID 8408 +[06/Mar/2015:19:09:26 +0100] category=SYNC severity=MILD_WARNING msgID=14745663 msg=Replication server RS(9664) at localhost/127.0.0.1:10989 has closed the connection to this directory server DS(17438). This directory server will now try to connect to another replication server in order to receive changes for the domain "cn=schema" +[06/Mar/2015:19:09:26 +0100] category=SYNC severity=MILD_WARNING msgID=14745663 msg=Replication server RS(9664) at localhost/127.0.0.1:10989 has closed the connection to this directory server DS(23955). This directory server will now try to connect to another replication server in order to receive changes for the domain "cn=admin data" +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=NOTICE msgID=15139020 msg=Replication server RS(9664) started listening for new connections on address 0.0.0.0 port 10989 +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=INFORMATION msgID=14680271 msg=Replication server RS(9664) has accepted a connection from directory server DS(23955) for domain "cn=admin data" at localhost/127.0.0.1:51666 +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(23955) has connected to replication server RS(9664) for domain "cn=admin data" at localhost/127.0.0.1:10989 with generation ID 113844 +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=INFORMATION msgID=14680271 msg=Replication server RS(9664) has accepted a connection from directory server DS(17438) for domain "cn=schema" at localhost/127.0.0.1:51668 +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(17438) has connected to replication server RS(9664) for domain "cn=schema" at localhost/127.0.0.1:10989 with generation ID 8408 +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=INFORMATION msgID=14680271 msg=Replication server RS(9664) has accepted a connection from directory server DS(161) for domain "dc=example,dc=com" at localhost/127.0.0.1:51670 +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(161) has connected to replication server RS(9664) for domain "dc=example,dc=com" at localhost/127.0.0.1:10989 with generation ID 48 +[06/Mar/2015:19:15:05 +0100] category=SYNC severity=MILD_WARNING msgID=14745663 msg=Replication server RS(9664) at localhost/127.0.0.1:10989 has closed the connection to this directory server DS(161). This directory server will now try to connect to another replication server in order to receive changes for the domain "dc=example,dc=com" +[06/Mar/2015:19:15:08 +0100] category=SYNC severity=INFORMATION msgID=14680271 msg=Replication server RS(9664) has accepted a connection from directory server DS(161) for domain "dc=example,dc=com" at localhost/127.0.0.1:51702 +[06/Mar/2015:19:15:08 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(161) has connected to replication server RS(9664) for domain "dc=example,dc=com" at localhost/127.0.0.1:10989 with generation ID 135297 +[06/Mar/2015:19:15:10 +0100] category=SYNC severity=NOTICE msgID=15139025 msg=Starting total update: exporting 9 entries in domain "dc=example,dc=com" from this directory server DS(161) to all remote directory servers +[06/Mar/2015:19:15:10 +0100] category=SYNC severity=NOTICE msgID=15139026 msg=Finished total update: exported domain "dc=example,dc=com" from this directory server DS(161) to all remote directory servers. +[06/Mar/2015:19:15:10 +0100] category=SYNC severity=MILD_ERROR msgID=14876751 msg=The following error has been received : Domain dc=example,dc=com: the server with serverId=-2 is unreachable In Replication Server=Replication Server 10989 9664 unroutable message =DoneMsg Details:routing table is empty +[06/Mar/2015:19:15:10 +0100] category=SYNC severity=NOTICE msgID=15138894 msg=The generation ID for domain "dc=example,dc=com" has been reset to 135297 +[06/Mar/2015:19:18:45 +0100] category=SYNC severity=MILD_WARNING msgID=14745663 msg=Replication server RS(9664) at localhost/127.0.0.1:10989 has closed the connection to this directory server DS(161). This directory server will now try to connect to another replication server in order to receive changes for the domain "dc=example,dc=com" +[06/Mar/2015:19:18:45 +0100] category=SYNC severity=MILD_WARNING msgID=14745663 msg=Replication server RS(9664) at localhost/127.0.0.1:10989 has closed the connection to this directory server DS(17438). This directory server will now try to connect to another replication server in order to receive changes for the domain "cn=schema" diff --git a/infra/test-util/src/main/resources/test-data/opendj.template/logs/server.out b/infra/test-util/src/main/resources/test-data/opendj.template/logs/server.out index e69de29bb2d..cea524cc57c 100644 --- a/infra/test-util/src/main/resources/test-data/opendj.template/logs/server.out +++ b/infra/test-util/src/main/resources/test-data/opendj.template/logs/server.out @@ -0,0 +1,17 @@ +[06/Mar/2015:19:12:05 +0100] category=CORE severity=NOTICE msgID=458886 msg=OpenDJ 2.6.2 (build 20150306161742Z, R-1) starting up +[06/Mar/2015:19:12:06 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381717 msg=Installation Directory: /opt/opendj-2.6.2 +[06/Mar/2015:19:12:06 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381719 msg=Instance Directory: /opt/opendj-2.6.2 +[06/Mar/2015:19:12:06 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381713 msg=JVM Information: 1.7.0_75-b13 by Oracle Corporation, 64-bit architecture, 1862270976 bytes heap size +[06/Mar/2015:19:12:06 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381714 msg=JVM Host: triglav.nlight.eu, running Linux 3.16.0-30-generic amd64, 8372068352 bytes physical memory size, number of processors available 4 +[06/Mar/2015:19:12:06 +0100] category=RUNTIME_INFORMATION severity=NOTICE msgID=20381715 msg=JVM Arguments: "-Dorg.opends.server.scriptName=start-ds" +[06/Mar/2015:19:12:07 +0100] category=JEB severity=NOTICE msgID=8847402 msg=The database backend userRoot containing 0 entries has started +[06/Mar/2015:19:12:07 +0100] category=EXTENSIONS severity=NOTICE msgID=1507549 msg=DIGEST-MD5 SASL mechanism using a server fully qualified domain name of: localhost +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=NOTICE msgID=15139020 msg=Replication server RS(9664) started listening for new connections on address 0.0.0.0 port 10989 +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(23955) has connected to replication server RS(9664) for domain "cn=admin data" at localhost/127.0.0.1:10989 with generation ID 113844 +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(17438) has connected to replication server RS(9664) for domain "cn=schema" at localhost/127.0.0.1:10989 with generation ID 8408 +[06/Mar/2015:19:12:08 +0100] category=JEB severity=NOTICE msgID=8847447 msg=Exported 0 entries and skipped 0 in 0 seconds (average rate 0.0/sec) +[06/Mar/2015:19:12:08 +0100] category=SYNC severity=NOTICE msgID=15138878 msg=Directory server DS(161) has connected to replication server RS(9664) for domain "dc=example,dc=com" at localhost/127.0.0.1:10989 with generation ID 48 +[06/Mar/2015:19:12:08 +0100] category=PROTOCOL severity=NOTICE msgID=2556180 msg=Started listening for new connections on Administration Connector 0.0.0.0 port 10444 +[06/Mar/2015:19:12:08 +0100] category=PROTOCOL severity=NOTICE msgID=2556180 msg=Started listening for new connections on LDAP Connection Handler 0.0.0.0 port 10389 +[06/Mar/2015:19:12:08 +0100] category=CORE severity=NOTICE msgID=458887 msg=The Directory Server has started successfully +[06/Mar/2015:19:12:08 +0100] category=CORE severity=NOTICE msgID=458891 msg=The Directory Server has sent an alert notification generated by class org.opends.server.core.DirectoryServer (alert type org.opends.server.DirectoryServerStarted, alert ID 458887): The Directory Server has started successfully diff --git a/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/AbstractLdapConnTest.java b/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/AbstractLdapConnTest.java index 4741ecba7f5..6054d02463e 100644 --- a/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/AbstractLdapConnTest.java +++ b/testing/conntest/src/test/java/com/evolveum/midpoint/testing/conntest/AbstractLdapConnTest.java @@ -29,6 +29,7 @@ import javax.xml.namespace.QName; +import com.evolveum.midpoint.common.refinery.RefinedResourceSchema; import com.evolveum.midpoint.model.impl.sync.ReconciliationTaskHandler; import com.evolveum.midpoint.util.aspect.ProfilingDataManager; @@ -39,6 +40,7 @@ import org.testng.AssertJUnit; import org.testng.annotations.AfterClass; import org.testng.annotations.Test; +import org.apache.commons.lang.mutable.MutableInt; import org.apache.directory.api.ldap.model.cursor.CursorException; import org.apache.directory.api.ldap.model.cursor.EntryCursor; import org.apache.directory.api.ldap.model.entry.Entry; @@ -53,11 +55,18 @@ import com.evolveum.midpoint.model.test.AbstractModelIntegrationTest; import com.evolveum.midpoint.prism.PrismObject; +import com.evolveum.midpoint.prism.path.ItemPath; +import com.evolveum.midpoint.prism.query.EqualFilter; +import com.evolveum.midpoint.prism.query.ObjectFilter; import com.evolveum.midpoint.prism.query.ObjectQuery; import com.evolveum.midpoint.prism.util.PrismTestUtil; import com.evolveum.midpoint.schema.ResultHandler; +import com.evolveum.midpoint.schema.SearchResultList; import com.evolveum.midpoint.schema.constants.MidPointConstants; +import com.evolveum.midpoint.schema.constants.SchemaConstants; +import com.evolveum.midpoint.schema.processor.ObjectClassComplexTypeDefinition; import com.evolveum.midpoint.schema.processor.ResourceAttribute; +import com.evolveum.midpoint.schema.processor.ResourceAttributeDefinition; import com.evolveum.midpoint.schema.result.OperationResult; import com.evolveum.midpoint.schema.util.ObjectQueryUtil; import com.evolveum.midpoint.schema.util.ShadowUtil; @@ -65,6 +74,8 @@ import com.evolveum.midpoint.test.util.MidPointTestConstants; import com.evolveum.midpoint.test.util.TestUtil; import com.evolveum.midpoint.util.exception.ObjectAlreadyExistsException; +import com.evolveum.midpoint.util.logging.Trace; +import com.evolveum.midpoint.util.logging.TraceManager; import com.evolveum.midpoint.xml.ns._public.common.common_3.AssignmentPolicyEnforcementType; import com.evolveum.midpoint.xml.ns._public.common.common_3.ResourceType; import com.evolveum.midpoint.xml.ns._public.common.common_3.RoleType; @@ -81,6 +92,8 @@ @DirtiesContext(classMode = ClassMode.AFTER_CLASS) public abstract class AbstractLdapConnTest extends AbstractModelIntegrationTest { + private static final Trace LOGGER = TraceManager.getTrace(AbstractLdapConnTest.class); + public static final File TEST_DIR = new File(MidPointTestConstants.TEST_RESOURCES_DIR, "ldap"); public static final File SYSTEM_CONFIGURATION_FILE = new File(COMMON_DIR, "system-configuration.xml"); @@ -114,10 +127,15 @@ public abstract class AbstractLdapConnTest extends AbstractModelIntegrationTest private static final String ATTRIBUTE_ENTRY_UUID = "entryUuid"; + protected static final String ACCOUNT_0_UID = "u00000000"; + protected static final String ACCOUNT_0_CN = "Riwibmix Juvotut (00000000)"; + protected ResourceType resourceType; protected PrismObject resource; private static String stopCommand; + + protected String account0Oid; @Autowired private ReconciliationTaskHandler reconciliationTaskHandler; @@ -152,6 +170,11 @@ public static void stopResources() throws Exception { protected abstract File getResourceFile(); + protected QName getAccountObjectClass() { + return new QName(MidPointConstants.NS_RI, "AccountObjectClass"); + } + + protected abstract String getLdapServerHost(); protected abstract int getLdapServerPort(); @@ -237,9 +260,68 @@ public void test010Connection() throws Exception { TestUtil.assertSuccess("Test connection failed",operationResult); } + // TODO: search + + @Test + public void test100SeachAccount0ByLdapUid() throws Exception { + final String TEST_NAME = "test100SeachAccount0ByLdapUid"; + TestUtil.displayTestTile(this, TEST_NAME); + + // GIVEN + Task task = taskManager.createTaskInstance(this.getClass().getName() + "." + TEST_NAME); + OperationResult result = task.getResult(); + + RefinedResourceSchema refinedSchema = RefinedResourceSchema.getRefinedSchema(resource); + ObjectClassComplexTypeDefinition objectClassDefinition = refinedSchema.findObjectClassDefinition(getAccountObjectClass()); + ResourceAttributeDefinition ldapUidAttrDef = objectClassDefinition.findAttributeDefinition("uid"); + + ObjectQuery query = ObjectQueryUtil.createResourceAndAccountQuery(getResourceOid(), getAccountObjectClass(), prismContext); + ObjectFilter additionalFilter = EqualFilter.createEqual( + new ItemPath(ShadowType.F_ATTRIBUTES, ldapUidAttrDef.getName()), ldapUidAttrDef, ACCOUNT_0_UID); + ObjectQueryUtil.filterAnd(query.getFilter(), additionalFilter); + + // WHEN + TestUtil.displayWhen(TEST_NAME); + SearchResultList> shadows = modelService.searchObjects(ShadowType.class, query, null, task, result); + + assertEquals("Unexpected search result: "+shadows, 1, shadows.size()); + + // TODO: check shadow + } + @Test - public void test100AssignAccountToBarbossa() throws Exception { - final String TEST_NAME = "test100AssignAccountToBarbossa"; + public void test150SeachAllAccounts() throws Exception { + final String TEST_NAME = "test150SeachAllAccounts"; + TestUtil.displayTestTile(this, TEST_NAME); + + // GIVEN + Task task = taskManager.createTaskInstance(this.getClass().getName() + "." + TEST_NAME); + OperationResult result = task.getResult(); + + ObjectQuery query = ObjectQueryUtil.createResourceAndAccountQuery(getResourceOid(), getAccountObjectClass(), prismContext); + + final MutableInt count = new MutableInt(0); + ResultHandler handler = new ResultHandler() { + @Override + public boolean handle(PrismObject object, OperationResult parentResult) { + LOGGER.trace("Found {}", object); + count.increment(); + return true; + } + }; + + // WHEN + TestUtil.displayWhen(TEST_NAME); + modelService.searchObjectsIterative(ShadowType.class, query, handler, null, task, result); + + assertEquals("Unexpected number of accounts", 123, count.getValue()); + + // TODO: count shadows + } + + @Test + public void test200AssignAccountToBarbossa() throws Exception { + final String TEST_NAME = "test200AssignAccountToBarbossa"; TestUtil.displayTestTile(this, TEST_NAME); // GIVEN @@ -266,9 +348,11 @@ public void test100AssignAccountToBarbossa() throws Exception { assertEquals("Wrong ICFS UID", entry.get(ATTRIBUTE_ENTRY_UUID).getString(), icfsUid); } + // TODO: modify the account + @Test - public void test190UnAssignAccountBarbossa() throws Exception { - final String TEST_NAME = "test190UnAssignAccountBarbossa"; + public void test299UnAssignAccountBarbossa() throws Exception { + final String TEST_NAME = "test299UnAssignAccountBarbossa"; TestUtil.displayTestTile(this, TEST_NAME); // GIVEN @@ -290,7 +374,7 @@ public void test190UnAssignAccountBarbossa() throws Exception { assertNoLinkedAccount(user); } - + // TODO: sync tests // private Entry createEntry(String uid, String name) throws IOException { // StringBuilder sb = new StringBuilder(); diff --git a/testing/conntest/src/test/resources/common/resource-openldap.xml b/testing/conntest/src/test/resources/common/resource-openldap.xml index 9abee411053..d475df2a55e 100644 --- a/testing/conntest/src/test/resources/common/resource-openldap.xml +++ b/testing/conntest/src/test/resources/common/resource-openldap.xml @@ -1,6 +1,6 @@ - - - 4.0.0 - midPoint distribution package for WebLogic Server - com.evolveum.midpoint.dist - midPoint-weblogic - ear - 3.2-SNAPSHOT - midPoint distribution for WebLogic Server - - https://github.com/Evolveum/midpoint.git - git@github.com:Evolveum/midpoint.git - https://fisheye.evolveum.com/browse/midPoint - - - midpoint - - - - - - com.evolveum.midpoint.gui - admin-gui - 3.1 - war - - - - - weblogic - - false - - - - - maven-ear-plugin - - midPoint - src/main/app - - - com.evolveum.midpoint.gui - admin-gui - midpoint.war - /midpoint - - - - - - - - - + + + + 4.0.0 + midPoint distribution package for WebLogic Server + com.evolveum.midpoint.dist + midPoint-weblogic + ear + 3.2-SNAPSHOT + midPoint distribution for WebLogic Server + + https://github.com/Evolveum/midpoint.git + git@github.com:Evolveum/midpoint.git + https://fisheye.evolveum.com/browse/midPoint + + + midpoint + + + + + + com.evolveum.midpoint.gui + admin-gui + 3.2-SNAPSHOT + war + + + + + weblogic + + false + + + + + maven-ear-plugin + 2.10 + + midPoint + ${basedir}/src/main/app + + + com.evolveum.midpoint.gui + admin-gui + midpoint.war + /midpoint + + + + + + + + + diff --git a/weblogic-build/src/main/app/META-INF/weblogic-application.xml b/weblogic-build/src/main/app/META-INF/weblogic-application.xml index 1d5ede3dc11..f8e4e0b2e89 100644 --- a/weblogic-build/src/main/app/META-INF/weblogic-application.xml +++ b/weblogic-build/src/main/app/META-INF/weblogic-application.xml @@ -1,75 +1,78 @@ - - - - - com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl - net.sf.saxon.dom.DocumentBuilderFactoryImpl - net.sf.saxon.TransformerFactoryImpl - - - - webapp.encoding.default - UTF-8 - - - - org.slf4j.* - ch.qos.logback.* - org.apache.commons.logging.* - - - - org.apache.commons.* - - antlr.* - org.springframework.* - - javax.servlet.jsp.jstl.* - - javax.jws.* - javax.ws.* - - - javax.xml.stream.* - - - org.apache.xmlcommons.* - org.apache.xml.serializer.* - net.sf.saxon.* - org.apache.xalan.* - com.ctc.wstx.* - org.codehaus.* - - org.mozilla.* - org.joda.* - - - META-INF/services/javax.ws.rs.ext.RuntimeDelegate - META-INF/services/javax.xml.bind.JAXBContext - META-INF/services/javax.xml.datatype.DatatypeFactory - META-INF/services/javax.xml.parsers.DocumentBuilderFactory - META-INF/services/javax.xml.parsers.SAXParserFactory - META-INF/services/javax.xml.stream.XMLEventFactory - META-INF/services/javax.xml.stream.XMLInputFactory - META-INF/services/javax.xml.stream.XMLOutputFactory - META-INF/services/javax.xml.transform.TransformerFactory - META-INF/services/javax.xml.validation.SchemaFactory - META-INF/services/javax.xml.ws.spi.Provider - META-INF/services/javax.xml.xpath.XPathFactory - META-INF/services/org.apache.cxf.bus.factory - META-INF/services/org.apache.xalan.extensions.bsf.BSFManager - META-INF/services/org.apache.xml.dtm.DTMManager - META-INF/services/org.codehaus.stax2.validation.XMLValidationSchemaFactory.dtd - META-INF/services/org.codehaus.stax2.validation.XMLValidationSchemaFactory.relaxng - META-INF/services/org.codehaus.stax2.validation.XMLValidationSchemaFactory.w3c - META-INF/services/org.osgi.framework.launch.FrameworkFactory - META-INF/services/org.relaxng.datatype.DatatypeLibraryFactory - META-INF/services/org.w3c.dom.DOMImplementationSourceList - META-INF/services/org.xml.sax.driver - - META-INF/services/com.sun.xml.ws.spi.db.BindingContextFactory - - + + + + + com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl + net.sf.saxon.dom.DocumentBuilderFactoryImpl + net.sf.saxon.TransformerFactoryImpl + + + + webapp.encoding.default + UTF-8 + + + + org.slf4j.* + ch.qos.logback.* + org.apache.commons.logging.* + + + + org.apache.commons.* + + antlr.* + org.springframework.* + + javax.servlet.jsp.jstl.* + + javax.jws.* + javax.ws.* + + + javax.xml.stream.* + + + org.apache.xmlcommons.* + org.apache.xml.serializer.* + net.sf.saxon.* + org.apache.xalan.* + com.ctc.wstx.* + org.codehaus.* + + org.mozilla.* + org.joda.* + + javax.persistence.* + org.python.* + + + META-INF/services/javax.ws.rs.ext.RuntimeDelegate + META-INF/services/javax.xml.bind.JAXBContext + META-INF/services/javax.xml.datatype.DatatypeFactory + META-INF/services/javax.xml.parsers.DocumentBuilderFactory + META-INF/services/javax.xml.parsers.SAXParserFactory + META-INF/services/javax.xml.stream.XMLEventFactory + META-INF/services/javax.xml.stream.XMLInputFactory + META-INF/services/javax.xml.stream.XMLOutputFactory + META-INF/services/javax.xml.transform.TransformerFactory + META-INF/services/javax.xml.validation.SchemaFactory + META-INF/services/javax.xml.ws.spi.Provider + META-INF/services/javax.xml.xpath.XPathFactory + META-INF/services/org.apache.cxf.bus.factory + META-INF/services/org.apache.xalan.extensions.bsf.BSFManager + META-INF/services/org.apache.xml.dtm.DTMManager + META-INF/services/org.codehaus.stax2.validation.XMLValidationSchemaFactory.dtd + META-INF/services/org.codehaus.stax2.validation.XMLValidationSchemaFactory.relaxng + META-INF/services/org.codehaus.stax2.validation.XMLValidationSchemaFactory.w3c + META-INF/services/org.osgi.framework.launch.FrameworkFactory + META-INF/services/org.relaxng.datatype.DatatypeLibraryFactory + META-INF/services/org.w3c.dom.DOMImplementationSourceList + META-INF/services/org.xml.sax.driver + + META-INF/services/com.sun.xml.ws.spi.db.BindingContextFactory + +