Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Compare Revisions
2c9ef2d1ee97a0be5ca5308362aa9a68a50f1132...35f60801b889e999c699fa63d096828472b751ed
Commits (2)
ITS
#9728
- Update documentation on lastbind-precision
· d31560db
Quanah Gibson-Mount
authored
Oct 28, 2021
d31560db
ITS
#9728
· 35f60801
Quanah Gibson-Mount
authored
Nov 03, 2021
35f60801
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
35f60801
...
@@ -6,6 +6,8 @@ OpenLDAP 2.6.1 Engineering
...
@@ -6,6 +6,8 @@ OpenLDAP 2.6.1 Engineering
Build Environment
Build Environment
Fix test022 to preserve DELAY search output (ITS#9718)
Fix test022 to preserve DELAY search output (ITS#9718)
Fix slapd-watcher to allow startup when servers are down (ITS#9727)
Fix slapd-watcher to allow startup when servers are down (ITS#9727)
Documentation
Fixed slapd.conf(5)/slapd-config(5) documentation on lastbind-precision (ITS#9728)
OpenLDAP 2.6.0 Release (2021/10/25)
OpenLDAP 2.6.0 Release (2021/10/25)
Initial release for "general use".
Initial release for "general use".
doc/man/man5/slapd-config.5
View file @
35f60801
...
@@ -1495,11 +1495,13 @@ Controls whether
...
@@ -1495,11 +1495,13 @@ Controls whether
will automatically maintain the pwdLastSuccess attribute for
will automatically maintain the pwdLastSuccess attribute for
entries. By default, olcLastBind is FALSE.
entries. By default, olcLastBind is FALSE.
.TP
.TP
.B olcLastBindPrecision: <number>
.B olcLastBindPrecision: <integer>
If olcLastBind is enabled, a new value is written only if the
If olcLastBind is enabled, specifies how frequently pwdLastSuccess
current one is more than
will be updated. More than
.B number
.B integer
seconds in the past.
seconds must have passed since the last successful bind. In a
replicated environment with frequent bind activity it may be
useful to set this to a large value.
.TP
.TP
.B olcLimits: <selector> <limit> [<limit> [...]]
.B olcLimits: <selector> <limit> [<limit> [...]]
Specify time and size limits based on the operation's initiator or
Specify time and size limits based on the operation's initiator or
...
...
doc/man/man5/slapd.conf.5
View file @
35f60801
...
@@ -1398,11 +1398,13 @@ Controls whether
...
@@ -1398,11 +1398,13 @@ Controls whether
will automatically maintain the pwdLastSuccess attribute for
will automatically maintain the pwdLastSuccess attribute for
entries. By default, lastbind is off.
entries. By default, lastbind is off.
.TP
.TP
.B lastbind-precision <number>
.B lastbind-precision <integer>
If lastbind is enabled, a new value is written only if the
If lastbind is enabled, specifies how frequently pwdLastSuccess
current one is more than
will be updated. More than
.B number
.B integer
seconds in the past.
seconds must have passed since the last successful bind. In a
replicated environment with frequent bind activity it may be
useful to set this to a large value.
.TP
.TP
.B limits <selector> <limit> [<limit> [...]]
.B limits <selector> <limit> [<limit> [...]]
Specify time and size limits based on the operation's initiator or
Specify time and size limits based on the operation's initiator or
...
...