mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-10 20:00:18 +01:00
cba1446d38
It looks like this file was copied from a hadoop example and not all instances of the word "hadoop" were replaced with "mongo." Running a quick s/hadoop/mongo/g fixes this up to provide a more clear example.
29 lines
564 B
INI
29 lines
564 B
INI
#The site wide list of mongodb servers
|
|
|
|
# the mongo servers need a mongod_port variable set, and they must not conflict.
|
|
[mongo_servers]
|
|
mongo1 mongod_port=2700
|
|
mongo2 mongod_port=2701
|
|
mongo3 mongod_port=2702
|
|
mongo4 mongod_port=2703
|
|
|
|
#The list of servers where replication should happen, by default include all servers
|
|
[replication_servers]
|
|
mongo1
|
|
mongo2
|
|
mongo3
|
|
mongo4
|
|
|
|
#The list of mongodb configuration servers, make sure it is 1 or 3
|
|
[mongoc_servers]
|
|
mongo1
|
|
mongo2
|
|
mongo3
|
|
|
|
|
|
#The list of servers where mongos servers would run.
|
|
[mongos_servers]
|
|
mongo1
|
|
mongo2
|
|
|
|
|