You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sudo mysql -u root -p
mysql > DROP DATABASE IF EXISTS database_name;
mysql > CREATE DATABASE database_name CHARACTER SET utf8;
mysql > CREATE USER 'db_user_name'@'localhost' IDENTIFIED BY 'password';
mysql > GRANT ALL PRIVILEGES ON database_name.* TO 'db_user_name'@'localhost';