bacula-alma8-mariadb/create-dump-user.sql

5 lines
163 B
MySQL
Raw Normal View History

2024-01-28 00:39:10 +02:00
create user dump@localhost identified by 'password';
grant select, lock tables on *.* to dump@localhost;
grant process on *.* to dump@localhost;
flush privileges;