Showing posts with label create user. Show all posts
Showing posts with label create user. Show all posts

Wednesday, July 10, 2013

Create New User - MySQL



CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
FLUSH PRIVILEGES;