-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathrcs-db-mongo-all
executable file
·63 lines (49 loc) · 1.79 KB
/
rcs-db-mongo-all
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
#!/usr/bin/env ruby
require 'yaml'
require 'rbconfig'
# ensure the working dir is correct
Dir.chdir File.dirname(File.dirname(File.realpath(__FILE__)))
# select the correct dir based upon the platform we are running on
case RbConfig::CONFIG['host_os']
when /darwin/
os = 'macos'
ext = ''
ulimit = "ulimit -n 1024 &&"
when /mingw/
os = 'win'
ext = '.exe'
ulimit = ""
end
datadir = Dir.pwd + '/data'
configdir = datadir + '/config'
logdir = Dir.pwd + '/log'
rcs_config = {CN: 'localhost'}
File.open(Dir.pwd + '/config/config.yaml', "r") do |f|
rcs_config = YAML.load(f.read)
end
# ensure the data directory is present
Dir::mkdir(datadir) if not File.directory?(datadir)
Dir::mkdir(configdir) if not File.directory?(configdir)
Dir::mkdir(logdir) if not File.directory?(logdir)
require_auth = false
keyfile = Dir.pwd + '/config/mongodb.key'
# the mongod executable
mongod = Dir.pwd + '/mongodb/' + os + '/mongod' + ext
mongos = Dir.pwd + '/mongodb/' + os + '/mongos' + ext
puts "Starting the config server (#{rcs_config['CN']})..."
# the config server
parameters = "--dbpath #{configdir} --fork --nssize 64 --logpath #{logdir}/mongoc.log --configsvr --rest --maxConns 1000"
parameters += " --keyFile #{keyfile}" if require_auth
`#{ulimit} #{mongod} #{parameters}`
sleep 1
puts "Starting the shard server..."
# the shard server
parameters = "--dbpath #{datadir} --journal --fork --nssize 64 --logpath #{logdir}/mongod.log --shardsvr --rest --maxConns 1000"
parameters += " --keyFile #{keyfile}" if require_auth
`#{ulimit} #{mongod} #{parameters}`
sleep 5
puts "Starting the router..."
# the shard router
parameters = "--logpath #{logdir}/mongos.log --fork --configdb #{rcs_config['CN']} --maxConns 1000"
parameters += " --keyFile #{keyfile}" if require_auth
`#{ulimit} #{mongos} #{parameters}`