-
Notifications
You must be signed in to change notification settings - Fork 140
/
cluster.json
100 lines (100 loc) · 2.71 KB
/
cluster.json
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
{
"version": 1,
"processes": [
{
"name": "foo",
"processType": "mongod",
"version": "2.8.0-rc1",
"args2_6": {
"storage" : {
"dbPath": "/home/ec2-user/replset/data/foo"
},
"systemLog" : {
"destination" : "file",
"path" : "/home/ec2-user/replset/logs/foo_run.log"
},
"net" : {
"port": 27017
},
"replication": {
"replSetName": "rs1"
}
}
},
{
"name": "bar",
"processType": "mongod",
"version": "2.8.0-rc1",
"args2_6": {
"storage" : {
"dbPath": "/home/ec2-user/replset/data/bar"
},
"systemLog" : {
"destination" : "file",
"path" : "/home/ec2-user/replset/logs/bar_run.log"
},
"net" : {
"port": 27018
},
"replication": {
"replSetName": "rs1"
}
}
},
{
"name": "baz",
"processType": "mongod",
"version": "2.8.0-rc1",
"args2_6": {
"storage" : {
"dbPath": "/home/ec2-user/replset/data/baz"
},
"systemLog" : {
"destination" : "file",
"path" : "/home/ec2-user/replset/logs/baz_run.log"
},
"net" : {
"port": 27019
},
"replication": {
"replSetName": "rs1"
}
}
}
],
"replicaSets": [
{
"_id": "rs1",
"members": [
{
"_id": 0,
"host": "foo"
},
{
"_id": 1,
"host": "bar"
},
{
"_id": 2,
"host": "baz"
}
]
}
],
"options": {
"downloadBase": "/home/ec2-user/replset/downloads"
},
"mongoDbVersions" : [
{
"name":"2.8.0-rc1",
"builds":[
{
"bits":64,
"gitVersion":"c8171e7f969519af8b87a43425ae291ee69a0191",
"url":"http://downloads.mongodb.org/linux/mongodb-linux-x86_64-2.8.0-rc1.tgz",
"platform":"linux"
}
]
}
]
}