mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
b5615eff0d
Idea comes from MySQL which does something similar
9 lines
224 B
Text
9 lines
224 B
Text
GRANT ALL PRIVILEGES on *.* TO backup_user IDENTIFIED by 'x' REQUIRE SSL;
|
|
FLUSH PRIVILEGES;
|
|
# xtrabackup backup
|
|
# xtrabackup prepare
|
|
# shutdown server
|
|
# remove datadir
|
|
# xtrabackup move back
|
|
# restart
|
|
DROP USER backup_user;
|