[root@linodelinux]# mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 1234567 Server version: 5.5.68-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)]> create database linodelinux; MariaDB [(none)]> create user 'linodelinux'@'localhost' identified by 'secretpassword'; MariaDB [(none)]> grant all privileges on linodelinux.* to linodelinux@localhost;