-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbatch_mysql_dumper.py
153 lines (125 loc) · 5.34 KB
/
batch_mysql_dumper.py
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
#!/usr/bin/python
## MySQL Backup Script.
## Date : 01 Jaunuary 2018
## Author : Akshat Singh
#
# Copyright (C) <2018> <Akshat Singh>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""This script will take the databse dump of the databases
define in the array and save it in the defined directory."""
import os
import time
import shutil
import logging
import subprocess
import argparse
from argparse import RawTextHelpFormatter
import mysql.connector
# MySQL Credentials
DB_HOST = 'localhost'
DB_USER = 'root'
DB_USER_PASSWORD = 'XXXXXXXXXXX'
# Create the connection
CONNECTION = mysql.connector.connect(host=DB_HOST, user=DB_USER, passwd=DB_USER_PASSWORD)
CURSOR = CONNECTION.cursor() # get the cursor
CURSOR.execute("SHOW DATABASES")
DB_NAMES = []
for (databaseName,) in CURSOR:
if not databaseName in ('mysql', 'information_schema', 'performance_schema'):
DB_NAMES.append(databaseName)
BACKUP_DEST = '/Backup/BACKUPS/MySQLDUMPS/'
TIMESTAMP = time.strftime('%d-%m-%Y_%H:%M:%S')
BACKUPAREA = BACKUP_DEST + TIMESTAMP
def is_valid_logging_status(parser, arg):
"Function for checking logging status is valid or not."
if not arg in ('on', 'off'):
parser.error('\n\n\t{} is not a valid input for turning logging on/off! Please specify \n\
\r\t\"on\" for turning logging on and \"off\" for turning logging off. \n'
.format(arg))
return arg
## =========> Command line arguments parsing -- starts <========= ##
PARSER = argparse.ArgumentParser(description='\
************************************************************************************************\n\
********************** |MySQLDumper - MySQL DB Dumping Utility | **********************\n\
************************************************************************************************\n\
\n* This script will do the following task.\n\n* It will take the databse dump of the databases \
define in the array and save it in the defined directory.', formatter_class=RawTextHelpFormatter)
PARSER.add_argument('-l', '--log_file', help='Path of the log file.', metavar='<Log File>')
PARSER.add_argument('-ls', '--logging_onoff', help='Logging status On/Off',
metavar='<Logging on/off>', type=lambda x: is_valid_logging_status(PARSER, x))
ARGS = PARSER.parse_args()
## =========> Command line arguments parsing -- ends <========= ##
## =========> Logging Configurations -- starts <========= ##
LOGGER_FILE = ARGS.log_file
LOGGING_STATUS = ARGS.logging_onoff
LOG_DIRECTORY = "/var/log/"
if not LOGGER_FILE:
if not os.path.exists(LOG_DIRECTORY):
os.makedirs(LOG_DIRECTORY)
LOG_FILE = '/tmp/MySQLDumper.log'
else:
LOG_FILE = LOGGER_FILE + ".log"
# create logger
LOGGER = logging.getLogger('MySQLDumper')
LOGGER.setLevel(logging.DEBUG)
# Turning logging on or off
if LOGGING_STATUS:
LOGGER.disabled = bool(LOGGING_STATUS == 'off')
else:
LOGGER.disabled = False
# add a file handler
FILE_HANDLER = logging.FileHandler(LOG_FILE)
FILE_HANDLER.setLevel(logging.DEBUG)
# create console handler and set level to debug
CONSOLE_HANDLER = logging.StreamHandler()
CONSOLE_HANDLER.setLevel(logging.DEBUG)
# create formatter
FORMATTER = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s',
datefmt='%m/%d/%Y %I:%M:%S %p')
# add formatter to handlers
FILE_HANDLER.setFormatter(FORMATTER)
CONSOLE_HANDLER.setFormatter(FORMATTER)
# add ch to logger
LOGGER.addHandler(FILE_HANDLER)
LOGGER.addHandler(CONSOLE_HANDLER)
## =========> Logging Configurations -- ends <========= ##
# Checking if backup directory already exists or not; if not it will create it.
LOGGER.info("Creating backup directory at %s..", BACKUPAREA)
if not os.path.exists(BACKUPAREA):
os.makedirs(BACKUPAREA)
# Start taking the databases backup..
def db_dump():
"""Function for taking the database backups."""
for database in enumerate(DB_NAMES):
LOGGER.info("Taking Backup of : %s database..", DB_NAMES[database])
dump_cmd = "mysqldump -u " + DB_USER + " -h" + DB_HOST + " -p'" \
+ DB_USER_PASSWORD + "' " + DB_NAMES[database] + " > " \
+ BACKUPAREA + "/" + DB_NAMES[database] + ".sql"
try:
os.system(dump_cmd)
except mysql.connector.Error as exp:
LOGGER.error('MySQL Error: %s', exp)
LOGGER.info("Backup Finished.")
subprocess.call(['tar', 'zcvf', BACKUPAREA+".tar.gz", BACKUPAREA])
try:
shutil.rmtree(BACKUPAREA)
except shutil.Error as exp:
LOGGER.error('Error in moving archive : %s', exp)
except IOError as exp: # If source or destination doesn't exist
LOGGER.error('IOError : %s', exp.strerror)
# Executing the script.
if __name__ == "__main__":
db_dump()