create user 'newuser'@'localhost' identified by 'newpassword';
create database newdb default charset utf8mb4;
GRANT ALL PRIVILEGES ON *.* TO 'newuser'@'localhost';
FLUSH PRIVILEGES;