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
CREATE USER 'dbname'@'localhost' IDENTIFIED BY 'passwd';
GRANT USAGE ON * . * TO 'dbname'@'localhost' IDENTIFIED BY 'passwd' WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0 ;
CREATE DATABASE IF NOT EXISTS `dbname` ;
GRANT ALL PRIVILEGES ON `dbname` . * TO 'dbname'@'localhost';