Select Page

MYSQL Create new user and Grant privileges

To Create a new user in mysql CREATE USER ‘UserName’@’localhost’ IDENTIFIED BY ‘Password’; To Grant user access to the Database GRANT ALL PRIVILEGES ON DatabaseName . * TO ‘UserName’@’localhost’; After that...