/usr/bin/mysqldbcopy is in mysql-utilities 1.3.5-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #! /usr/bin/python
#
# Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
#
# 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; version 2 of the License.
#
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
"""
This file contains the copy database utility which ensures a database
is exactly the same among two servers.
"""
from mysql.utilities.common.tools import check_python_version
# Check Python version compatibility
check_python_version()
import os
import re
import sys
import time
from mysql.utilities.command import dbcopy
from mysql.utilities.common.messages import PARSE_ERR_DB_PAIR
from mysql.utilities.common.messages import PARSE_ERR_DB_PAIR_EXT
from mysql.utilities.common.my_print_defaults import MyDefaultsReader
from mysql.utilities.common.options import setup_common_options
from mysql.utilities.common.ip_parser import parse_connection
from mysql.utilities.common.options import add_skip_options
from mysql.utilities.common.options import add_verbosity, check_verbosity
from mysql.utilities.common.options import check_skip_options, add_engines
from mysql.utilities.common.options import add_all, check_all, add_locking
from mysql.utilities.common.options import add_regexp, add_rpl_mode
from mysql.utilities.common.options import check_rpl_options, add_rpl_user
from mysql.utilities.common.sql_transform import is_quoted_with_backticks
from mysql.utilities.common.sql_transform import remove_backtick_quoting
from mysql.utilities.common.tools import check_connector_python
from mysql.utilities.exception import FormatError
from mysql.utilities.exception import UtilError
# Constants
NAME = "MySQL Utilities - mysqldbcopy "
DESCRIPTION = "mysqldbcopy - copy databases from one server to another"
USAGE = "%prog --source=user:pass@host:port:socket " \
"--destination=user:pass@host:port:socket orig_db:new_db"
# Check for connector/python
if not check_connector_python():
sys.exit(1)
def print_elapsed_time(start_test):
"""Print the elapsed time to stdout (screen)
start_test[in] The starting time of the test
"""
stop_test = time.time()
display_time = int((stop_test - start_test) * 100)
if display_time == 0:
display_time = 1
print("Time: %6d\n" % display_time)
# Setup the command parser
parser = setup_common_options(os.path.basename(sys.argv[0]),
DESCRIPTION, USAGE, True, False)
# Setup utility-specific options:
# Connection information for the source server
parser.add_option("--source", action="store", dest="source",
type = "string", default="root@localhost:3306",
help="connection information for source server in " + \
"the form: <user>[:<password>]@<host>[:<port>][:<socket>]"
" or <login-path>[:<port>][:<socket>].")
# Connection information for the destination server
parser.add_option("--destination", action="store", dest="destination",
type = "string",
help="connection information for destination server in " + \
"the form: <user>[:<password>]@<host>[:<port>][:<socket>]"
" or <login-path>[:<port>][:<socket>].")
# Overwrite mode
parser.add_option("-f", "--force", action="store_true", dest="force",
help="drop the new database or object if it exists",
default=False)
# Threaded/connection mode
parser.add_option("--threads", action="store", dest="threads",
default=1, help="use multiple threads (connections) "
"for insert")
# Add the exclude database option
parser.add_option("-x", "--exclude", action="append", dest="exclude",
type="string", default=None, help="exclude one or more "
"objects from the operation using either a specific name "
"(e.g. db1.t1), a LIKE pattern (e.g. db1.t% or db%.%) or a "
"REGEXP search pattern. To use a REGEXP search pattern for "
"all exclusions, you must also specify the --regexp option. "
"Repeat the --exclude option for multiple exclusions.")
# Add the all database options
add_all(parser, "databases")
# Add the skip common options
add_skip_options(parser)
# Add verbosity and quiet (silent) mode
add_verbosity(parser, True)
# Add engine options
add_engines(parser)
# Add locking options
add_locking(parser)
# Add regexp
add_regexp(parser)
# Replication user and password
add_rpl_user(parser, None)
# Add replication options but don't include 'both'
add_rpl_mode(parser, False, False)
# Add option to skip GTID generation
parser.add_option("--skip-gtid", action="store_true", default=False,
dest="skip_gtid", help="skip creation and execution of "
"GTID statements during copy.")
# Now we process the rest of the arguments.
opt, args = parser.parse_args()
try:
skips = check_skip_options(opt.skip_objects)
except UtilError:
_, e, _ = sys.exc_info()
print("ERROR: %s" % e.errmsg)
sys.exit(1)
# Fail if no options listed.
if opt.destination is None:
parser.error("No destination server specified.")
# Fail if no db arguments or all
if len(args) == 0 and not opt.all:
parser.error("You must specify at least one database to copy or "
"use the --all option to copy all databases.")
# Fail if we have arguments and all databases option listed.
check_all(parser, opt, args, "databases")
# Warn if quiet and verbosity are both specified
check_verbosity(opt)
# Process --exclude values to remove unnecessary quotes (when used) in order
# to avoid further matching issues.
if opt.exclude:
# Remove unnecessary outer quotes.
exclude_list = [pattern.strip("'\"") for pattern in opt.exclude]
else:
exclude_list = opt.exclude
# Set options for database operations.
options = {
"skip_tables" : "tables" in skips,
"skip_views" : "views" in skips,
"skip_triggers" : "triggers" in skips,
"skip_procs" : "procedures" in skips,
"skip_funcs" : "functions" in skips,
"skip_events" : "events" in skips,
"skip_grants" : "grants" in skips,
"skip_create" : "create_db" in skips,
"skip_data" : "data" in skips,
"force" : opt.force,
"verbose" : opt.verbosity >= 1,
"quiet" : opt.quiet,
"threads" : opt.threads,
"debug" : opt.verbosity == 3,
"exclude_patterns" : exclude_list,
"new_engine" : opt.new_engine,
"def_engine" : opt.def_engine,
"all" : opt.all,
"locking" : opt.locking,
"use_regexp" : opt.use_regexp,
"rpl_user" : opt.rpl_user,
"rpl_mode" : opt.rpl_mode,
"verbosity" : opt.verbosity,
"skip_gtid" : opt.skip_gtid,
}
# Parse source connection values
try:
# Create a basic configuration reader first for optimization purposes.
# I.e., to avoid repeating the execution of some methods in further
# parse_connection methods (like, searching my_print_defaults tool).
config_reader = MyDefaultsReader(options, False)
source_values = parse_connection(opt.source, config_reader, options)
except FormatError:
_, err, _ = sys.exc_info()
parser.error("Source connection values invalid: %s." % err)
except UtilError:
_, err, _ = sys.exc_info()
parser.error("Source connection values invalid: %s." % err.errmsg)
# Parse destination connection values
try:
dest_values = parse_connection(opt.destination, config_reader, options)
except FormatError:
_, err, _ = sys.exc_info()
parser.error("Destination connection values invalid: %s." % err)
except UtilError:
_, err, _ = sys.exc_info()
parser.error("Destination connection values invalid: %s."
% err.errmsg)
# Check to see if attempting to use --rpl on the same server
if (opt.rpl_mode or opt.rpl_user) and source_values == dest_values:
parser.error("You cannot use the --rpl option for copying on the "
"same server.")
# Check replication options
check_rpl_options(parser, opt)
# Build list of databases to copy
db_list = []
for db in args:
# Split the database names considering backtick quotes
grp = re.match(r"(`(?:[^`]|``)+`|\w+)(?:(?:\:)(`(?:[^`]|``)+`|\w+))?", db)
if not grp:
parser.error(PARSE_ERR_DB_PAIR.format(db_pair=db,
db1_label='orig_db',
db2_label='new_db'))
db_entry = grp.groups()
orig_db, new_db = db_entry
# Verify if the size of the databases matched by the REGEX is equal to the
# initial specified string. In general, this identifies the missing use
# of backticks.
matched_size = len(orig_db)
if new_db:
# add 1 for the separator ':'
matched_size = matched_size + 1
matched_size = matched_size + len(new_db)
if matched_size != len(db):
parser.error(PARSE_ERR_DB_PAIR_EXT.format(db_pair=db,
db1_label='orig_db',
db2_label='new_db',
db1_value=orig_db,
db2_value=new_db))
# Remove backtick quotes (handled later)
orig_db = remove_backtick_quoting(orig_db) \
if is_quoted_with_backticks(orig_db) else orig_db
new_db = remove_backtick_quoting(new_db) \
if new_db and is_quoted_with_backticks(new_db) else new_db
db_entry = (orig_db, new_db)
db_list.append(db_entry)
try:
# record start time
if opt.verbosity >= 3:
start_test = time.time()
dbcopy.copy_db(source_values, dest_values, db_list, options)
if opt.verbosity >= 3:
print_elapsed_time(start_test)
except UtilError:
_, e, _ = sys.exc_info()
print("ERROR: %s" % e.errmsg)
sys.exit(1)
sys.exit()
|