To get the size of all databases in MySQL in GB, you can use the following query:
SELECT table_schema AS database_name,
ROUND(SUM(data_length + index_length) / 1024 / 1024 / 1024, 2) AS size_in_GB
FROM information_schema.tables
GROUP BY table_schema;
Create root user
CREATE USER 'dba'@'%' IDENTIFIED BY 'A$Ea`LQCd+CD5_=^';
ALTER USER 'dba'@'%' IDENTIFIED WITH mysql_native_password BY 'A$Ea`LQCd+CD5_=^';
GRANT ALL PRIVILEGES ON *.* TO 'dba'@'%' WITH GRANT OPTION;
GRANT CREATE USER ON *.* TO 'dba'@'%';
FLUSH PRIVILEGES
mysql -u dba -p'A$Ea`LQCd+CD5_=^'
Backup
Schema
mydumper --threads 2 --user dba --password 'A$Ea`LQCd+CD5_=^' --host 172.16.1.6 --compress --tz-utc --verbose 3 --compress-protocol --outputdir /home/ubuntu/backup/scalenut/schema --no-data --regex '^(?!(mysql|sys|information_schema|performance_schema))'
nohup mydumper --threads 4 --user dba --password 'A$Ea`LQCd+CD5_=^' --host 172.16.1.6 --database 'phpmyadmin,scalenut_prod' --compress --tz-utc --verbose 3 --compress-protocol --outputdir /home/ubuntu/backup/scalenut > mydumper_output.log 2>&1 &
Multiple databases
nohup mydumper --threads 2 --user dba --password 'A$Ea`LQCd+CD5_=^' --host 172.16.1.6 --compress --tz-utc --verbose 3 --compress-protocol --outputdir /home/ubuntu/backup/scalenut --rows 10000 --regex '^(?!(mysql|sys|information_schema|performance_schema))' > mydumper_output.log 2>&1 &
nohup mydumper --threads 2 --user dba --password 'A$Ea`LQCd+CD5_=^' --host 10.0.40.4 --compress --tz-utc --verbose 3 --compress-protocol --outputdir /home/ubuntu/backup/schema --regex '^(?!(mysql|sys|information_schema|performance_schema))' > mydumper_output.log 2>&1 &
Restore
nohup myloader -d /home/ubuntu/backup -h 10.0.40.4 -u dba -p 'A$Ea`LQCd+CD5_=^' --overwrite-tables --queries-per-transaction 10000 --verbose 3 --threads 3 > myloader.log 2>&1 &
nohup myloader -d /home/ubuntu/backup/webtuneprodmysql -u dba -p 'V6j$&=hu>A>f-IU' --overwrite-tables --verbose 3 --threads 3 > myloader.log 2>&1 &
Show All Tables row count
SELECT
TABLE_NAME,
TABLE_ROWS
FROM
INFORMATION_SCHEMA.TABLES
WHERE
TABLE_SCHEMA = 'scalenut';
Migrate Users
Take dump
mysqldump -u root -p'V6j$&=hu>A>f-IU' --databases mysql --tables user db tables_priv columns_priv procs_priv proxies_priv global_grants --skip-add-drop-table --no-create-info --insert-ignore --set-gtid-purged=OFF --flush-privileges --single-transaction > mysql_privileges_full.sql
Restore
- Use below command to restore
mysql --user=root mysql --password < mysql_privileges_full.sql
- Flush privileges
FLUSH PRIVILEGES;
Restore Process
DELETE FROM mysql.user WHERE User IN ('root', 'mysql.sys', 'mysql.session', 'mysql.infoschema', 'debian-sys-maint', 'localhost-debian-sys-maint');
FLUSH PRIVILEGES;
CREATE USER 'db'@'localhost' IDENTIFIED BY 'V6j$&=hu>A>f-IU';
GRANT ALL PRIVILEGES ON *.* TO 'db'@'localhost' WITH GRANT OPTION;
GRANT CREATE USER ON *.* TO 'db'@'localhost';
FLUSH PRIVILEGES ;
mysql -u db -p'V6j$&=hu>A>f-IU'
mysql --user=dba --host 10.0.3.28 --password < all-users_privileges-timestamp.sql
Ref - https://stackoverflow.com/questions/3982299/using-mysqldump-and-database-users
my.cnf
[client]
#password = your_password
port = 3306
socket = /var/run/mysqld/mysqld.sock
[mysqld]
port = 3306
bind-address = 0.0.0.0
datadir = /var/lib/mysql
socket = /var/run/mysqld/mysqld.sock
pid-file = /var/run/mysqld/mysqld.pid
sql_mode = ''
#skip-grant-tables
binlog_format=ROW
collation-server = utf8_general_ci
init-connect='SET NAMES utf8'
character-set-server = utf8
collation-server = utf8mb4_0900_ai_ci
character-set-server = utf8mb4
init-connect='SET NAMES utf8mb4'
#skip-grant-tables = FALSE
log-raw = OFF
local-infile = 1
master-info-repository = TABLE
plugin-load = validate_password.so
validate-password = FORCE_PLUS_PERMANENT
validate-password-policy = STRONG
validate-password-special-char-count = 1
validate-password-number-count = 1
validate-password-mixed-case-count = 1
validate-password-length = 14
skip-symbolic-links = YES
# Logging configuration.
log-error = /var/log/mysql/mysql.err
# Slow query log configuration.
slow_query_log = 1
slow_query_log_file = /var/log/mysql/mysql-slow.log
long_query_time = 2
# Replication
server-id = 1
log_bin = mysql-bin
log-bin-index = mysql-bin.index
#expire_logs_days = 5
max_binlog_size = 100M
binlog_format = MIXED
#binlog_do_db = scalenut_prod
# Disabling symbolic-links is recommended to prevent assorted security risks
#symbolic-links = 0
# User is ignored when systemd is used (fedora >= 15).
user = mysql
# http://dev.mysql.com/doc/refman/5.5/en/performance-schema.html
#;performance_schema
# Memory settings.
key_buffer_size = 256M
max_allowed_packet = 1G
table_open_cache = 256
sort_buffer_size = 1M
read_buffer_size = 1M
read_rnd_buffer_size = 4M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
#query_cache_type = 0
#query_cache_size = 16M
#query_cache_limit = 1M
max_connections = 151
tmp_table_size = 16M
max_heap_table_size = 16M
group_concat_max_len = 1024
join_buffer_size = 262144
# Other settings.
wait_timeout = 28800
interactive_timeout = 28800
net_read_timeout = 3600
net_write_timeout = 3600
lower_case_table_names = 0
event_scheduler = OFF
# InnoDB settings.
#innodb_large_prefix = 1
#innodb_file_format = barracuda
innodb_file_per_table = 1
innodb_buffer_pool_size = 256M
innodb_log_file_size = 64M
innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 1
innodb_lock_wait_timeout = 50
[mysqldump]
max_allowed_packet = 200M
[mysqld_safe]
pid-file = /var/run/mysqld/mysqld.pid
SHOW CREATE TABLE writer_generates;
ALTER TABLE writer_generates
CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
Mysql-8 config
[client]
# password = your_password
port = 3306
socket = /var/run/mysqld/mysqld.sock
[mysqld]
port = 3306
bind-address = 0.0.0.0
datadir = /var/lib/mysql
socket = /var/run/mysqld/mysqld.sock
pid-file = /var/run/mysqld/mysqld.pid
sql_mode = ''
#gtid-mode = ON
#enforce-gtid-consistency
# skip-grant-tables = FALSE
log-raw = OFF
# local-infile = 0
master-info-repository = TABLE
skip-symbolic-links = YES
# Logging configuration
log-error = /var/log/mysql/mysql.err
# Slow query log configuration
slow_query_log = 1
slow_query_log_file = /var/log/mysql/mysql-slow.log
long_query_time = 10
# Replication
server-id = 1
log_bin = mysql-bin
log-bin-index = mysql-bin.index
expire_logs_days = 10
max_binlog_size = 134217728
binlog_format = ROW
binlog_row_image = MINIMAL
sync_binlog = 1
replicate-do-db = webtune_prod
binlog_do_db = webtune_prod
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links = 0
# User is ignored when systemd is used (fedora >= 15).
user = mysql
# http://dev.mysql.com/doc/refman/5.5/en/performance-schema.html
; performance_schema
# Memory settings
key_buffer_size = 1G
max_allowed_packet = 2G
table_open_cache = 6000
sort_buffer_size = 262144
read_buffer_size = 262144
read_rnd_buffer_size = 524288
myisam_sort_buffer_size = 64M
thread_cache_size = 27
max_connections = 2000
tmp_table_size = 16777216
max_heap_table_size = 16777216
group_concat_max_len = 1024
join_buffer_size = 262144
# Other settings
wait_timeout = 28800
lower_case_table_names = 0
event_scheduler = OFF
# InnoDB settings
innodb_file_per_table = 1
innodb_buffer_pool_size = 20G
innodb_log_file_size = 1G
innodb_log_buffer_size = 1G
innodb_flush_log_at_trx_commit = 1
innodb_flush_method = O_DIRECT
innodb_lock_wait_timeout = 50
innodb_io_capacity = 200
innodb_io_capacity_max = 1200
innodb_monitor_enable = all
[mysqldump]
quick
max_allowed_packet = 1G
[mysqld_safe]
pid-file = /var/run/mysqld/mysqld.pid
Summary
Keeping an eye on these options is a must when tuning Mysql performance:
innodb_buffer_pool_size = 12G # set to 80% of RAM
innodb_log_file_size = 12G # same as buffer pool
innodb_log_buffer_size = 128M # increase for large
transactions
innodb_flush_log_at_trx_commit = 0 # will increase write speed
but be sure
to backup/replicate
for reliability
innodb_flush_method = O_DSYNC # avoid double-caching
when writing to disk
Server Copy
scp backup/* ubuntu@20.246.107.58:/home/ubuntu/backup
scp -i /home/ubuntu/ssh-scalenut-nonprod-key.pem backup/* ubuntu@10.0.16.5:/home/ubuntu/backup
Skip replica counter
SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 1;
START SLAVE;
Find out IOPS
fio --name=test --ioengine=libaio --rw=randwrite --bs=16k --numjobs=4 --size=1G --runtime=60 --time_based --group_reporting
Bulk Import Settings
SET GLOBAL max_allowed_packet = 16M;
SET GLOBAL innodb_buffer_pool_size = 1G;
SET GLOBAL innodb_log_file_size = 1G;
SET GLOBAL innodb_flush_log_at_trx_commit = 1;
SET autocommit = 0;
SET FOREIGN_KEY_CHECKS = 0;
SET UNIQUE_CHECKS = 0;
SET bulk_insert_buffer_size = 64M;
SET GLOBAL net_buffer_length = 16M;
SET GLOBAL tmp_table_size = 64M;
SET GLOBAL max_heap_table_size = 64M;