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