Today we will show you how to allow remote access for MySQL.By default, MySQL is not available for remote access. On this tutorial, we will show how to activate the remote access on Windows and Linux.
Windows
1. Open the MySQL command prompt
2. In the MySQL prompt , enter the following command line that grants all users and all IPs:
GRANT ALL ON *.* TO ‘root’@’%’ IDENTIFIED BY ‘password root’;
– Note it is possible to give privileges to other users (modifying ‘root’) in a IP (modifying @’%’).
3. Now run the command FLUSH PRIVILEGES;
4. Allow MySQL port (ex: 3306) on your Firewall.
Linux
1. Open your terminal and login as root then run this command: nano etc/mysql/my.cnf
2. Alter the line bind-address = 127.0.0.1, to bind-address = 0.0.0.0
3. Restart MySQL Service, using /etc/init.d/mysql restart
4. Enter this command line mysql –u root –p
5. In the MySQL prompt , enter the following command line that grants all users and all IPs:
GRANT ALL ON *.* TO ‘root’@’%’ IDENTIFIED BY ‘password root’;
– Note it is possible to give privileges to other users (modifying ‘root’) in a IP (modifying @’%’).
6. Allow MySQL port (ex: 3306) in your Firewall.
Ok, now you have granted permission for Scriptcase to be accessed with MySQL, and this might give you more flexibility to develop you’r projects with all the features that only Scriptcase offers you!
Check our website and download it for free, test it for 20 days with full access to our Support Department and take advantage of the most powerfull RAD tool.
Check out more content on our blog!
Learn all about Scriptcase.
You might also like…