How do I fix access denied in MySQL?
You will get this error when the user user_name does not have the right to access your MySQL database. To resolve the error, you must create a user with the following command: mysql> GRANT ALL ON *. * to user_name@localhost IDENTIFIED BY ‘password’; How do I grant permission to user in MySQL? The GRANT statement allows you to set MySQL …