-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathmongodb-parameters.5
7678 lines (7678 loc) · 207 KB
/
mongodb-parameters.5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.TH mongodb-parameters 5
.SH MONGODB SERVER PARAMETERS
.SH SYNOPSIS
MongoDB provides a number of configuration options that you can set
using:
.RS
.IP \(bu 2
the \fBsetParameter\f1\f1 command:
.IP
.EX
db.adminCommand( { setParameter: 1, <parameter>: <value> } )
.EE
.IP \(bu 2
the \fBsetParameter\f1\f1 configuration setting:
.IP
.EX
setParameter:
<parameter1>: <value1>
...
.EE
.IP \(bu 2
the \fB\-\-setParameter\f1 command\-line option for \fBmongod\f1\f1
and \fBmongos\f1\f1:
.IP
.EX
mongod \-\-setParameter <parameter>=<value>
mongos \-\-setParameter <parameter>=<value>
.EE
.RE
.PP
For additional configuration options, see
\fBConfiguration File Options\f1, \fBmongod\f1\f1 and
\fBmongos\f1\f1\&.
.SH PARAMETERS
.SS AUTHENTICATION PARAMETERS
.PP
\fBauthenticationMechanisms\f1
.RS
.PP
Available for both \fBmongod\f1\f1 and \fBmongos\f1\f1\&.
.PP
Specifies the list of authentication mechanisms the server accepts. Set
this to one or more of the following values. If you specify multiple
values, use a comma\-separated list and no spaces. For descriptions
of the authentication mechanisms, see \fBAuthentication\f1\&.
.RS
.IP \(bu 2
.RS
.IP \(bu 4
Value
.IP \(bu 4
Description
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBSCRAM\-SHA\-1\f1
.IP \(bu 4
RFC 5802 (https://tools.ietf.org/html/rfc5802) standard
Salted Challenge Response Authentication Mechanism using the SHA\-1
hash function.
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBSCRAM\-SHA\-256\f1
.IP \(bu 4
RFC 7677 (https://tools.ietf.org/html/rfc7677) standard
Salted Challenge Response Authentication Mechanism using the SHA\-256
hash function.
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBMONGODB\-X509\f1
.IP \(bu 4
MongoDB TLS/SSL certificate authentication.
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBGSSAPI\f1 (Kerberos)
.IP \(bu 4
External authentication using Kerberos. This mechanism is
available only in MongoDB Enterprise (http://www.mongodb.com/products/mongodb\-enterprise\-advanced?tck=docs_server)\&.
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBPLAIN\f1 (LDAP SASL)
.IP \(bu 4
External authentication using LDAP. You can also use \fBPLAIN\f1
for authenticating in\-database users. \fBPLAIN\f1 transmits
passwords in plain text. This mechanism is available only in
MongoDB Enterprise (http://www.mongodb.com/products/mongodb\-enterprise\-advanced?tck=docs_server)\&.
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBMONGODB\-OIDC\f1
.IP \(bu 4
OpenID Connect is an authentication layer built on top of OAuth2. This mechanism
is available only in MongoDB Enterprise (http://www.mongodb.com/products/mongodb\-enterprise\-advanced?tck=docs_server)\&.
.RE
.RE
.PP
This parameter is only available at startup. To set the
parameter, use the \fBsetParameter\f1\f1 setting.
.PP
For example, to specify both \fBPLAIN\f1 and \fBSCRAM\-SHA\-256\f1 as the
authentication mechanisms, use the following command:
.PP
.EX
mongod \-\-setParameter authenticationMechanisms=PLAIN,SCRAM\-SHA\-256 \-\-auth
.EE
.RE
.PP
\fBawsSTSRetryCount\f1
.RS
.PP
In previous versions, AWS IAM authentication retried only when the
server returned an HTTP 500 error.
.PP
Available for both \fBmongod\f1\f1 and \fBmongos\f1\f1\&.
.PP
\fIType\f1: integer
.PP
\fIDefault\f1: 2
.PP
For MongoDB deployments using AWS IAM credentials (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access\-keys.html) or AWS IAM environment variables (https://docs.aws.amazon.com/cli/latest/userguide/cli\-configure\-envvars.html#envvars\-list)\&.
.PP
Maximum number of AWS IAM authentication retries after a connection
failure.
.PP
The following example sets \fBawsSTSRetryCount\f1\f1 to \fB15\f1
retries:
.PP
.EX
mongod \-\-setParameter awsSTSRetryCount=15
.EE
.PP
Alternatively, the following examples uses the
\fBsetParameter\f1\f1 command within \fBmongosh\f1\f1:
.PP
.EX
db.adminCommand( { setParameter: 1, awsSTSRetryCount: 15 } )
.EE
.RE
.PP
\fBclusterAuthMode\f1
.RS
.PP
Available for both \fBmongod\f1\f1 and \fBmongos\f1\f1\&.
.PP
Set the \fBclusterAuthMode\f1\f1 to either \fBsendX509\f1 or
\fBx509\f1\&. Useful during \fBrolling upgrade to use x509 for
membership authentication\f1
to minimize downtime.
.PP
For more information about TLS/SSL and MongoDB, see
\fBConfigure mongod\f1 and mongos\f1 for TLS/SSL\f1 and
\fBTLS/SSL Configuration for Clients\f1 .
.PP
This parameter is only available at runtime. To set the
parameter, use the \fBsetParameter\f1\f1 command.
.PP
.EX
db.adminCommand( { setParameter: 1, clusterAuthMode: "sendX509" } )
.EE
.RE
.PP
\fBenableLocalhostAuthBypass\f1
.RS
.PP
Available for both \fBmongod\f1\f1 and \fBmongos\f1\f1\&.
.PP
\fIDefault\f1: \fBtrue\f1
.PP
Specify \fB0\f1 or \fBfalse\f1 to disable localhost authentication
bypass. Enabled by default.
.PP
This parameter is only available at startup. To set the
parameter, use the \fBsetParameter\f1\f1 setting.
.PP
See \fBLocalhost Exception\f1 for more information.
.RE
.PP
\fBenforceUserClusterSeparation\f1
.RS
.PP
Available for both \fBmongod\f1\f1 and \fBmongos\f1\f1\&.
.PP
Set to \fBfalse\f1 to disable the \fBO/OU/DC\f1 check when
\fBclusterAuthMode\f1 is \fBkeyFile\f1 in your configuration file. This
allows clients possessing member certificates to authenticate as
users stored in the \fB$external\f1 database. The server won\(aqt start if
\fBclusterAuthMode\f1 isn\(aqt \fBkeyFile\f1 in your configuration file.
.PP
To set the \fBenforceUserClusterSeparation\f1 parameter to \fBfalse\f1,
run the following command during startup:
.PP
.EX
mongod \-\-setParameter enforceUserClusterSeparation=false
.EE
.PP
If you set the \fBenforceUserClusterSeparation\f1 parameter to \fBfalse\f1,
the server doesn\(aqt distinguish between client certificates, which
applications use to authenticate, and intra\-cluster certificates, which
have privileged access. This has no effect if your \fBclusterAuthMode\f1
is \fBkeyFile\f1\&. However, if your \fBclusterAuthMode\f1 is \fBx509\f1, user
certificates that use the allowed scheme are conflated with cluster
certificates and granted privileged access.
.PP
Your existing certificates are granted internal privileges if you do the
following:
.RS
.IP \(bu 2
Create a user, with a name allowed by this parameter.
.IP \(bu 2
Set the \fBenforceUserClusterSeparation\f1 parameter to \fBfalse\f1\&.
.IP \(bu 2
Set \fBclusterAuthMode\f1 to \fBx509\f1\&.
.RE
.PP
You must not upgrade from \fBkeyFile\f1 to \fBx509\f1 without validating
that you\(aqve removed users with elevated privileges that the
\fBenforceUserClusterSeparation\f1 flag allowed you to create.
.RE
.PP
\fBKeysRotationIntervalSec\f1
.RS
.PP
\fIDefault\f1: 7776000 seconds (90 days)
.PP
Specifies the number of seconds for which an HMAC signing key (https://en.wikipedia.org/wiki/Hash\-based_message_authentication_code)
is valid before rotating to the next one. This parameter is intended
primarily to facilitate authentication testing.
.PP
This parameter is only available at startup. To set the
parameter, use the \fBsetParameter\f1\f1 setting.
.RE
.PP
\fBldapForceMultiThreadMode\f1
.RS
.PP
\fIDefault\f1: false
.PP
Enables the performance of concurrent LDAP operations.
.PP
Only if you are certain that your instance of \fBlibldap\f1
is safe to use in this mode, enable this flag. You may experience
crashes of the MongoDB process if the \fBlibldap\f1 version you are using
is not thread safe.
.PP
You must use \fBldapForceMultiThreadMode\f1\f1 to use LDAP connection
pool. To enable LDAP connection pool, set \fBldapForceMultiThreadMode\f1\f1
and \fBldapUseConnectionPool\f1\f1 to \fBtrue\f1\&.
.PP
If you have any concerns regarding your MongoDB version, OS version or
libldap version, please contact MongoDB Support.
.RE
.PP
\fBldapQueryPassword\f1
.RS
.PP
Available for both \fBmongod\f1\f1 and \fBmongos\f1\f1\&.
.PP
\fIType\f1: string
.PP
The password used to bind to an LDAP server. You must use
\fBldapQueryUser\f1\f1 with this parameter.
.PP
If not set, mongod or mongos does not attempt to bind to the LDAP server.
.RE
.PP
\fBldapQueryUser\f1
.RS
.PP
Available for both \fBmongod\f1\f1 and \fBmongos\f1\f1\&.
.PP
\fIType\f1: string
.PP
The user that binds to an LDAP server. You must use
\fBldapQueryPassword\f1\f1 with this parameter.
.PP
If not set, mongod or mongos does not attempt to bind to the LDAP server.
.RE
.PP
\fBldapRetryCount\f1
.RS
.PP
Available for both \fBmongod\f1\f1 and \fBmongos\f1\f1\&.
.PP
\fIType\f1: integer
.PP
\fIDefault\f1: 0
.PP
For MongoDB deployments using \fBLDAP Authorization\f1\&.
.PP
Number of operation retries by the server LDAP manager after a
network error.
.PP
For example, the following sets \fBldapRetryCount\f1\f1 to \fB3\f1
seconds:
.PP
.EX
mongod \-\-ldapRetryCount=3
.EE
.PP
Or, if using the \fBsetParameter\f1\f1 command within
\fBmongosh\f1\f1:
.PP
.EX
db.adminCommand( { setParameter: 1, ldapRetryCount: 3 } )
.EE
.RE
.PP
\fBldapUserCacheInvalidationInterval\f1
.RS
.PP
Available for \fBmongod\f1\f1 only.
.PP
Starting in MongoDB 5.2, the update interval for cached user information
retrieved from an LDAP server depends on
\fBldapShouldRefreshUserCacheEntries\f1\f1:
.RS
.IP \(bu 2
If true, use \fBldapUserCacheRefreshInterval\f1\f1\&.
.IP \(bu 2
If false, use \fBldapUserCacheInvalidationInterval\f1\f1\&.
.RE
.PP
For use with MongoDB deployments using
\fBLDAP Authorization\f1\&.
.PP
The interval (in seconds) that the \fBmongod\f1\f1 instance
waits between external user cache flushes. After MongoDB flushes the
external user cache, MongoDB
reacquires authorization data from the LDAP server the
next time an LDAP\-authorized user issues an operation.
.PP
Increasing the value specified increases the amount of time
MongoDB and the LDAP server can be out of sync, but reduces the load on
the LDAP server. Conversely, decreasing the value specified
decreases the time MongoDB and the LDAP server can be out of sync while
increasing the load on the LDAP server.
.PP
Defaults to 30 seconds.
.RE
.PP
\fBldapUserCacheRefreshInterval\f1
.RS
.PP
Available for \fBmongod\f1\f1 only.
.PP
\fIType\f1: integer
.PP
\fIDefault\f1: 30 seconds
.PP
Starting in MongoDB 5.2, the update interval for cached user information
retrieved from an LDAP server depends on
\fBldapShouldRefreshUserCacheEntries\f1\f1:
.RS
.IP \(bu 2
If true, use \fBldapUserCacheRefreshInterval\f1\f1\&.
.IP \(bu 2
If false, use \fBldapUserCacheInvalidationInterval\f1\f1\&.
.RE
.PP
For MongoDB deployments using \fBLDAP Authorization\f1\&.
.PP
The interval in seconds that \fBmongod\f1\f1 waits before
refreshing the cached user information from the LDAP server.
.PP
The maximum interval is 86,400 seconds (24 hours).
.PP
For example, the following sets
\fBldapUserCacheRefreshInterval\f1\f1 to \fB4000\f1 seconds:
.PP
.EX
mongod \-\-setParameter ldapUserCacheRefreshInterval=4000
.EE
.PP
Or, if using the \fBsetParameter\f1\f1 command within
\fBmongosh\f1\f1:
.PP
.EX
db.adminCommand( { setParameter: 1, ldapUserCacheRefreshInterval: 4000 } )
.EE
.RE
.PP
\fBldapUserCacheStalenessInterval\f1
.RS
.PP
Available for \fBmongod\f1\f1 only.
.PP
\fIType\f1: integer
.PP
\fIDefault\f1: 90 seconds
.PP
For MongoDB deployments using \fBLDAP Authorization\f1\&.
.PP
The interval in seconds that \fBmongod\f1\f1 retains the cached
LDAP user information after the last cache refresh.
.PP
If more than \fBldapUserCacheStalenessInterval\f1\f1 seconds
elapse without a successful refresh of the user information from the
LDAP server, then \fBmongod\f1\f1:
.RS
.IP \(bu 2
Invalidates the cached LDAP user information.
.IP \(bu 2
Is unable to authenticate new sessions for LDAP users until
\fBmongod\f1\f1 connects to the LDAP server and
authorizes the LDAP user.
.IP \(bu 2
Authorizes any existing sessions that use previously authenticated
LDAP users if \fBmongod\f1\f1 is unable to connect to the
LDAP server. When \fBmongod\f1\f1 reconnects to the LDAP
server, \fBmongod\f1\f1 ensures the LDAP users are correctly
authorized.
.RE
.PP
The maximum interval is 86,400 seconds (24 hours).
.PP
For example, the following sets
\fBldapUserCacheStalenessInterval\f1\f1 to \fB4000\f1 seconds:
.PP
.EX
mongod \-\-setParameter ldapUserCacheStalenessInterval=4000
.EE
.PP
Or, if using the \fBsetParameter\f1\f1 command within
\fBmongosh\f1\f1:
.PP
.EX
db.adminCommand( { setParameter: 1, ldapUserCacheStalenessInterval: 4000 } )
.EE
.RE
.PP
\fBldapUseConnectionPool\f1
.RS
.PP
Specifies whether MongoDB should use connection pooling when
connecting to the LDAP server for authentication/authorization.
.PP
MongoDB uses the following default values:
.RS
.IP \(bu 2
true on Windows.
.IP \(bu 2
true on Linux where MongoDB Enterprise binaries are linked against
\fBlibldap_r\f1\&.
.IP \(bu 2
false on Linux where MongoDB Enterprise binaries are linked against
\fBlibldap\f1\&.
.RE
.PP
You can only set \fBldapUseConnectionPool\f1\f1 during
start\-up, and cannot change this setting with the
\fBsetParameter\f1\f1 database command.
.RE
.PP
\fBldapConnectionPoolUseLatencyForHostPriority\f1
.RS
.PP
\fIDefault\f1: true
.PP
A boolean that determines whether the LDAP connection pool (see
\fBldapUseConnectionPool\f1\f1) should use latency of the LDAP
servers to determine the connection order (from lowest latency to
highest).
.PP
You can only set
\fBldapConnectionPoolUseLatencyForHostPriority\f1\f1 during
start\-up, and cannot change this setting during run time with the
\fBsetParameter\f1\f1 database command.
.RE
.PP
\fBldapConnectionPoolMinimumConnectionsPerHost\f1
.RS
.PP
\fIDefault\f1: 1
.PP
The minimum number of connections to keep open to each LDAP server.
.PP
You can only set
\fBldapConnectionPoolMinimumConnectionsPerHost\f1\f1 during
start\-up, and cannot change this setting during run time with the
\fBsetParameter\f1\f1 database command.
.RE
.PP
\fBldapConnectionPoolMaximumConnectionsPerHost\f1
.RS
.PP
\fIChanged starting in MongoDB versions 5.0.9 and 6.0.0\f1
Changed default value to \fB2147483647\f1\&. In previous versions, the
default is unset.
.PP
\fIDefault\f1: 2147483647
.PP
The maximum number of connections to keep open to each LDAP server.
.PP
You can only set
\fBldapConnectionPoolMaximumConnectionsPerHost\f1\f1 during
start\-up, and cannot change this setting during run time with the
\fBsetParameter\f1\f1 database command.
.RE
.PP
\fBldapConnectionPoolMaximumConnectionsInProgressPerHost\f1
.RS
.PP
\fIChanged starting in MongoDB versions 5.0.9 and 6.0.0\f1
Changed default value to \fB2\f1\&. In previous versions, the
default is unset.
.PP
\fIDefault\f1: 2
.PP
The maximum number of in\-progress connect operations to each LDAP server.
.PP
You can only set
\fBldapConnectionPoolMaximumConnectionsInProgressPerHost\f1\f1
during start\-up, and cannot change this setting with the
\fBsetParameter\f1\f1 database command.
.RE
.PP
\fBldapConnectionPoolHostRefreshIntervalMillis\f1
.RS
.PP
\fIDefault\f1: 60000
.PP
The number of milliseconds in\-between health checks of the pooled
LDAP connections.
.PP
You can only set
\fBldapConnectionPoolHostRefreshIntervalMillis\f1\f1 during
start\-up, and cannot change this setting with the
\fBsetParameter\f1\f1 database command.
.RE
.PP
\fBldapConnectionPoolIdleHostTimeoutSecs\f1
.RS
.PP
\fIDefault\f1: 300
.PP
The maximum number of seconds that the pooled connections to an LDAP
server can remain idle before being closed.
.PP
You can only set
\fBldapConnectionPoolIdleHostTimeoutSecs\f1\f1 during
start\-up, and cannot change this setting with the
\fBsetParameter\f1\f1 database command.
.RE
.PP
\fBldapShouldRefreshUserCacheEntries\f1
.RS
.PP
Available for \fBmongod\f1\f1 only.
.PP
\fIType\f1: boolean
.PP
\fIDefault\f1: true
.PP
For MongoDB deployments using \fBLDAP Authorization\f1\&.
.PP
Starting in MongoDB 5.2, the update interval for cached user information
retrieved from an LDAP server depends on
\fBldapShouldRefreshUserCacheEntries\f1\f1:
.RS
.IP \(bu 2
If true, use \fBldapUserCacheRefreshInterval\f1\f1\&.
.IP \(bu 2
If false, use \fBldapUserCacheInvalidationInterval\f1\f1\&.
.RE
.PP
You can only set \fBldapShouldRefreshUserCacheEntries\f1\f1
during startup in the \fBconfiguration file\f1\f1 or
with the \fB\-\-setParameter\f1 option on the command line. For example,
the following disables
\fBldapShouldRefreshUserCacheEntries\f1\f1:
.PP
.EX
mongod \-\-setParameter ldapShouldRefreshUserCacheEntries=false
.EE
.RE
.PP
\fBmaxValidateMemoryUsageMB\f1
.RS
.PP
\fIDefault\f1: 200
.PP
The maximum memory usage limit in megabytes for the
\fBvalidate\f1\f1 command. If the limit is exceeded,
\fBvalidate\f1\f1 returns as many results as possible and warns
that not all corruption might be reported because of the limit.
.PP
This parameter is available both at runtime and at startup:
.RS
.IP \(bu 2
To set the parameter at runtime, use the
\fBsetParameter\f1\f1 command
.IP \(bu 2
To set the parameter at startup, use the
\fBsetParameter\f1\f1 setting
.RE
.RE
.PP
\fBoidcIdentityProviders\f1
.RS
.PP
Use this parameter to specify identity provider (IDP) configurations when
using \fBOpenID Connect Authentication\f1\&.
.PP
\fBoidcIdentityProviders\f1 accepts an array of zero or more identity provider
(IDP) configurations. An empty array (default) indicates no OpenID Connect
support is enabled. When more than one IDP is defined, \fBoidcIdentityProviders\f1
uses the \fBmatchPattern\f1 field to select an IDP. Array order determines the
priority and the first IDP is always selected.
.SS OIDCIDENTITYPROVIDERS FIELDS
.RS
.IP \(bu 2
.RS
.IP \(bu 4
Field
.IP \(bu 4
Necessity
.IP \(bu 4
Type
.IP \(bu 4
Description
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBissuer\f1
.IP \(bu 4
Required
.IP \(bu 4
string
.IP \(bu 4
The issuer URI of the IDP that the server should accept tokens from. This
must match the \fBiss\f1 field in any JWT used for authentication.
.IP
If you specify an unreachable issuer URI, MongoDB:
.RS
.IP \(bu 6
Logs a warning.
.IP \(bu 6
Continues server startup, which allows you to update the issuer
URI.
.IP \(bu 6
Reattempts issuer contact. If MongoDB reaches the issuer URI
and validates the access token, authentication succeeds. If
the issuer URI remains unreachable, authentication fails.
.RE
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBauthNamePrefix\f1
.IP \(bu 4
Required
.IP \(bu 4
string
.IP \(bu 4
Unique prefix applied to each generated \fBUserName\f1 and \fBRoleName\f1 used
in authorization. \fBauthNamePrefix\f1 can only contain the
following characters:
.RS
.IP \(bu 6
alphanumeric characters (combination of \fBa\f1 to \fBz\f1 and \fB0\f1 to \fB9\f1)
.IP \(bu 6
hyphens (\fB\-\f1)
.IP \(bu 6
underscores (\fB_\f1)
.RE
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBmatchPattern\f1
.IP \(bu 4
Conditional
.IP \(bu 4
string
.IP \(bu 4
Regex pattern used to determine which IDP should be used. \fBmatchPattern\f1
matches against usernames. Array order determines the priority and the
first IDP is always selected.
.IP
\fBmatchPattern\f1 is required in some configurations, depending on
how the user sets \fBsupportsHumanFlows\f1:
.RS
.IP \(bu 6
When only one IdP has \fBsupportsHumanFlows\f1 set to \fBtrue\f1
(the default), \fBmatchPatterns\f1 is optional.
.IP \(bu 6
When multiple IdP\(aqs have \fBsupportsHumanFlows\f1 set to \fBtrue\f1
(the default), each of these requires \fBmatchPatterns\f1\&.
.IP \(bu 6
\fBmatchPatterns\f1 is optional for any IdP where \fBsupportsHumanFlows\f1
is set to \fBfalse\f1\&.
.RE
.IP
This is not a security mechanism. \fBmatchPattern\f1 serves only as an advisory
to clients. MongoDB accepts tokens issued by the IDP whose principal
names do not match this pattern.
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBclientId\f1
.IP \(bu 4
Conditional
.IP \(bu 4
string
.IP \(bu 4
ID provided by the IDP to identify the client that receives the access tokens.
.IP
Required when \fBsupportsHumanFlows\f1 is set to \fBtrue\f1 (the default).
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBaudience\f1
.IP \(bu 4
Required
.IP \(bu 4
string
.IP \(bu 4
Specifies the application or service that the access token is intended for.
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBrequestScopes\f1
.IP \(bu 4
Optional
.IP \(bu 4
array[ string ]
.IP \(bu 4
Permissions and access levels that MongoDB requests from the IDP.
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBprincipalName\f1
.IP \(bu 4
Optional
.IP \(bu 4
string
.IP \(bu 4
The claim to be extracted from the access token containing MongoDB user
identifiers.
.IP
The default value is \fBsub\f1 (stands for \fBsubject\f1).
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBuseAuthorizationClaim\f1
.IP \(bu 4
Optional
.IP \(bu 4
boolean
.IP \(bu 4
Determines if the \fBauthorizationClaim\f1 is required. The default value is
\fBtrue\f1\&.
.IP
If the \fBuseAuthorizationClaim\f1 field is set to \fBtrue\f1, the server requires
an \fBauthorizationClaim\f1 for the identity provider\(aqs config. This is the
default behavior.
.IP
If the \fBuseAuthorizationClaim\f1 field is set to \fBfalse\f1, the
\fBauthorizationClaim\f1 field is optional (and ignored if provided).
Instead, the server does the following:
.RS
.IP \(bu 6
Searches the token for a claim whose name is listed in the
\fBprincipalNameClaim\f1 field. This is typically named \fBsub\f1\&. For
example:
.IP
\fBsub: "[email protected]"\f1
.IP \(bu 6
Constructs the internal username by concatenating the \fBauthNamePrefix\f1,
a forward slash (\fB/\f1), and the contents of the claim identified by
\fBprincipalNameClaim\f1 within the access token. For example, with a
\fBauthNamePrefix\f1 field value of "mdbinc", the internal username is:
.IP
\fBmdbinc/[email protected]\f1
.IP \(bu 6
Looks for the user with this username and authorizes the client with the
roles:
.IP
.EX
{ user: "mdbinc/[email protected]",
db: "$external" }
.EE
.RE
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBauthorizationClaim\f1
.IP \(bu 4
Conditional
.IP \(bu 4
string
.IP \(bu 4
Required, unless \fBuseAuthorizationClaim\f1 is set to \fBfalse\f1\&.
.IP
Claim extracted from access token that contains MongoDB role names.
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBlogClaims\f1
.IP \(bu 4
Optional
.IP \(bu 4
array[ string ]
.IP \(bu 4
List of access token claims to include in log and audit messages upon
authentication completion.
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBJWKSPollSecs\f1
.IP \(bu 4
Optional
.IP \(bu 4
integer
.IP \(bu 4
Frequency, in seconds, to request an updated JSON Web Key Set (JWKS) from the IDP.
A setting of 0 disables polling.
.RE
.IP \(bu 2
.RS
.IP \(bu 4
\fBsupportsHumanFlows\f1
.IP \(bu 4
Optional
.IP \(bu 4
bool
.IP \(bu 4
Whether the OIDC provider supports human or machine workflows. This
affects the \fBclientId\f1 and \fBmatchPattern\f1 fields.
.IP
You may find it useful to set this field to \fBfalse\f1 with machine workload
IdP\(aqs to allow them to omit the \fBclientId\f1 when it\(aqs unneeded.
.IP
Default: \fBtrue\f1\&.
.RE
.RE
.PP
This parameter is only available at startup. To set the
parameter, use the \fBsetParameter\f1\f1 setting.
.RE
.PP
\fBocspEnabled\f1
.RS
.PP
Available on Linux and macOS.
.PP
\fIDefault\f1: true
.PP
The flag that enables or disables OCSP.
.PP
This parameter is only available at startup. To set the
parameter, use the \fBsetParameter\f1\f1 setting.
.PP
For example, the following disables OCSP:
.PP
.EX
mongod \-\-setParameter ocspEnabled=false ...
.EE
.PP
Starting in MongoDB 6.0, if \fBocspEnabled\f1\f1 is set to \fBtrue\f1 during
initial sync, all nodes must be able to reach the \fBOCSP\f1
responder.
.PP
If a member fails in the \fBSTARTUP2\f1\f1 state, set
\fBtlsOCSPVerifyTimeoutSecs\f1\f1 to a value that is less than \fB5\f1\&.
.RS
.IP \(bu 2
\fBocspValidationRefreshPeriodSecs\f1\f1
.IP \(bu 2
\fBtlsOCSPStaplingTimeoutSecs\f1\f1
.IP \(bu 2
\fBtlsOCSPVerifyTimeoutSecs\f1\f1
.RE
.RE
.PP
\fBocspValidationRefreshPeriodSecs\f1
.RS
.PP
Available on Linux.
.PP
The number of seconds to wait before refreshing the stapled OCSP
status response. Specify a number greater than or equal to 1.
.PP
You can only set \fBocspValidationRefreshPeriodSecs\f1\f1 during
startup in the \fBconfiguration file\f1\f1 or with
the \fB\-\-setParameter\f1 option on the command line. For example, the
following sets the parameter to 3600 seconds:
.PP
.EX
mongod \-\-setParameter ocspValidationRefreshPeriodSecs=3600 ...
.EE
.PP
Starting in MongoDB 5.0, the \fBrotateCertificates\f1\f1 command
and \fBdb.rotateCertificates()\f1\f1 method will also refresh any
stapled OCSP responses.
.RS
.IP \(bu 2
\fBocspEnabled\f1\f1
.IP \(bu 2
\fBtlsOCSPStaplingTimeoutSecs\f1\f1
.IP \(bu 2
\fBtlsOCSPVerifyTimeoutSecs\f1\f1
.RE
.RE
.PP
\fBopensslCipherConfig\f1
.RS
.PP
\fIAvailable on Linux only\f1
.PP
With the use of native TLS/SSL libraries, the parameter
\fBopensslCipherConfig\f1\f1 is supported for Linux/BSD and
no longer supported in Windows and macOS.
.PP
Specify the cipher string for OpenSSL when using TLS/SSL encryption.
For a list of cipher strings, see
https://www.openssl.org/docs/man1.1.1/man1/ciphers.html (https://www.openssl.org/docs/man1.1.1/man1/ciphers.html)\&.
Multiple cipher strings can be provided as a colon\-separated list.
.PP
This parameter is only for use with TLS 1.2 or earlier. To specify
cipher suites for use with TLS 1.3, use the
\fBopensslCipherSuiteConfig\f1\f1 parameter.
.PP
This parameter is only available at startup. To set the
parameter, use the \fBsetParameter\f1\f1 setting.
.PP
The use of \fBTLS\f1 options is preferred over \fBSSL\f1 options. The TLS options
have the same functionality as the \fBSSL\f1 options. The following example
configures a \fBmongod\f1\f1 with a \fBopensslCipherConfig\f1\f1
cipher string of \fB\(aqHIGH:!EXPORT:!aNULL@STRENGTH\(aq\f1:
.PP
.EX
mongod \-\-setParameter opensslCipherConfig=\(aqHIGH:!EXPORT:!aNULL@STRENGTH\(aq \-\-tlsMode requireTLS \-\-tlsCertificateKeyFile Certs/server.pem
.EE
.RE
.PP
\fBopensslCipherSuiteConfig\f1
.RS
.PP
\fIAvailable on Linux only\f1
.PP
Specify the list of supported cipher suites OpenSSL should permit
when using TLS 1.3 encryption.
.PP
For a list of cipher suites for use with TLS 1.3, see
https://www.openssl.org/docs/man1.1.1/man3/SSL_CTX_set_cipher_list.html (https://www.openssl.org/docs/man1.1.1/man3/SSL_CTX_set_cipher_list.html)\&.
Multiple cipher suites can be provided as a colon\-separated list.
.PP
This parameter is only for use with TLS 1.3. To specify cipher
strings for use with TLS 1.2 or earlier, use the
\fBopensslCipherConfig\f1\f1 parameter.
.PP
This parameter is only available at startup. To set the
parameter, use the \fBsetParameter\f1\f1 setting.
.PP
For example, the following configures a \fBmongod\f1\f1
with a \fBopensslCipherSuiteConfig\f1\f1 cipher suite of
\fB\(aqTLS_AES_256_GCM_SHA384\(aq\f1 for use with TLS 1.3:
.PP
.EX
mongod \-\-setParameter opensslCipherSuiteConfig=\(aqTLS_AES_256_GCM_SHA384\(aq \-\-tlsMode requireTLS \-\-tlsCertificateKeyFile Certs/server.pem
.EE
.RE
.PP
\fBopensslDiffieHellmanParameters\f1
.RS
.PP
\fIAvailable on Linux only\f1
.PP
Specify the path to the PEM file that contains the OpenSSL
Diffie\-Hellman parameters when using TLS 1.2 or previous. Specifying
the OpenSSL Diffie\-Hellman parameters enables support for \fBEphemeral Diffie\-Hellman (DHE)\f1
cipher suites during TLS/SSL encryption.
.PP
This parameter is not supported for use with TLS 1.3.
.PP
Ephemeral Diffie\-Hellman (DHE) cipher suites (and Ephemeral Elliptic
Curve Diffie\-Hellman (ECDHE) cipher suites) provide
\fBForward Secrecy\f1\&. \fBForward Secrecy\f1 cipher suites
create an ephemeral session key that is protected by the server\(aqs
private key but never transmitted. This ensures that even if a