22nd Jul, 2010
Getting live data with mysqldump and fabric
I love automating things. I have a computing philosophy that pretty much forces me to automate anything I’ve done more than a couple of times. So I thought it’d be fun document my latest attempt at automation while I’m doing it. Here goes:
First off, I thought I’d use some tools that I’m pretty familiar with: Fabric and mysqldump. The basic idea is to write something that’ll achieve the following:
- Dump the database on the source machine
- Archive the resulting script
- Download the archive
- Extract the archive on a target machine
- Run the script to create the database
This assumes that the database has been created on the local machine. There are 2 settings modules imported at the start of this script called settings_live and settings_dev - they are both django settings files, one for the live website, and one for the development environment.
def db_to_dev():
msg = prompt("Sure you want to get '%s' from '%s>%s'?" % (settings_dev.DATABASES['default']['NAME'], env.hosts[0], env.database), default="y/n")
if msg == "y":
run('mysqldump --user %s --password=%s %s | gzip > /tmp/%s.sql.gz' % (
env.db_user,
env.db_password,
env.database,
env.database
))
get('/tmp/%s.sql.gz' % env.database, '/tmp/%s.sql.gz' % env.database)
local('gunzip < /tmp/%s.sql.gz | mysql -u %s -p%s -D %s' % (
settings_dev.DATABASES['default']['NAME'],
settings_dev.DATABASES['default']['USER'],
settings_dev.DATABASES['default']['PASSWORD'],
settings_dev.DATABASES['default']['NAME']
), capture=False)
Ok, so this basically runs 3 commands:
mysqldump --user %s --password=%s %s | gzip > /tmp/%s.sql.gz
This one dumps the database as SQL into a gzipped file in /tmp. The get() command downloads the archive.
gunzip < /tmp/%s.sql.gz | mysql -u %s -p%s -D %s
This unzips it and pipes the sql straight to mysql.
There is a support function called live() that sets up the environment for dumping and zipping up the database.
def live():
"""Stub function, doesn't do anything but must be called before
anything else to set up the environment"""
env.django_settings = settings_live
#set up our environment
env.hosts = ['live.server.website.com']
env.user = 'serverlogin'
env.password = 'serverpassword'
#settings from django
env.app_name = env.django_settings.APP_NAME
env.email = env.django_settings.ADMINS[0][1]
env.database = env.django_settings.DATABASES['default']['NAME']
env.db_user = env.django_settings.DATABASES['default']['USER']
env.db_password = env.django_settings.DATABASES['default']['PASSWORD']
The database can then be moved from live to dev with the following command:
fab live db_to_dev
I have also put in a very similar function together for moving from the development database to another server.
def db_from_dev():
msg = prompt("Sure you want to put '%s' on '%s>%s'?" % (settings_dev.DATABASES['default']['NAME'], env.hosts[0], env.database), default="y/n")
if msg == "y":
local('mysqldump --user %s --password=%s %s | gzip > /tmp/%s.sql.gz' % (
settings_dev.DATABASES['default']['USER'],
settings_dev.DATABASES['default']['PASSWORD'],
settings_dev.DATABASES['default']['NAME'],
settings_dev.DATABASES['default']['NAME']
))
put('/tmp/%s.sql.gz' % env.database, '/tmp/%s.sql.gz' % env.database)
run('gunzip < /tmp/%s.sql.gz | mysql -u %s -p%s -D %s' % (
env.database,
env.db_user,
env.db_password,
env.database
), capture=False)
This is basically just a reversal of db_to_dev() and requires a function similar to live() to be called first.
fab [other_env] db_from_dev
« Satchmo in a virtualenv | Django: From request to response »
Comments
1 Chris says...
Great guide. I[HTML_REMOVED]m glad someone else had the same idea. My only suggestion would be to use the --single-transaction and --quick parameters with mysqldump. Without those, I found my dump would randomly be missing tables based on how the dump interferred or interacted with the current database usage.
Posted at 9:41 p.m. on 10th Mar, 2011
2 ELLIOTTMyra says...
If you want to buy real estate, you will have to get the [HTML_REMOVED]a href=[HTML_REMOVED]http://bestfinance-blog.com[HTML_REMOVED][HTML_REMOVED]loan[HTML_REMOVED]/a[HTML_REMOVED]. Furthermore, my brother all the time utilizes a car loan, which occurs to be really useful.
Posted at 2:34 a.m. on 12th May, 2011
3 one way link building service says...
Every one would like to devellop good deal. Nevertheless, a few of these people get that. The point is that they don[HTML_REMOVED]t contact link building companies.
Posted at 2:48 a.m. on 27th Sep, 2011
4 acronis true image 9.1 server for windows says...
if you want, I[HTML_REMOVED]ll write you articles. Copywriter looking for work
Posted at 10:12 a.m. on 28th Sep, 2011
5 seo analysis tool says...
I have a few question to you, write to those I do not e-mail
Posted at 5:45 a.m. on 1st Oct, 2011
6 contacts says...
Good way to receive a success is to get the very interesting essay writing services or facts connecting with this post, or just get the information just about blog opting for the writing organization.
Posted at 4:27 p.m. on 4th Oct, 2011
7 buy visual foxpro 9 says...
thank you for helpful tips and simply good info
Posted at 4:05 a.m. on 11th Oct, 2011
8 online research paper says...
I guess that it is not bright solution to waste time accomplishing the literature essays. Lots of students go more simple way! They do not perform the essays order by their own efforts. They order essay from the great admission essay writing service.
Posted at 3:11 p.m. on 13th Oct, 2011
9 essay example says...
I was looking for professional to aid me compose my term essays. Certainly I noticed the essay papers service, which aided me very much.
Posted at 10:21 p.m. on 15th Oct, 2011
10 buy essay says...
Do you think that can be not real to get free time writing academic papers? All supposes to be available. For example, you will avoid academic papers creating when order custom essays. So, everything is simple, as you notice!
Posted at 10:33 p.m. on 15th Oct, 2011
11 framemaker 10 x64 for sale says...
You are my role models. Thanks for the article
Posted at 12:34 a.m. on 21st Oct, 2011
12 cheap Syncfusion says...
Many thanks for your information! Honestly I have never seen anything that interesting.
Posted at 12:55 p.m. on 26th Oct, 2011
13 writing jobs says...
Good basis of stuff referring to this good topic some people see, at the freelance writers job service.
Posted at 5:06 a.m. on 3rd Nov, 2011
14 pay day loan no faxing says...
I am a long time ago I read your blog and has long been saying that you[HTML_REMOVED]re a great writer
Posted at 1:14 a.m. on 17th Nov, 2011
15 achat finasteride says...
You are my role models. Thanks for the article
Posted at 12:29 p.m. on 17th Nov, 2011
17 cialis en ligne says...
Hi! Your article rocks as well as being a legitimate wonderful understand!??
Posted at 3:25 p.m. on 18th Nov, 2011
18 Comprar Viagra Generico says...
Really worthwhile article. Pay attention
Posted at 5:23 p.m. on 22nd Nov, 2011
19 bad credit guaranteed loan unsecured says...
You are my role models. Thanks for the article
Posted at 12:43 a.m. on 3rd Dec, 2011
20 Cialis Italia says...
Reading this article - the gift of your time
Posted at 10:38 p.m. on 5th Dec, 2011
21 cash loans for bad credit says...
Thank you for what you have. This is the best post I[HTML_REMOVED]ve read
Posted at 8:55 a.m. on 7th Dec, 2011
23 amazon promotional code says...
oejrujbohfpshf, [HTML_REMOVED]a href=[HTML_REMOVED]http://stripnomics.com/[HTML_REMOVED][HTML_REMOVED]Adult version of chatroulette[HTML_REMOVED]/a[HTML_REMOVED], ZmENyIC, [url=http://stripnomics.com/]Chatroulette penis[/url], NiCadBP, [HTML_REMOVED]http://stripnomics.com/[HTML_REMOVED] Chat roulette sex clip, NUsgRMo, [HTML_REMOVED]a href=[HTML_REMOVED]http://collegeinformations.com/[HTML_REMOVED][HTML_REMOVED]Ivy tech community college change of information form[HTML_REMOVED]/a[HTML_REMOVED], SNOMnst, [url=http://collegeinformations.com/]Request for status information letter macomb community college[/url], iUdTuyf, [HTML_REMOVED]http://collegeinformations.com/[HTML_REMOVED] community college information, sHFVrKj, [HTML_REMOVED]a href=[HTML_REMOVED]http://awesomedealszone.com/[HTML_REMOVED][HTML_REMOVED][HTML_REMOVED]/a[HTML_REMOVED], PLuuepJ, [url=http://awesomedealszone.com/]amazon coupon code[/url], SBuHJBe, [HTML_REMOVED]http://awesomedealszone.com/[HTML_REMOVED] , iOhVfSq, [HTML_REMOVED]a href=[HTML_REMOVED]http://www.withoutmeasure.com/[HTML_REMOVED][HTML_REMOVED]Sex Toys[HTML_REMOVED]/a[HTML_REMOVED], RdAKbzz, [url=http://www.withoutmeasure.com/]Sex Toys[/url], jrCOotI, [HTML_REMOVED]http://www.withoutmeasure.com/[HTML_REMOVED] Sex Toys, MJJjQSe, [HTML_REMOVED]a href=[HTML_REMOVED]http://campusmotel.com/[HTML_REMOVED][HTML_REMOVED]Stickam videos[HTML_REMOVED]/a[HTML_REMOVED], uxfXQAt, [url=http://campusmotel.com/]Stickam girls[/url], fYUJWyK, [HTML_REMOVED]http://campusmotel.com/[HTML_REMOVED] Free stickam videos, xZKijuD, [HTML_REMOVED]a href=[HTML_REMOVED]http://dancingbear-hd.com/[HTML_REMOVED][HTML_REMOVED]Dancing Bear[HTML_REMOVED]/a[HTML_REMOVED], MeZcxYM, [url=http://dancingbear-hd.com/]Http://members.dancingbear.com/[/url], ADvuYfw, [HTML_REMOVED]http://dancingbear-hd.com/[HTML_REMOVED] Dancingbear wife, ZvfIVSK.
Posted at 9:58 p.m. on 24th Dec, 2011
24 amazon coupon says...
jthyfjbohfpshf, [HTML_REMOVED]a href=[HTML_REMOVED]http://awesomedealszone.com/[HTML_REMOVED][HTML_REMOVED]amazon[HTML_REMOVED]/a[HTML_REMOVED], nHyrhAP, [url=http://awesomedealszone.com/][/url], YLtngwp, [HTML_REMOVED]http://awesomedealszone.com/[HTML_REMOVED] amazon promotional code, acYJqAq, [HTML_REMOVED]a href=[HTML_REMOVED]http://ordinelevitra.com/[HTML_REMOVED][HTML_REMOVED]Buy cheap levitra[HTML_REMOVED]/a[HTML_REMOVED], XxIGOKZ, [url=http://ordinelevitra.com/]Canada levitra[/url], AZLUDRr, [HTML_REMOVED]http://ordinelevitra.com/[HTML_REMOVED] Levitra, yiePnGC, [HTML_REMOVED]a href=[HTML_REMOVED]http://dancingbear-hd.com/[HTML_REMOVED][HTML_REMOVED]Dancingbear com[HTML_REMOVED]/a[HTML_REMOVED], wtWYCCh, [url=http://dancingbear-hd.com/]Dancingbear porn[/url], XrQTkLu, [HTML_REMOVED]http://dancingbear-hd.com/[HTML_REMOVED] DancingBear, gBJCstR, [HTML_REMOVED]a href=[HTML_REMOVED]http://bestdiscountszone.com/[HTML_REMOVED][HTML_REMOVED]pop cap games coupon[HTML_REMOVED]/a[HTML_REMOVED], WJnApSM, [url=http://bestdiscountszone.com/]coupon code for popcap games[/url], StEgFSr, [HTML_REMOVED]http://bestdiscountszone.com/[HTML_REMOVED] coupons for popcap games, DcEBGBN, [HTML_REMOVED]a href=[HTML_REMOVED]http://www.spoiler4movie.com/[HTML_REMOVED][HTML_REMOVED]Purchase ambien online overnight[HTML_REMOVED]/a[HTML_REMOVED], YgCrTAw, [url=http://www.spoiler4movie.com/]Purchase ambien sleeping pill[/url], PPikJVe, [HTML_REMOVED]http://www.spoiler4movie.com/[HTML_REMOVED] Buy ambien online pharmacy, BrQCUxa, [HTML_REMOVED]a href=[HTML_REMOVED]http://kamagramanuale.com/[HTML_REMOVED][HTML_REMOVED]Anodyne kamagra gastenboek bericht naam e-mail[HTML_REMOVED]/a[HTML_REMOVED], LEAcGdt, [url=http://kamagramanuale.com/]Cheapest kamagra uk[/url], MdSsuFX, [HTML_REMOVED]http://kamagramanuale.com/[HTML_REMOVED] Kamagra soft tab, hKTVJyh.
Posted at 3:11 a.m. on 25th Dec, 2011
25 mortgage loans says...
People in all countries receive the loan in various creditors, just because it is comfortable.
Posted at 2:18 p.m. on 28th Dec, 2011
26 camera review says...
thank you for helpful tips and simply good info
Posted at 10:12 a.m. on 6th Jan, 2012
27 garmin nuvi 1490t review says...
I found what I was looking for. great article, thanks
Posted at 10:36 p.m. on 6th Jan, 2012
28 best digital camera review says...
This is a set of words, not an essay. you are incompetent
Posted at 5:41 p.m. on 8th Jan, 2012
29 laptop says...
Hey, buddy, I have not figured out how to subscribe
Posted at 12:34 a.m. on 10th Jan, 2012
30 GPS Navigator says...
I will not talk about your competence, the article simply disgusting
Posted at 8:37 p.m. on 11th Jan, 2012
31 t-mobile phones says...
Not so bad. Interesting things here
Posted at 8:10 a.m. on 12th Jan, 2012
32 acer laptops says...
This is exactly what I was looking for, thanks
Posted at 8:48 a.m. on 12th Jan, 2012
33 best laptop says...
if you want, I[HTML_REMOVED]ll write you articles. Copywriter looking for work
Posted at 9:07 p.m. on 12th Jan, 2012
37 payday loans fast says...
Not so bad. Interesting things here
Posted at 6:35 p.m. on 18th Jan, 2012
38 low interest payday loans says...
I have read not one article on your blog. You[HTML_REMOVED]re a big lad
Posted at 7:46 p.m. on 18th Jan, 2012
39 fast cash loan guaranteed says...
This is exactly what I was looking for, thanks
Posted at 8 p.m. on 18th Jan, 2012
41 paydays loans online says...
really good things here, just thanks
Posted at 11:28 p.m. on 19th Jan, 2012
42 buy cialis says...
It[HTML_REMOVED]s a pity that few people know this information bcause it is really helpful. [HTML_REMOVED]a href=http://onlinepharminfo.com/cialis.html[HTML_REMOVED]order cialis[HTML_REMOVED]/a[HTML_REMOVED]
Posted at 11:53 p.m. on 20th Jan, 2012
43 garenteed fax free payday loan says...
You just copied someone else[HTML_REMOVED]s story
Posted at 9:30 p.m. on 25th Jan, 2012
45 purchase kamagra says...
I think I[HTML_REMOVED]ll bookmark your blog, as it brings a lot of new great and useful ideas and sollutions! [HTML_REMOVED]a href=http://ligasvvtrudi6.posterous.com/buy-kamagra-online-without-prescription[HTML_REMOVED]buy kamagra[HTML_REMOVED]/a[HTML_REMOVED]
Posted at 3:33 p.m. on 30th Jan, 2012
46 adult free chat says...
I have always wanted to learn more about these things. You gave me the chance, and I[HTML_REMOVED]m very glad about this! adult online chat room [HTML_REMOVED]a href=[HTML_REMOVED]http://stardustwebcams.com/blog/adult-live-chat-sites-the-secret-story-of-an-amazing-success/[HTML_REMOVED][HTML_REMOVED]adult live chat[HTML_REMOVED]/a[HTML_REMOVED] chat world
Posted at 4:06 a.m. on 31st Jan, 2012
47 bma group loans says...
All material copied from another source
Posted at 5:44 a.m. on 3rd Feb, 2012
Have your say!