bacula-alma8-mariadb/create-dump-user.sql
Eliezer Croitoru 9f4e1b3e8c 1
2024-01-27 22:39:10 +00:00

5 lines
163 B
SQL

create user dump@localhost identified by 'password';
grant select, lock tables on *.* to dump@localhost;
grant process on *.* to dump@localhost;
flush privileges;