hennk-hennk-ec2onrails 0.9.9.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (150) hide show
  1. data/CHANGELOG +0 -0
  2. data/COPYING +339 -0
  3. data/Manifest +148 -0
  4. data/README.textile +214 -0
  5. data/Rakefile +36 -0
  6. data/TODO +5 -0
  7. data/ec2onrails.gemspec +44 -0
  8. data/lib/ec2onrails/capistrano_utils.rb +33 -0
  9. data/lib/ec2onrails/recipes.rb +460 -0
  10. data/lib/ec2onrails/version.rb +32 -0
  11. data/lib/ec2onrails.rb +20 -0
  12. data/server/build-ec2onrails.sh +44 -0
  13. data/server/files/etc/aliases +6 -0
  14. data/server/files/etc/aliases.db +0 -0
  15. data/server/files/etc/apache2/apache2.conf +295 -0
  16. data/server/files/etc/apache2/conf.d/app.proxy_cluster.conf +7 -0
  17. data/server/files/etc/apache2/conf.d/app.proxy_frontend.conf +10 -0
  18. data/server/files/etc/apache2/mods-available/proxy.conf +18 -0
  19. data/server/files/etc/apache2/sites-available/app.common +58 -0
  20. data/server/files/etc/apache2/sites-available/app.custom +0 -0
  21. data/server/files/etc/apache2/sites-available/default +17 -0
  22. data/server/files/etc/apache2/sites-available/default-ssl +18 -0
  23. data/server/files/etc/cron.d/backup_app_db_to_s3 +6 -0
  24. data/server/files/etc/cron.daily/app +5 -0
  25. data/server/files/etc/cron.daily/logrotate_post +27 -0
  26. data/server/files/etc/cron.hourly/app +5 -0
  27. data/server/files/etc/cron.monthly/app +5 -0
  28. data/server/files/etc/cron.weekly/app +5 -0
  29. data/server/files/etc/denyhosts.conf +628 -0
  30. data/server/files/etc/dpkg/dpkg.cfg +13 -0
  31. data/server/files/etc/ec2onrails/balancer_members +6 -0
  32. data/server/files/etc/ec2onrails/roles.yml +5 -0
  33. data/server/files/etc/environment +2 -0
  34. data/server/files/etc/event.d/monit +13 -0
  35. data/server/files/etc/init.d/ec2-every-startup +29 -0
  36. data/server/files/etc/init.d/ec2-first-startup +36 -0
  37. data/server/files/etc/init.d/mongrel +91 -0
  38. data/server/files/etc/init.d/set_roles +3 -0
  39. data/server/files/etc/logrotate.d/apache2 +13 -0
  40. data/server/files/etc/logrotate.d/mysql-server +23 -0
  41. data/server/files/etc/logrotate.d/rails +7 -0
  42. data/server/files/etc/memcached.conf +47 -0
  43. data/server/files/etc/mongrel_cluster/app.yml +9 -0
  44. data/server/files/etc/monit/app.monitrc +71 -0
  45. data/server/files/etc/monit/db_primary.monitrc +10 -0
  46. data/server/files/etc/monit/memcache.monitrc +8 -0
  47. data/server/files/etc/monit/monitrc +13 -0
  48. data/server/files/etc/monit/system.monitrc +15 -0
  49. data/server/files/etc/monit/web.monitrc +10 -0
  50. data/server/files/etc/motd.tail +13 -0
  51. data/server/files/etc/mysql/my.cnf +149 -0
  52. data/server/files/etc/postfix/main.cf +4 -0
  53. data/server/files/etc/rc0.d/K10mongrel +91 -0
  54. data/server/files/etc/rc1.d/K10mongrel +91 -0
  55. data/server/files/etc/rc2.d/S90mongrel +91 -0
  56. data/server/files/etc/rc3.d/S90mongrel +91 -0
  57. data/server/files/etc/rc4.d/S90mongrel +91 -0
  58. data/server/files/etc/rc5.d/S90mongrel +91 -0
  59. data/server/files/etc/rc6.d/K10mongrel +91 -0
  60. data/server/files/etc/rcS.d/S91ec2-first-startup +36 -0
  61. data/server/files/etc/rcS.d/S92ec2-every-startup +29 -0
  62. data/server/files/etc/rcS.d/S99set_roles +3 -0
  63. data/server/files/etc/ssh/sshd_config +94 -0
  64. data/server/files/etc/sudoers +24 -0
  65. data/server/files/etc/syslog.conf +69 -0
  66. data/server/files/usr/local/ec2onrails/COPYING +339 -0
  67. data/server/files/usr/local/ec2onrails/bin/archive_file.rb +44 -0
  68. data/server/files/usr/local/ec2onrails/bin/backup_app_db.rb +83 -0
  69. data/server/files/usr/local/ec2onrails/bin/backup_files.rb +51 -0
  70. data/server/files/usr/local/ec2onrails/bin/mongrel_start +8 -0
  71. data/server/files/usr/local/ec2onrails/bin/mongrel_stop +8 -0
  72. data/server/files/usr/local/ec2onrails/bin/rails_env +35 -0
  73. data/server/files/usr/local/ec2onrails/bin/rebundle.sh +70 -0
  74. data/server/files/usr/local/ec2onrails/bin/restore_app_db.rb +58 -0
  75. data/server/files/usr/local/ec2onrails/bin/restore_files.rb +59 -0
  76. data/server/files/usr/local/ec2onrails/bin/set_rails_env +40 -0
  77. data/server/files/usr/local/ec2onrails/bin/set_roles.rb +156 -0
  78. data/server/files/usr/local/ec2onrails/config +30 -0
  79. data/server/files/usr/local/ec2onrails/lib/mysql_helper.rb +101 -0
  80. data/server/files/usr/local/ec2onrails/lib/s3_helper.rb +126 -0
  81. data/server/files/usr/local/ec2onrails/lib/utils.rb +16 -0
  82. data/server/files/usr/local/ec2onrails/startup-scripts/every-startup/get-hostname.sh +25 -0
  83. data/server/files/usr/local/ec2onrails/startup-scripts/first-startup/create-dirs.sh +39 -0
  84. data/server/files/usr/local/ec2onrails/startup-scripts/first-startup/generate-default-web-cert-and-key.sh +49 -0
  85. data/server/files/usr/local/ec2onrails/startup-scripts/first-startup/misc.sh +30 -0
  86. data/server/files/usr/local/ec2onrails/startup-scripts/first-startup/prepare-mysql-data-dir.sh +24 -0
  87. data/server/files/usr/local/ec2onrails/startup-scripts/first-startup/setup_credentials.sh +33 -0
  88. data/server/rakefile.rb +245 -0
  89. data/setup.rb +1585 -0
  90. data/test/autobench.conf +60 -0
  91. data/test/spec/lib/s3_helper_spec.rb +134 -0
  92. data/test/spec/lib/s3_old.yml +3 -0
  93. data/test/spec/test_files/test1 +0 -0
  94. data/test/spec/test_files/test2 +0 -0
  95. data/test/test_app/Capfile +3 -0
  96. data/test/test_app/README +182 -0
  97. data/test/test_app/Rakefile +10 -0
  98. data/test/test_app/app/controllers/application.rb +7 -0
  99. data/test/test_app/app/controllers/db_fast_controller.rb +6 -0
  100. data/test/test_app/app/controllers/fast_controller.rb +5 -0
  101. data/test/test_app/app/controllers/slow_controller.rb +6 -0
  102. data/test/test_app/app/controllers/very_slow_controller.rb +6 -0
  103. data/test/test_app/app/helpers/application_helper.rb +3 -0
  104. data/test/test_app/app/helpers/db_fast_helper.rb +2 -0
  105. data/test/test_app/app/helpers/fast_helper.rb +2 -0
  106. data/test/test_app/app/helpers/slow_helper.rb +2 -0
  107. data/test/test_app/app/helpers/very_slow_helper.rb +2 -0
  108. data/test/test_app/config/boot.rb +109 -0
  109. data/test/test_app/config/database.yml +36 -0
  110. data/test/test_app/config/deploy.rb +21 -0
  111. data/test/test_app/config/environment.rb +60 -0
  112. data/test/test_app/config/environments/development.rb +21 -0
  113. data/test/test_app/config/environments/production.rb +18 -0
  114. data/test/test_app/config/environments/test.rb +19 -0
  115. data/test/test_app/config/routes.rb +27 -0
  116. data/test/test_app/db/schema.rb +7 -0
  117. data/test/test_app/doc/README_FOR_APP +2 -0
  118. data/test/test_app/public/404.html +30 -0
  119. data/test/test_app/public/500.html +30 -0
  120. data/test/test_app/public/dispatch.cgi +10 -0
  121. data/test/test_app/public/dispatch.fcgi +24 -0
  122. data/test/test_app/public/dispatch.rb +10 -0
  123. data/test/test_app/public/favicon.ico +0 -0
  124. data/test/test_app/public/images/rails.png +0 -0
  125. data/test/test_app/public/javascripts/application.js +2 -0
  126. data/test/test_app/public/javascripts/controls.js +963 -0
  127. data/test/test_app/public/javascripts/dragdrop.js +972 -0
  128. data/test/test_app/public/javascripts/effects.js +1120 -0
  129. data/test/test_app/public/javascripts/prototype.js +4225 -0
  130. data/test/test_app/public/robots.txt +1 -0
  131. data/test/test_app/script/about +3 -0
  132. data/test/test_app/script/breakpointer +3 -0
  133. data/test/test_app/script/console +3 -0
  134. data/test/test_app/script/destroy +3 -0
  135. data/test/test_app/script/generate +3 -0
  136. data/test/test_app/script/performance/benchmarker +3 -0
  137. data/test/test_app/script/performance/profiler +3 -0
  138. data/test/test_app/script/performance/request +3 -0
  139. data/test/test_app/script/plugin +3 -0
  140. data/test/test_app/script/process/inspector +3 -0
  141. data/test/test_app/script/process/reaper +3 -0
  142. data/test/test_app/script/process/spawner +3 -0
  143. data/test/test_app/script/runner +3 -0
  144. data/test/test_app/script/server +3 -0
  145. data/test/test_app/test/functional/db_fast_controller_test.rb +18 -0
  146. data/test/test_app/test/functional/fast_controller_test.rb +18 -0
  147. data/test/test_app/test/functional/slow_controller_test.rb +18 -0
  148. data/test/test_app/test/functional/very_slow_controller_test.rb +18 -0
  149. data/test/test_app/test/test_helper.rb +28 -0
  150. metadata +263 -0
@@ -0,0 +1,51 @@
1
+ #!/usr/bin/ruby
2
+
3
+ # Tars a given file or directory and uploads it to S3 using a time-stamped name.
4
+ # Takes 2 required and 1 optional flags:
5
+ # -sourceFileOrDir The full path to the file or dir to be saved to S3
6
+ # -dir The directory inside the bucket to save above file/dir to
7
+ # -bucket [optional] The bucket where <dir> will be created. If this is not specified, it defaults to the bucket_base_name from s3.yml concatenated with the hostname.
8
+
9
+ exit unless File.exists?("/mnt/app/current")
10
+
11
+ require "rubygems"
12
+ require 'zlib'
13
+ require 'archive/tar/minitar'
14
+ include Archive::Tar
15
+ require "optiflag"
16
+ require "fileutils"
17
+ require "#{File.dirname(__FILE__)}/../lib/s3_helper"
18
+ require "#{File.dirname(__FILE__)}/../lib/utils"
19
+
20
+ module CommandLineArgs extend OptiFlagSet
21
+ flag "sourceFileOrDir"
22
+ flag "dir"
23
+ optional_flag "bucket"
24
+
25
+ and_process!
26
+ end
27
+
28
+ # include the hostname in the bucket name so test instances don't accidentally clobber real backups
29
+ bucket = ARGV.flags.bucket
30
+ dir = ARGV.flags.dir
31
+ @s3 = Ec2onrails::S3Helper.new(bucket, dir)
32
+ @temp_dir = "/mnt/tmp/backup-files-#{@s3.bucket}-#{dir.gsub(/\//, "-")}"
33
+ local_file = File.join(@temp_dir, "#{Time.new.strftime('%Y-%m-%d--%H-%M-%S')}.tar")
34
+ if File.exists?(@temp_dir)
35
+ puts "Temp dir exists (#{@temp_dir}), aborting. Is another backup process running?"
36
+ exit
37
+ end
38
+
39
+ begin
40
+ FileUtils.mkdir_p @temp_dir
41
+
42
+ source_file = ARGV.flags.sourceFileOrDir
43
+
44
+ FileUtils.cd(File.dirname(source_file)) do
45
+ File.open(local_file, 'wb') { |tar| Minitar.pack(File.basename(source_file), tar) }
46
+ end
47
+
48
+ @s3.store_file(local_file)
49
+ ensure
50
+ FileUtils.rm_rf(@temp_dir)
51
+ end
@@ -0,0 +1,8 @@
1
+ #!/bin/sh
2
+
3
+ . /etc/environment
4
+ export PATH
5
+ export RUBYLIB
6
+
7
+ mongrel_rails cluster::start -C /etc/mongrel_cluster/app.yml --clean $*
8
+
@@ -0,0 +1,8 @@
1
+ #!/bin/sh
2
+
3
+ . /etc/environment
4
+ export PATH
5
+ export RUBYLIB
6
+
7
+ mongrel_rails cluster::stop -C /etc/mongrel_cluster/app.yml $*
8
+
@@ -0,0 +1,35 @@
1
+ #!/usr/bin/ruby
2
+
3
+ # This file is part of EC2 on Rails.
4
+ # http://rubyforge.org/projects/ec2onrails/
5
+ #
6
+ # Copyright 2007 Paul Dowman, http://pauldowman.com/
7
+ #
8
+ # EC2 on Rails is free software; you can redistribute it and/or modify
9
+ # it under the terms of the GNU General Public License as published by
10
+ # the Free Software Foundation; either version 2 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # EC2 on Rails is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License
19
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
+
21
+
22
+ # This script runs a command with RAILS_ENV set to the value that's specified
23
+ # in the the mongrel_cluster config file. If a command isn't given as an
24
+ # argument it simply prints the value of RAILS_ENV
25
+
26
+ require "yaml"
27
+
28
+ @rails_env = YAML::load_file("/etc/mongrel_cluster/app.yml")["environment"]
29
+
30
+ if ARGV.any?
31
+ result = system "env RAILS_ENV=#{@rails_env} #{ARGV.join(' ')}"
32
+ raise("error: #{$?}") unless result
33
+ else
34
+ puts @rails_env
35
+ end
@@ -0,0 +1,70 @@
1
+ #!/bin/bash
2
+
3
+ # This file is part of EC2 on Rails.
4
+ # http://rubyforge.org/projects/ec2onrails/
5
+ #
6
+ # Copyright 2007 Paul Dowman, http://pauldowman.com/
7
+ #
8
+ # EC2 on Rails is free software; you can redistribute it and/or modify
9
+ # it under the terms of the GNU General Public License as published by
10
+ # the Free Software Foundation; either version 2 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # EC2 on Rails is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License
19
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
+
21
+
22
+ cleanup() {
23
+ rm -f /ec2onrails-first-boot
24
+ }
25
+
26
+ fail() {
27
+ echo "`basename $0`: ERROR: $1"
28
+ cleanup
29
+ exit 1
30
+ }
31
+
32
+ if [ `whoami` != 'root' ] ; then
33
+ fail "This script must be run as root, use 'sudo $0'".
34
+ fi
35
+
36
+ . "/usr/local/ec2onrails/config"
37
+
38
+ TIMESTAMP="`date '+%Y-%m-%d--%H-%M-%S'`"
39
+ NEW_BUCKET_NAME="$BUCKET_BASE_NAME-image-$TIMESTAMP"
40
+
41
+ if [ ! -e /usr/local/ec2-api-tools ] ; then
42
+ echo "The EC2 api command-line tools don't seem to be installed."
43
+ echo "To install them (and Java, which they require), press enter..."
44
+ read
45
+ curl http://s3.amazonaws.com/ec2-downloads/ec2-api-tools.zip > /tmp/ec2-api-tools.zip || fail "couldn't download ec2-api-tools.zip"
46
+ unzip /tmp/ec2-api-tools.zip -d /usr/local || fail "couldn't unzip ec2-api-tools.zip"
47
+ chmod -R go-w /usr/local/ec2-api-tools*
48
+ ln -sf /usr/local/ec2-api-tools-* /usr/local/ec2-api-tools
49
+ aptitude install -y sun-java6-jre || fail "couldn't install Java package"
50
+ fi
51
+
52
+ echo "--> Clearing apt cache..."
53
+ aptitude clean
54
+
55
+ touch /ec2onrails-first-boot || fail
56
+
57
+ echo "--> Clearing sensitive files..."
58
+ rm -f /root/{.bash_history,.lesshst}
59
+
60
+ echo "--> Creating image..."
61
+ ec2-bundle-vol -e "/root/.ssh,/home/app/.ssh,/home/admin/.ssh,/tmp,/mnt" -d /mnt -k "$EC2_PRIVATE_KEY" -c "$EC2_CERT" -u "$AWS_ACCOUNT_ID" || fail "ec2-bundle-vol failed"
62
+
63
+ echo "--> Uploading image to $NEW_BUCKET_NAME"
64
+ ec2-upload-bundle -b "$NEW_BUCKET_NAME" -m /mnt/image.manifest.xml -a "$AWS_ACCESS_KEY_ID" -s "$AWS_SECRET_ACCESS_KEY" || fail "ec2-upload-bundle failed"
65
+
66
+ echo "--> Registering image..."
67
+ ec2-register "$NEW_BUCKET_NAME/image.manifest.xml" || fail "ec2-register failed"
68
+
69
+ echo "--> Done."
70
+ cleanup
@@ -0,0 +1,58 @@
1
+ #!/usr/bin/ruby
2
+
3
+ # This file is part of EC2 on Rails.
4
+ # http://rubyforge.org/projects/ec2onrails/
5
+ #
6
+ # Copyright 2007 Paul Dowman, http://pauldowman.com/
7
+ #
8
+ # EC2 on Rails is free software; you can redistribute it and/or modify
9
+ # it under the terms of the GNU General Public License as published by
10
+ # the Free Software Foundation; either version 2 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # EC2 on Rails is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License
19
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
+
21
+ require "rubygems"
22
+ require "optiflag"
23
+ require "fileutils"
24
+ require "#{File.dirname(__FILE__)}/../lib/mysql_helper"
25
+ require "#{File.dirname(__FILE__)}/../lib/s3_helper"
26
+ require "#{File.dirname(__FILE__)}/../lib/utils"
27
+
28
+ module CommandLineArgs extend OptiFlagSet
29
+ optional_flag "bucket"
30
+ optional_flag "dir"
31
+ and_process!
32
+ end
33
+
34
+ bucket = ARGV.flags.bucket
35
+ dir = ARGV.flags.dir || "database"
36
+ @s3 = Ec2onrails::S3Helper.new(bucket, dir)
37
+ @mysql = Ec2onrails::MysqlHelper.new
38
+ @temp_dir = "/mnt/tmp/ec2onrails-backup-#{@s3.bucket}-#{dir.gsub(/\//, "-")}"
39
+ if File.exists?(@temp_dir)
40
+ puts "Temp dir exists (#{@temp_dir}), aborting. Is another backup process running?"
41
+ exit
42
+ end
43
+
44
+ begin
45
+ FileUtils.mkdir_p @temp_dir
46
+
47
+ file = "#{@temp_dir}/dump.sql.gz"
48
+ @s3.retrieve_file(file)
49
+ @mysql.load_from_dump(file)
50
+
51
+ @s3.retrieve_files("mysql-bin.", @temp_dir)
52
+ logs = Dir.glob("#{@temp_dir}/mysql-bin.[0-9]*").sort
53
+ logs.each {|log| @mysql.execute_binary_log(log) }
54
+
55
+ @mysql.execute_sql "reset master" # TODO maybe we shouldn't do this if we're not going to delete the logs from the S3 bucket because this restarts the numbering again
56
+ ensure
57
+ FileUtils.rm_rf(@temp_dir)
58
+ end
@@ -0,0 +1,59 @@
1
+ #!/usr/bin/ruby
2
+
3
+ # Downloads and untars a backup created with backup_files.rb from a given directory from S3.
4
+ # Takes 2 required and 2 optional flags:
5
+ # -destDir The full path to the dir where the downloaded file should be extracted
6
+ # -dir The directory inside the bucket where the timestamped backups can be found
7
+ # -timestamp [optional] Download the given timestamp. If this flag is not given, the most recent timestamp will be downloaded. Timestamps have to be in the following format: YYYY-MM-DD--HH-MM-SS
8
+ # -bucket [optional] The bucket where <dir> will be created. If this is not specified, it defaults to the bucket_base_name from s3.yml concatenated with the hostname.
9
+
10
+ require "rubygems"
11
+ require 'zlib'
12
+ require 'archive/tar/minitar'
13
+ include Archive::Tar
14
+ require "optiflag"
15
+ require "fileutils"
16
+ require "#{File.dirname(__FILE__)}/../lib/s3_helper"
17
+ require "#{File.dirname(__FILE__)}/../lib/utils"
18
+ require 'aws/s3'
19
+ include AWS::S3
20
+
21
+ module CommandLineArgs extend OptiFlagSet
22
+ flag "destDir"
23
+ flag "dir"
24
+ optional_flag "timestamp"
25
+ optional_flag "bucket"
26
+
27
+ and_process!
28
+ end
29
+
30
+ dir = ARGV.flags.dir
31
+ @s3 = Ec2onrails::S3Helper.new(ARGV.flags.bucket, dir)
32
+ @temp_dir = "/mnt/tmp/backup-files-#{@s3.bucket}-#{dir.gsub(/\//, "-")}"
33
+ if File.exists?(@temp_dir)
34
+ puts "Temp dir exists (#{@temp_dir}), aborting. Is another backup process running?"
35
+ exit
36
+ end
37
+
38
+ begin
39
+ FileUtils.mkdir_p @temp_dir
40
+
41
+ if ARGV.flags.timestamp
42
+ filename = "#{ARGV.flags.timestamp}.tar"
43
+ else
44
+ # The user didn't supply a timestamp to load, so get a list of all files inside <bucket>/<dir> and take the youngest timestamp.
45
+ bucket = Bucket.find(@s3.bucket, {:prefix => dir})
46
+ names_to_buckets = bucket.objects.map { |o| {:name => File.basename(o.key), :object => o }}
47
+ names_to_buckets.sort_by {|a| a[:name]}
48
+ filename = names_to_buckets.last[:name]
49
+ end
50
+
51
+ file = "#{@temp_dir}/#{filename}"
52
+ @s3.retrieve_file(file)
53
+
54
+ FileUtils.cd(ARGV.flags.destDir) do
55
+ Minitar.unpack(file, '.')
56
+ end
57
+ ensure
58
+ FileUtils.rm_rf(@temp_dir)
59
+ end
@@ -0,0 +1,40 @@
1
+ #!/usr/bin/ruby
2
+
3
+ # This file is part of EC2 on Rails.
4
+ # http://rubyforge.org/projects/ec2onrails/
5
+ #
6
+ # Copyright 2007 Paul Dowman, http://pauldowman.com/
7
+ #
8
+ # EC2 on Rails is free software; you can redistribute it and/or modify
9
+ # it under the terms of the GNU General Public License as published by
10
+ # the Free Software Foundation; either version 2 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # EC2 on Rails is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License
19
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
+
21
+
22
+ # This script updates the value of "environment" in the the mongrel_cluster
23
+ # config file.
24
+
25
+ require "yaml"
26
+ require "erb"
27
+
28
+ if ARGV.length != 1
29
+ puts "usage: set_rails_env <value>"
30
+ exit 1
31
+ end
32
+
33
+ @rails_env = ARGV[0]
34
+
35
+ # update mongrel_cluster config
36
+ config = YAML::load_file("/etc/mongrel_cluster/app.yml")
37
+ config["environment"] = @rails_env
38
+ File.open("/etc/mongrel_cluster/app.yml", 'w') do |f|
39
+ YAML.dump(config, f)
40
+ end
@@ -0,0 +1,156 @@
1
+ #!/usr/bin/ruby
2
+
3
+ # This file is part of EC2 on Rails.
4
+ # http://rubyforge.org/projects/ec2onrails/
5
+ #
6
+ # Copyright 2007 Paul Dowman, http://pauldowman.com/
7
+ #
8
+ # EC2 on Rails is free software; you can redistribute it and/or modify
9
+ # it under the terms of the GNU General Public License as published by
10
+ # the Free Software Foundation; either version 2 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # EC2 on Rails is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License
19
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
+
21
+
22
+ require 'net/http'
23
+ require 'pp'
24
+ require 'socket'
25
+ require 'yaml'
26
+
27
+ def start(role, service, prog_name = service)
28
+ # ensure script is executable
29
+ run "chmod a+x /etc/init.d/#{service}"
30
+ # start service if not running:
31
+ unless (system("pidof -x #{prog_name}"))
32
+ run "sh /etc/init.d/#{service} start && sleep 30" # give the service 30 seconds to start before attempting to monitor it
33
+ end
34
+ run "monit -g #{role} monitor all"
35
+ end
36
+
37
+ def stop(role, service, prog_name = service)
38
+ run "monit -g #{role} unmonitor all"
39
+ if (system("pidof -x #{prog_name}"))
40
+ result = run("sh /etc/init.d/#{service} stop")
41
+ end
42
+ # make start script non-executable in case of reboot
43
+ run("chmod a-x /etc/init.d/#{service}")
44
+ end
45
+
46
+ def run(cmd)
47
+ result = system(cmd)
48
+ puts("*****ERROR: #{cmd} returned #{$?}") unless result
49
+ end
50
+
51
+ def get_address_metadata(type)
52
+ address = Net::HTTP.get('169.254.169.254', "/2007-08-29/meta-data/#{type}").strip
53
+ raise "couldn't get instance data: #{type}" unless address =~ /\A\d+\.\d+\.\d+\.\d+\Z/
54
+ puts "#{type}: #{address}"
55
+ return address
56
+ end
57
+
58
+ def resolve(hostname)
59
+ address = IPSocket.getaddress(hostname).strip
60
+ if address == @local_address || address == @public_address
61
+ "127.0.0.1"
62
+ else
63
+ address
64
+ end
65
+ rescue Exception => e
66
+ puts "couldn't resolve hostname '#{hostname}'"
67
+ raise e
68
+ end
69
+
70
+ def resolve_all_addresses(original)
71
+ resolved = {}
72
+ original.each do |rolename, hostnames|
73
+ resolved[rolename] = hostnames.map{|hostname| resolve(hostname)} if hostnames
74
+ end
75
+ resolved
76
+ end
77
+
78
+ def in_role(role)
79
+ return false unless @roles[role]
80
+ return @roles[role].include?("127.0.0.1")
81
+ end
82
+
83
+ ROLES_FILE = "/etc/ec2onrails/roles.yml"
84
+
85
+ @local_address = get_address_metadata "local-ipv4"
86
+ @public_address = get_address_metadata "public-ipv4"
87
+
88
+ @roles = resolve_all_addresses(YAML::load_file(ROLES_FILE))
89
+ puts "Roles: "
90
+ pp @roles
91
+
92
+
93
+ #######################################
94
+ # TODO move these role definitions each into it's own file so adding a new
95
+ # role is just dropping a ruby file into a directory
96
+
97
+ # memcache role:
98
+ if in_role(:memcache)
99
+ puts "Starting memcache role..."
100
+ # increase memory size, etc if no other roles exist?
101
+ start(:memcache, "memcached")
102
+ else
103
+ puts "Stopping memcache role..."
104
+ stop(:memcache, "memcached")
105
+ end
106
+
107
+ # db primary role:
108
+ if in_role(:db_primary)
109
+ puts "Starting db_primary role..."
110
+ # increase caches, etc if no other roles exist?
111
+ start(:db_primary, "mysql", "mysqld")
112
+ else
113
+ puts "Stopping db_primary role..."
114
+ stop(:db_primary, "mysql", "mysqld")
115
+ end
116
+
117
+ # web role:
118
+ if in_role(:web)
119
+ puts "Starting web role..."
120
+ balancer_members = File.open("/etc/ec2onrails/balancer_members", "w") do |f|
121
+ @roles[:app].each do |address|
122
+ (8000..8005).each do |port|
123
+ f << "BalancerMember http://#{address}:#{port}\n"
124
+ end
125
+ f << "\n"
126
+ end
127
+ end
128
+ start(:web, "apache2")
129
+ # Force apache to reload config files in case it was already running and app hosts changed.
130
+ run "/etc/init.d/apache2 reload"
131
+ else
132
+ puts "Stopping web role..."
133
+ stop(:web, "apache2")
134
+ end
135
+
136
+ # app role:
137
+ if in_role(:app)
138
+ puts "Starting app role..."
139
+
140
+ if @roles[:db_primary]
141
+ # edit /etc/hosts, need db_primary address & db_slave address
142
+ db_primary_addr = @roles[:db_primary][0]
143
+ puts "db_primary has ip address: #{db_primary_addr}"
144
+
145
+ # TODO just use ruby here...
146
+ run("cp /etc/hosts.original /etc/hosts")
147
+ run("echo '\n#{db_primary_addr}\tdb_primary\n' >> /etc/hosts")
148
+ end
149
+
150
+ start(:app, "mongrel", "mongrel_rails")
151
+ else
152
+ puts "Stopping app role..."
153
+ stop(:app, "mongrel", "mongrel_rails")
154
+ end
155
+
156
+ #######################################
@@ -0,0 +1,30 @@
1
+ ############################################################
2
+ # This script is sourced by .bashrc and by /usr/local/ec2onrails/rebundle.sh
3
+ # You shouldn't need to change anything in here
4
+
5
+ if [ -r /mnt/aws-config/config ] ; then
6
+ . /mnt/aws-config/config
7
+ export EC2_PRIVATE_KEY="/mnt/aws-config/$KEY_FILE_NAME"
8
+ export EC2_CERT="/mnt/aws-config/$CERT_FILE_NAME"
9
+
10
+ fi
11
+
12
+ export EC2_HOME=/usr/local/ec2-api-tools
13
+ export PATH="$PATH:$EC2_HOME/bin"
14
+
15
+ export JAVA_HOME="/usr/lib/jvm/java-6-sun"
16
+
17
+ # Set the bash prompt to include the rails environment name
18
+ case "$TERM" in
19
+ xterm-color)
20
+ PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]-\[\033[01;35m\]`/usr/local/ec2onrails/bin/rails_env`\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
21
+ ;;
22
+ *)
23
+ PS1='${debian_chroot:+($debian_chroot)}\u@\h-`/usr/local/ec2onrails/bin/rails_env`:\w\$ '
24
+ ;;
25
+ esac
26
+
27
+ # Set some useful aliases
28
+ alias app="pushd /mnt/app/current && sudo su app && popd"
29
+ alias log="tail -f /mnt/app/current/log/`/usr/local/ec2onrails/bin/rails_env`.log"
30
+ alias logs="tail -f /mnt/app/current/log/*.log /mnt/log/apache2/*.log /mnt/log/syslog"
@@ -0,0 +1,101 @@
1
+ # This file is part of EC2 on Rails.
2
+ # http://rubyforge.org/projects/ec2onrails/
3
+ #
4
+ # Copyright 2007 Paul Dowman, http://pauldowman.com/
5
+ #
6
+ # EC2 on Rails is free software; you can redistribute it and/or modify
7
+ # it under the terms of the GNU General Public License as published by
8
+ # the Free Software Foundation; either version 2 of the License, or
9
+ # (at your option) any later version.
10
+ #
11
+ # EC2 on Rails is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU General Public License for more details.
15
+ #
16
+ # You should have received a copy of the GNU General Public License
17
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
+
19
+ require 'rubygems'
20
+ require 'aws/s3'
21
+ require 'yaml'
22
+ require 'erb'
23
+ require 'fileutils'
24
+ require "#{File.dirname(__FILE__)}/utils"
25
+
26
+ module Ec2onrails
27
+ class MysqlHelper
28
+
29
+ DEFAULT_CONFIG_FILE = "/mnt/app/current/config/database.yml"
30
+
31
+ attr_accessor :database
32
+ attr_accessor :user
33
+ attr_accessor :password
34
+
35
+ def initialize(config_file = DEFAULT_CONFIG_FILE, rails_env = Utils.rails_env)
36
+ @rails_env = rails_env
37
+ load_db_config(config_file)
38
+ end
39
+
40
+ def load_db_config(config_file)
41
+ db_config = YAML::load(ERB.new(File.read(config_file)).result)
42
+ if db_config && db_config[@rails_env].nil?
43
+ puts "the rails environment '#{@rails_env}' was not found in this db onfig file: #{config_file}"
44
+ end
45
+ db_config = db_config[@rails_env]
46
+ @database = db_config['database']
47
+ @user = db_config['username']
48
+ @password = db_config['password']
49
+ end
50
+
51
+ def execute_sql(sql)
52
+ raise "@user not set" unless @user
53
+ raise "sql not given" unless sql
54
+ cmd = %{mysql -u #{@user} -e "#{sql}"}
55
+ cmd += " -p'#{@password}' " unless @password.nil?
56
+ Utils.run cmd
57
+ end
58
+
59
+ def execute
60
+ require "mysql"
61
+
62
+ begin
63
+ # connect to the MySQL server
64
+ dbh = Mysql.real_connect("localhost", "#{@user}", "#{@password}", "#{@database}")
65
+ yield dbh
66
+ rescue Mysql::Error => e
67
+ puts "Error code: #{e.errno}"
68
+ puts "Error message: #{e.error}"
69
+ puts "Error SQLSTATE: #{e.sqlstate}" if e.respond_to?("sqlstate")
70
+ ensure
71
+ # disconnect from server
72
+ dbh.close if dbh
73
+ end
74
+
75
+
76
+ end
77
+
78
+ def dump(out_file, reset_logs)
79
+ cmd = "mysqldump --quick --single-transaction --create-options -u#{@user} "
80
+ if reset_logs
81
+ cmd += " --flush-logs --master-data=2 --delete-master-logs "
82
+ end
83
+ cmd += " -p'#{@password}' " unless @password.nil?
84
+ cmd += " #{@database} | gzip > #{out_file}"
85
+ Utils.run cmd
86
+ end
87
+
88
+ def load_from_dump(in_file)
89
+ cmd = "gunzip -c #{in_file} | mysql -u#{@user} "
90
+ cmd += " -p'#{@password}' " unless @password.nil?
91
+ cmd += " #{@database}"
92
+ Utils.run cmd
93
+ end
94
+
95
+ def execute_binary_log(log_file)
96
+ cmd = "mysqlbinlog --database=#{@database} #{log_file} | mysql -u#{@user} "
97
+ cmd += " -p'#{@password}' " unless @password.nil?
98
+ Utils.run cmd
99
+ end
100
+ end
101
+ end