Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dragoș Haiduc
OpenLDAP
Commits
0b9c818a
Commit
0b9c818a
authored
23 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Import dbsync
parent
4118c99f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/man/man5/slapd.conf.5
+31
-0
31 additions, 0 deletions
doc/man/man5/slapd.conf.5
with
31 additions
and
0 deletions
doc/man/man5/slapd.conf.5
+
31
−
0
View file @
0b9c818a
...
@@ -593,11 +593,42 @@ method, this option is ignored without comment. The default is 100000 bytes.
...
@@ -593,11 +593,42 @@ method, this option is ignored without comment. The default is 100000 bytes.
.B dbnolocking
.B dbnolocking
Specify that no database locking should be performed.
Specify that no database locking should be performed.
Enabling this option may improve performance at the expense of data security.
Enabling this option may improve performance at the expense of data security.
Do NOT run any slap tools while slapd is running.
.TP
.B dbnosync
.B dbnosync
Specify that on-disk database contents should not be immediately
Specify that on-disk database contents should not be immediately
synchronized with in memory changes. Enabling this option may improve
synchronized with in memory changes. Enabling this option may improve
performance at the expense of data security.
performance at the expense of data security.
.TP
.TP
.B dbsync <frequency> <maxdelays> <delayinterval>
Flush dirty database buffers to disk every
.B <seconds>
seconds. Implies
.B dbnosync
(ie. indvidual updates are no longer written to disk). It attempts to avoid
syncs during periods of peak activity by waiting
.B <delayinterval>
seconds if the server is busy, repeating this delay up to
.B <maxdelays>
times before proceeding.
It is an attempt to provide higher write performance with some amount of data
security. Note that it may still be possible to get an inconsistent
database if the underlying engine fills its cache and writes out individual
pages and slapd crashes or is killed before the next sync.
.B <maxdelays>
and
.B <delayinterval>
are optional and default to
.B 12
and
.B 5
respectively, giving a total elapsed delay of 60 seconds before a sync
will occur.
.B <maxdelays>
may be zero, and
.B <delayinterval>
must be 1 or greater.
.TP
.B directory <directory>
.B directory <directory>
Specify the directory where the LDBM files containing this database and
Specify the directory where the LDBM files containing this database and
associated indexes live. A separate directory must be specified for
associated indexes live. A separate directory must be specified for
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment