Bài viết này sẽ hướng dẫn tạo database và user mysql bằng lệnh terminal. Đăng nhập MySQL
mysql -u root -p
create database dbname;
create user 'username'@'localhost' identified by 'password';
set password for 'username'@'localhost' = password('password');
grant all on dbname.* to username@localhost;
grant SELECT on dbname.* to username@localhost; // SELECT là quyền
FLUSH PRIVILEGES;
exit