Create user with mysql command:
CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
Add all privilleges to databases for user:
GRANT ALL ON *.* TO 'username'@'localhost';
Create user with mysql command:
CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
Add all privilleges to databases for user:
GRANT ALL ON *.* TO 'username'@'localhost';
Leave a Reply