Create a new user
CREATE USER 'c'@'localhost' IDENTIFIED BY 'mypass';
Grant all permission on all database
grant all privileges on *.* to 'v'@'localhost' identified by 'mypass' with grant option;Grant all permission on a database
grant all privileges on appDB.* to 'v'@'localhost' identified by 'mypass' with grant option;
No comments:
Post a Comment