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

5 lines
153 B
SQL

create database bacula;
create user bacula@localhost identified by 'password';
grant all privileges on bacula.* to bacula@'localhost';
flush privileges;