1 Answer
You need to grant the privileges for the user account you need to connect with your mysql database, login to your Mysql shell and run the below command
GRANT ALL ON *.* to user_name@'192.168.1.12' IDENTIFIED BY 'password';
flush privileges;
Your Answer
x