[root@hacdc-org:/var/lib/wordpress]# mysql
MariaDB [(none)]> use wordpress;
MariaDB [(none)]> source /root/backup.sql;
MariaDB [(none)]> create user wordpress identified by 'abc123'
MariaDB [(none)]> grant all privileges on wordpress.* to wordpress;
MariaDB [(none)]> flush privileges;