Select Page

Create New User in MySQL

Step 1: Create User mysql > CREATE USER ‘newuser’@’localhost’ IDENTIFIED BY ‘password’; Step 2: Grant Privileges mysql > GRANT ALL PRIVILEGES ON * . * TO ‘newuser’@’localhost’; Step 3: Flush Privileges mysql...