mirror of
https://github.com/MariaDB/server.git
synced 2025-06-03 07:02:23 +03:00
10 lines
231 B
Plaintext
10 lines
231 B
Plaintext
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 server
|
|
DROP USER backup_user;
|