In Escape Road City 2enter link description here, you will have the opportunity to explore secret roads and find a way to escape before being detected by the police!
In escape road city 2, you will have the opportunity to explore secret roads and find a way to escape before being detected by the police!
Thanks for the answer, I was searching for it for so long and at I have found it in your post.
Thank you both. I was having the same escape road problem and didn't know how to solve it until I read this article.
On the database server, we have to check the host the user above is allowed to connect from.
Run the following SQL commands to check the user’s host:
MariaDB [(none)]> SELECT host FROM mysql.user WHERE user = "database_username";
Run the following GRANT command to enable MySQL access for the remote user from a remote host
MariaDB [(none)]> GRANT ALL ON database_name.* to 'database_username'@'10.24.96.5' IDENTIFIED BY
'database_password';%%
MariaDB [(none)]> FLUSH PRIVILEGES;%%
MariaDB [(none)]> SELECT host FROM mysql.user WHERE user = "database_username";
To give a user remote access from all host on a network, use the syntax below:
MariaDB [(none)]> GRANT ALL ON database_name.* to 'database_username'@'10.24.96.%' IDENTIFIED BY
'database_password';
After making the above changes, try to remotely connect to the MySQL database server once more.
mysql -u database_username -p -h 10.24.96.6
We hope this solution helped you in solving your Mysql remote connection erro