Collections:
Accessing MySQL Server through Firewalls in MySQL
How To Access MySQL Servers through Firewalls in MySQL?
✍: FYIcenter.com
If your MySQL server is provided by an Internet service company, connecting to the server from your local machine will not be so easy, because there are firewalls between your local machine and your MySQL server as shown below:
As you can see, the first firewall could be the one on your local network, if you are using a local computer in an office environment. The second firewall will be the one on your MySQL server provider's network. Usually, firewalls will not allow any network traffic with port number 3306. So there is no way you can run your PHP scripts on your local machine to connect directly to your MySQL server located on your service provider's network.
You have several choices to solve this:
⇒ Retrieving MySQL Server information in MySQL
⇐ Connect to MySQL Server with User Account in MySQL
2017-11-25, 2652🔥, 0💬
Popular Posts:
How To Assign Debug Privileges to a User in Oracle? In order to run SQL Developer in debug mode, the...
How to download Microsoft SQL Server 2005 Express Edition in SQL Server? Microsoft SQL Server 2005 E...
How to run Queries with SQL Server Management Studio Express in SQL Server? 1. Launch and connect SQ...
Where Is the Export Dump File Located in Oracle? If you are not specifying the dump directory and fi...
How To Connect to a MySQL Server with a Port Number in MySQL? If you want to connect a MySQL server ...