Skip to content
Advertisement

connecting to mysql via ipaddress with MySQL and mysqli

I have weird problem.

I don’t have a domain name for my remote mysql database, so on my development machine I usually just connect to a remote mysql using the ip address.

On my development machine the ip address connection works for both mysql and mysqli connections.

However, when I upload to my live server (CentOS) (also connecting to the same remote mysql database), the ip address connection only works for my old mysql functions but not my new mysqli functions.

I’m not sure how to correct this, since this isn’t a problem for me on my development machine.

Below is information for development machine and then for live server

Development machine:

JavaScript

Live Server

JavaScript

The error I keep getting for mysqli functions is: Failed to connect to MySQL: Unknown MySQL server host ‘[ipaddress]:3306’ (3)

Advertisement

Answer

The strange answer in my case was to separate the port number as a separate parameter mysqli object construction.

So instead of $mysqli = new mysqli(“ipaddress:3306”, “my_user”, “my_password”, “world”); I did $mysqli = new mysqli(“ipaddress”, “my_user”, “my_password”, “world”, (int)$mysql_port);

I don’t know why that did the trick, but it did. I hope that helps someone else.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement