Thursday, October 20, 2011

Set up new mysql user

CREATE USER 'new_username'@'localhost' IDENTIFIED BY 'password_for_new_username';
GRANT ALL ON *.* TO 'new_username'@'localhost';

source

No comments:

Post a Comment