File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
content/integrate/redis-data-integration/data-pipelines/prepare-dbs Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,9 @@ db.createUser({
62
62
The RDI Collector requires a MongoDB connection string that includes all relevant hosts and authentication details.
63
63
64
64
Example (Replica Set):
65
- ``` mongodb://${SOURCE_DB_USERNAME}:${SOURCE_DB_PASSWORD}@host1:27017,host2:27017,host3:27017/?replicaSet=rs0&authSource=admin ```
65
+ ```
66
+ mongodb://${SOURCE_DB_USERNAME}:${SOURCE_DB_PASSWORD}@host1:27017,host2:27017,host3:27017/?replicaSet=rs0&authSource=admin
67
+ ```
66
68
- For standalone or Atlas, adjust the connection string accordingly.
67
69
- Set replicaSet and authSource as appropriate for your deployment.
68
70
@@ -85,7 +87,9 @@ The root CA certificate for MongoDB Atlas must be added as a SOURCE_DB_CACERT se
85
87
- Ensure your connection string includes ssl=true or tls=true and references the CA certificate if required by your deployment.
86
88
87
89
Example connection string for Atlas:
88
- ``` mongodb+srv://rdi_user:rdi_password@cluster0.mongodb.net/?authSource=admin&tls=true ```
90
+ ```
91
+ mongodb+srv://rdi_user:rdi_password@cluster0.mongodb.net/?authSource=admin&tls=true
92
+ ```
89
93
90
94
## 6. Network and Security
91
95
- Ensure the RDI Collector can connect to all MongoDB nodes on the required ports (default: 27017, or as provided by Atlas).
You can’t perform that action at this time.
0 commit comments