-
Notifications
You must be signed in to change notification settings - Fork 2
/
Backup_EC2_to_S3
329 lines (286 loc) · 9.54 KB
/
Backup_EC2_to_S3
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
#######################################
#### WRITEN by Frederico de Souza #####
#### [email protected] #####
#### Free to use as in free beer #####
#######################################
require 'rubygems'
require 'ec2'
require 'fastthread'
require 'pathname'
require 'ftools'
require 'net/ssh'
require 'net/sftp'
require "ping"
require 'xmlsimple'
#########################
## SCRIPT SETTINGS ##
#########################
## Account Information ##
@unattended_mode = false
@access_key_id = ENV['AMAZON_ACCESS_KEY_ID']
@secret_access_key = ENV['AMAZON_SECRET_ACCESS_KEY']
@account_name = ENV['AMAZON_ACCOUNT_NAME']
## FOLDERS Information ##
# Local Folder to dump the SQL data
@time = Time.now
@image_name = "#{@time.year}_#{@time.month}_#{@time.day}"
@bucket_name = "#{@account_name}__EC2__#{@time.year}_#{@time.month}_#{@time.day}"
@lines = "\n----------------------------------------------------------"
puts "Welcome!"
puts "\n------------------"
puts "Program Variables:"
puts "\n------------------"
puts "- Access Key ID: #{@access_key_id}"
puts "- Secret Key ID: #{@secret_access_key}"
puts "- Account Name: #{@account_name}"
puts "- Image Name: #{@image_name}"
puts "- Bucket Name: #{@bucket_name}"
puts "- Local Time of Dump: #{@time}"
puts "- Unattended mode: #{@unattended_mode}"
puts @lines
puts "Is this Information correct?"
def check_answer
if @unattended_mode == false
puts "Press Y to Continue or N no Cancel."
yes_no = gets
yes_no.chomp!
case yes_no
when "Y","y","Yes","yes"
puts "Continuing"
when "N", "n", "No", "no"
puts "You chose to CANCEL, bye bye."
exit
when 'q', 'quit'
puts "You chose to QUIT, bye bye."
exit
else
puts "Invalid Answer."
check_answer
end
else
return true
end
end
# to print it nicely the data send
def to_file_size(num)
case num
when 0
return "0 byte"
when 1..1024
return "1K"
when 1025..1048576
kb = num/1024.0
return "#{f_to_dec(kb)} Kb"
when 1024577..1049165824
kb = num/1024.0
mb = kb / 1024.0
return "#{f_to_dec(mb)} Mb"
else
kb = num/1024.0
mb = kb / 1024.0
gb = mb / 1024.0
return "#{f_to_dec(gb)} Gb"
end
end
def f_to_dec(f, prec=2,sep='.')
num = f.to_i.to_s
dig = ((prec-(post=((f*(10**prec)).to_i%(10**prec)).to_s).size).times do post='0'+post end; post)
return num+sep+dig
end
# Function to send the files from local to the remote server
def send_files(dns)
begin
Net::SFTP.start(dns, :username => @server_username, :keys => @ssh_keys) do |sftp|
#:registry_options => { :logs => { :levels => { "sftp.*" => :debug } } }
@files_count = 0
@data_transferred = 0
# Check if destination directory at server exists
begin
sftp.opendir( @remote_destination )
puts "Remote Directory exists."
rescue
puts "Directory '#{@remote_destination}' does not exist, creating now. \n"
sftp.mkdir(@remote_destination, :permissions => 0777)
puts "Remote Directory was created."
end
# Check if destination directory was created
begin
sftp.opendir( @remote_destination )
rescue
puts "INFO: Directory '#{@remote_destination}' does not exist, and cannot be created. \n"
puts "Fix the errors and run again."
puts "EXIT now."
exit
end
@dest_dir = @remote_destination + "/" + @data_subdir
puts "INFO: Creating Remote subdirectory '#{@dest_dir}' with mode 700"
sftp.mkdir(@dest_dir, :permissions => 0700)
puts "Full Pathname localy is #{@full_pathname}."
p = Pathname.new(@full_pathname)
p.children.each do |item|
file_name = item.relative_path_from(Pathname.new(@full_pathname)).to_s
@files_count += 1
@data_transferred += item.size
puts "Putting Local File: '#{item}'"
puts "To Remote Server File: '#{@dest_dir}/#{file_name}'"
sftp.put_file "#{item}", "#{@dest_dir}/#{file_name}"
end
puts @lines
puts "Files Copied: #{@files_count}"
puts "Data Transfered: #{@data_transferred} bytes."
puts "done!"
end
rescue => exception
puts @lines
puts "There was an error: "
puts exception.to_s
exit
end
end
#############
## START ##
#############
## Execution Start here ##
def main_program
check_answer
# create the instance of the ec2 object
# do it now
puts @lines
puts "Loading EC2 Account"
begin
ec2 = EC2::Base.new( :access_key_id => @access_key_id, :secret_access_key => @secret_access_key )
rescue => exception
puts "FATAL ERROR: #{exception.to_s}"
puts "EC2 account cannot be loaded."
puts "Did you set AMAZON_ACCESS_KEY_ID and AMAZON_SECRET_ACCESS_KEY ? "
puts "Exiting now"
exit
end
puts "EC2 account loaded Successfully."
puts @lines
puts "Start AMI Instance #{@instance_id}? "
check_answer
begin
puts "Loading Instance"
puts "Be Patient, it might take a while..."
@running_instance = ec2.run_instances(:image_id => @instance_id)
sleep 2
puts "Success, Instance #{@instance_id} in loading now..."
rescue => exception
puts "There was an error loading the instance."
puts "#{exception.to_s}"
puts "Did you set instance_id correctly ? "
puts "Exiting now"
exit
end
### START MYSQL DUMP ###
puts @lines
puts "Starting MYSQL Dump \n"
sleep 1
if @all_databases
puts "INFO: Going to dump all databases into"
puts " '#{@full_pathname}'"
check_answer
else
puts "INFO: Going to dump '#{@databases.join(", ")}' databases into"
puts " '#{@full_pathname}'"
end
# Check if destination directory at local exists
begin
puts "INFO: Creating Directory '#{@full_pathname}' with mode 700"
FileUtils.mkdir_p @full_pathname, :mode => 0700
rescue
puts "WARNING: directory '#{@full_pathname}' could not be created."
puts "WARNING: Going to use '/tmp' folder."
@full_pathname = "/tmp/#{@data_subdir}"
end
# make the actual dump
puts @lines
puts "Starting MYSQL dump?"
check_answer
make_mysql_backup
puts "Done Dumping SQL data."
sleep 2
# check if the instance is already up
#if Ping.pingecho "ec2-67-202-36-60.compute-1.amazonaws.com", 5
# Wait about 5 Minutes for instance to load
puts @lines
puts "Instance is loading now.... Please wait."
# Wait 5 minutes, in order for the Instance to complete Loading
# It normally take 2 to 3 minutes, but, using 4 to be safe
# if instance didn't load, after this count finishes,
# the script will fails...
# Please FIX this or find a better way to do it.
puts "We must wait about 4 minutes to get the new instance IP."
sleep 60
puts "3 minutes left"
sleep 60
puts "2 minutes left"
sleep 62
puts "1 minute left"
sleep 60
# run_instance only returns instanceId as usefull data.
# We need to call describe instance later to the the assigned DNS.
# The DNS is dynamic, each time we load the ami, a new DNS is set.
@instance_real_id = @running_instance.instancesSet.item[0].instanceId
begin
# Now get the instace again, but with the corrent data, such as dnsName.
@instance = ec2.describe_instances(:instance_id => @instance_real_id)
# Convert the stringfied xml into real XML
@xml_data = XmlSimple.xml_in(@instance.xml)
@dns = @xml_data['reservationSet'][0]['item'][0]['instancesSet'][0]['item'][0]['dnsName'][0]
rescue => exception
puts "Error: #{exception}"
puts "No response, maybe the instance didn't load yet, waiting another 2 minutes."
puts "If this error continues. Check the script settings and run again."
sleep 120
retry
end
# Pinging machine
# you must allow ping before your ami can be pinged:
# ec2-authorize default -P icmp -t-1:-1
puts @lines
6.times do
puts "Pinging instance #{@dns}..."
if !Ping.pingecho(@dns, 5, 22)
puts "No response, instance didn't load yet, waiting anther 30 seconds"
sleep 30
end
end
if !Ping.pingecho(@dns, 5, 22)
puts "Something went wrong. Instance didn't load."
puts "Check manually the script settings and run again. Bye!"
exit
end
# send the file through SSH
puts "Good, instance loaded."
puts @lines
puts "Now Going to copy Data to #{@dns}."
send_files(@dns)
begin
puts "WARNING: Shutdown Instance now? "
begin
puts "Going to Shutdown instance in 60 Seconds..."
sleep 60
#ec2.terminate_instances(:image_id => @image_id)
rescue => exception
puts "Instance will not be Shutdown."
puts "There was an error terminating the instance:"
puts "#{exception.to_s}"
end
end
end
main_program
# EXIT PROGRAM HERE
### SOME BASIC COMMANDS EXAMPLES ###
## Note: If you want to use these commands from EC2sh, use @ec2 as the object instead of ec2.
## To view all images, output in XML format:
# ec2.describe_images.xml
## To view all images owned by a particular owner ID, output as a string (owner ID is an example):
#ec2.describe_images(:owner_id => '186621337741').to_s
## To run an instance of an image (image ID is an example; you can use any Amazon Machine Image (AMI) image you have uploaded or that is publicly available):
# ec2.run_instances(:image_id => 'ami-f9907590')
## To terminate an instance, based on the image ID (note that it can take up to an hour for the instance to no longer appear in queries):
# ec2.terminate_instances(:image_id => 'ami-f9907590')
## To create a security group:
# ec2.create_security_group(:group_name => "group name", :group_description => "group description")