Skip to content

Commit 559bd91

Browse files
Merge branch 'dev' into dev-removed-procedures
2 parents 3f1b3a0 + 71c56ba commit 559bd91

File tree

11 files changed

+364
-207
lines changed

11 files changed

+364
-207
lines changed

modules/ROOT/pages/authentication-authorization/ldap-integration.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ dbms.security.ldap.authorization.system_username=cn=search-account,cn=Users,dc=e
197197
+
198198
[source, properties]
199199
----
200-
dbms.security.ldap.authorization.system_password=mypassword
200+
dbms.security.ldap.authorization.system_password=your_password
201201
----
202202

203203
.. Configure which attribute to search for by adding the following lines to the _neo4j.conf_ file (replacing `myattribute` with the actual attribute name):
@@ -490,7 +490,7 @@ ldapsearch -v -H ldap://myactivedirectory.example.com:389 -x -D cn=john,cn=Users
490490
----
491491
# ldapsearch -v -H ldap://<dbms.security.ldap.host> -x -D <dbms.security.ldap.authorization.system_username> -w <dbms.security.ldap.authorization.system_password> -b <dbms.security.ldap.authorization.user_search_base> "<dbms.security.ldap.authorization.user_search_filter>" <dbms.security.ldap.authorization.group_membership_attributes>
492492
493-
ldapsearch -v -H ldap://myactivedirectory.example.com:389 -x -D cn=search-account,cn=Users,dc=example,dc=com -w mypassword -b cn=Users,dc=example,dc=com "(&(objectClass=*)(cn=john))" memberOf
493+
ldapsearch -v -H ldap://myactivedirectory.example.com:389 -x -D cn=search-account,cn=Users,dc=example,dc=com -w your_password -b cn=Users,dc=example,dc=com "(&(objectClass=*)(cn=john))" memberOf
494494
----
495495

496496
. Verify that the value of the returned membership attribute is a group that is mapped to a role in `dbms.security.ldap.authorization.group_to_role_mapping`.

modules/ROOT/pages/clustering/databases.adoc

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@ Neo4j 5.24 introduces the xref:procedures.adoc#procedure_dbms_cluster_recreateDa
268268
* To change the database store to a specified backup, while keeping all the associated privileges for the database.
269269

270270
* To make your database write-available again after it has been lost (for example, due to a disaster).
271-
// See xref:clustering/disaster-recovery.adoc[] for more information.
272-
271+
See xref:clustering/disaster-recovery.adoc[Disaster recovery] for more information.
272+
273273
[CAUTION]
274274
====
275275
The recreate procedure works only for real user databases and not for composite databases, or the `system` database.
@@ -468,7 +468,7 @@ SHOW DATABASE foo;
468468
=== Seed from URI
469469

470470
This method seeds all servers with an identical seed from an external source, specified by the URI.
471-
The seed can either be a full backup, a differential backup (xref:clustering/databases.adoc#cloud-seed-provider[`CloudSeedProvider`], introduced in Neo4j 5.26), or a dump from an existing database.
471+
The seed can either be a full backup, a differential backup (xref:clustering/databases.adoc#cloud-seed-provider[`CloudSeedProvider`], introduced in Neo4j 5.26), or a dump from an existing database.
472472
The sources of seeds are called _seed providers_.
473473

474474
The mechanism is pluggable, allowing new sources of seeds to be supported (see link:https://www.neo4j.com/docs/java-reference/current/extending-neo4j/project-setup/#extending-neo4j-plugin-seed-provider[Java Reference -> Implement custom seed providers] for more information).
@@ -506,7 +506,7 @@ To determine the cause of the problem, it is recommended to look at the `debug.l
506506

507507
label:new[Introduced in 5.26], the `FileSeedProvider` supports:
508508

509-
** `file:`
509+
** `file:`
510510

511511
[[url-connection-seed-provider]]
512512
==== URLConnectionSeedProvider
@@ -523,8 +523,8 @@ The `URLConnectionSeedProvider` supports the following:
523523

524524
label:new[Introduced in 5.25], the `CloudSeedProvider` supports:
525525

526-
** `s3:`
527-
** `gs:`
526+
** `s3:`
527+
** `gs:`
528528
** `azb:`
529529

530530
Starting from Neo4j 5.26, the `CloudSeedProvider` supports using xref:backup-restore/modes.adoc#differential-backup[differential backup] files as seeds.
@@ -539,7 +539,7 @@ include::partial$/aws-s3-overrides.adoc[]
539539

540540
include::partial$/aws-s3-credentials.adoc[]
541541

542-
. Create database from `myBackup.backup`.
542+
. Create database from `myBackup.backup`.
543543
+
544544
[source,shell, role="nocopy"]
545545
----
@@ -552,7 +552,7 @@ CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 's3:/myBucket/myBack
552552

553553
include::partial$/gcs-credentials.adoc[]
554554

555-
. Create database from `myBackup.backup`.
555+
. Create database from `myBackup.backup`.
556556
+
557557
[source,shell]
558558
----
@@ -564,7 +564,7 @@ CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 'gs:/myBucket/myBack
564564

565565
include::partial$/azb-credentials.adoc[]
566566

567-
. Create database from `myBackup.backup`.
567+
. Create database from `myBackup.backup`.
568568
+
569569
[source,shell]
570570
----
@@ -578,7 +578,7 @@ CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 'azb://myStorageAcco
578578

579579
The `S3SeedProvider` supports:
580580

581-
** `s3:` label:deprecated[Deprecated in 5.26]
581+
** `s3:` label:deprecated[Deprecated in 5.26]
582582

583583

584584
[NOTE]
@@ -621,7 +621,7 @@ Where `accessKey` and `secretKey` are provided by AWS.
621621

622622
| `file:`
623623
| `URLConnectionSeedProvider` label:deprecated[Deprecated in 5.26], +
624-
`FileSeedProvider` label:new[Introduced in 5.26]
624+
`FileSeedProvider` label:new[Introduced in 5.26]
625625
| `file:/tmp/backup1.backup`
626626

627627
| `ftp:`
@@ -638,15 +638,15 @@ Where `accessKey` and `secretKey` are provided by AWS.
638638

639639
| `s3:`
640640
| `S3SeedProvider` label:deprecated[Deprecated in 5.26], +
641-
`CloudSeedProvider` label:new[Introduced in 5.25]
641+
`CloudSeedProvider` label:new[Introduced in 5.25]
642642
| `s3://mybucket/backups/backup1.backup`
643643

644644
| `gs:`
645-
| `CloudSeedProvider` label:new[Introduced in 5.25]
645+
| `CloudSeedProvider` label:new[Introduced in 5.25]
646646
| `gs://mybucket/backups/backup1.backup`
647647

648648
| `azb:`
649-
| `CloudSeedProvider` label:new[Introduced in 5.25]
649+
| `CloudSeedProvider` label:new[Introduced in 5.25]
650650
| `azb://mystorageaccount.blob/backupscontainer/backup1.backup`
651651
|===
652652

0 commit comments

Comments
 (0)