[root@kvm11 ~]# mysql -uroot -pxxxxxx Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 295 Server version: 10.3.11-MariaDB MariaDB Server Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]>
MariaDB [(none)]> create database dvwadb;
MariaDB [(none)]> grant all on dvwadb.* to dvwamgr@localhost identified by 'xxxxx';
MariaDB [(none)]> flush privileges;
MariaDB [(none)]> quit; Bye [root@kvm11 ~]#