[mysql@dev]$ mysql -uroot -p
Enter password:
(root@localhost) [(none)]>
create database batch;
create user 'batch'@'%' identified by 'password1!';
grant all privileges on batch.* to batch@'%' identified by 'password1!';
DataBase/MySQL
[mysql@dev]$ mysql -uroot -p
Enter password:
(root@localhost) [(none)]>
create database batch;
create user 'batch'@'%' identified by 'password1!';
grant all privileges on batch.* to batch@'%' identified by 'password1!';