[useful] MySQL datbase backup script
Here is a script i use for backing my website up. Its a simple shell scipt that runs the mysql dump command.
-pdatabasepassword
databasename >$(date).sql
so a typical usage of this might be:
[code]
mysqldump -uroot -pajellydoghnut
database1 >$(date).sql
]/code]
Where root is the username, ajellydoughnut is
the password and database1 is the database i
want to backup.
The advantage to doing it this way is that i can
go ahead and add this script as a cron joob to be
executed say every Tuesday at 11am meaning
that my database is backed up automatically for
me and a backup of that database is downloaded
to wherever this script is stored in .sql format
(typically i put it in a folder of its own in my
home directory)
Another handy thing is that because
of >$(date).sql on the end the script automatically
sets the current date and time as the filename
meaning no more messing around looking
through the creation time, its just there in the
filename ![]()
Hope this helps someone.
-Lenswipe
Comments
-
#!/bin/sh
USER=root
PSW=PassWord
FN='/bin/date +%Y-%m-%d'
BK_DIR="/root/MySQL_BACKUP"
PARAM="--quote-names --add-drop-table -u$USER -p$PSW"
cd $BK_DIR
mysqldump ${PARAM} trac > trac.sql
mysqldump ${PARAM} zabbix > zabbix.sql
tar -cvf mysql_$(date +%d.%m.%y).tar *.sql
gzip mysql_$(date +%d.%m.%y).tar
chmod 600 ${BK_DIR}/mysql_$(date +%d.%m.%y).tar.gz0 -
is ther an adantage to doing it that way?0
-
yes. I guess portability is one big advantage with this last one. You can use it in another server just changing the variables. Also, its a complete script (#!/bin/sh....)0
Categories
- All Categories
- 178 LFX Mentorship
- 178 LFX Mentorship: Linux Kernel
- 775 Linux Foundation IT Professional Programs
- 384 Cloud Engineer IT Professional Program
- 175 Advanced Cloud Engineer IT Professional Program
- 75 DevOps IT Professional Program - Discontinued
- 7 DevOps & GitOps IT Professional Program
- 103 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- 12 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 32 Cloud & Containers Training
- 3 Cybersecurity Training
- 3 DevOps & Site-Reliability Training
- 1 Linux Kernel Development Training
- 2 Networking Training
- 2 Open Source Best Practice Training
- 5 System Administration Training
- 1 System Engineering Training
- 6 Web & Application Development Training
- 798 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 96 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 92 Storage
- 772 Linux Distributions
- 81 Debian
- 68 Fedora
- 24 Linux Mint
- 13 Mageia
- 24 openSUSE
- 151 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 470 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 101 Linux Security
- 79 Network Management
- 102 System Management
- 46 Web Management
- 166 Mobile Computing
- 32 Android
- 119 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 407 Off Topic
- 128 Introductions
- 35 Study Material
- 1K Programming and Development
- 310 Kernel Development
- 720 Software Development
- 1K Software
- 418 Applications
- 182 Command Line
- 5 Compiling/Installing
- 71 Games
- 320 Installation
- Archived
- 183 Small Talk
- 2 LFD140 Class Forum
- 1.4K LFS258 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)