Creating New MariaDB Databases
CREATE OR REPLACE USER 'user_name'@'host' IDENTIFIED BY 'password';
Host can be something like 'localhost' or '192.123.123.%'.
Put quotes around user_name and host, but not the @ symbol.
Password is supplied as-is. Unencrypted and not passed through the PASSWORD() function.