sudo mysql -uroot
create user sampledbuser@localhost identified by 'samplepassword';
alter user 'sampledbuser'@'localhost' identified with mysql_native_password by 'samplepassword'
create sampledb
grant all on sampledb.* to 'sampledbuser'@'localhost'