Create New MySQL Database And Assign Administrator
Create New Database
create database <database>;
Create Administrator Account
grant all on <database>.* to ‘<user>’@'localhost’ identified by ‘<password>’;
Reset Privileges
flush privileges;
Software For Every Situation.
Create New Database
create database <database>;
Create Administrator Account
grant all on <database>.* to ‘<user>’@'localhost’ identified by ‘<password>’;
Reset Privileges
flush privileges;
Leave a comment