You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -238,7 +238,7 @@ The credentials for the admin user are configured using Docker secrets, and are
238
238
## Single node MarkLogic Server on a single VM
239
239
Single node configurations are used primarily on a development machine with a single user.
240
240
241
-
Create these files on your host machine: `marklogic-centos.yaml`, `mldb_admin_username.txt`, `mldb_admin_password.txt`, and `mldb_wallet_password.txt`. Run the example Docker commands from the same directory that the files were created.
241
+
Create these files on your host machine: `marklogic-single-node.yaml`, `mldb_admin_username.txt`, `mldb_admin_password.txt`, and `mldb_wallet_password.txt`. Run the example Docker commands from the same directory that the files were created.
242
242
243
243
**marklogic-centos.yaml**
244
244
@@ -309,7 +309,7 @@ volumes:
309
309
Once the files are ready, run this command to start the MarkLogic Server container.
310
310
311
311
```
312
-
$ docker-compose -f marklogic-centos.yaml up -d
312
+
$ docker-compose -f marklogic-single-node.yaml up -d
313
313
```
314
314
The previous command starts a container running MarkLogic Server named "bootstrap".
315
315
@@ -323,7 +323,7 @@ After the container is initialized, you can access the MarkLogic Query Console o
323
323
324
324
## Three node cluster on a single VM
325
325
326
-
The following is an example of a three-node MarkLogic server cluster created using Docker compose. Create these files on your host machine: `marklogic-cluster-centos.yaml`, `mldb_admin_username.txt`, and `mldb_admin_password.txt`. Run example Docker commands from the same directory where the files created.
326
+
The following is an example of a three-node MarkLogic server cluster created using Docker compose. Create these files on your host machine: `marklogic-multi-node.yaml`, `mldb_admin_username.txt`, and `mldb_admin_password.txt`. Run example Docker commands from the same directory where the files created.
327
327
328
328
**marklogic-cluster-centos.yaml**
329
329
@@ -429,7 +429,7 @@ volumes:
429
429
Once the files have been created, run the following command to start the MarkLogic Server container:
430
430
431
431
```
432
-
$ docker-compose -f marklogic-cluster-centos.yaml up -d
432
+
$ docker-compose -f marklogic-multi-node.yaml up -d
433
433
```
434
434
435
435
This command will start three Docker containers running MarkLogic Server, named "bootstrap_3n", "node2" and, "node3".
@@ -468,7 +468,7 @@ Using Docker secrets, username and password information are secured when transmi
0 commit comments