Unknown MySQL server host

6 posts by 2 authors in: Forums > CMS Builder
Last Post: February 15   (RSS)

By maxbenk26 - February 12 - edited: February 12

During installation an error occurs: MySQL Error(2005): Unknown MySQL server host 'X.X.X.X:3311 when I specify MySQL Hostname: X.X.X.X:3311.
CMSB doesn't want to understand the mysql port. And the port must be specified; without it it will not connect.
The old version of CMSB connected without problems, the new one does not (

By Dave - February 12

Hi maxbenk26, 

I can't recreate that issue locally, or rather I can connect with ports such as 3305 when specified after the hostname, but on my WAMP stack doesn't seem to support 3311.

Can you try to connect from PHP directly and see if it works for you?

<?php
header("Content-type: text/plain");

$host     = 'localhost';
$user     = 'username';
$password = 'password';
$port     = 3311; // default 3306

$mysqli = new mysqli();
$mysqli->options(MYSQLI_OPT_CONNECT_TIMEOUT, 1);
if (!$mysqli->real_connect($host, $user, $password, null, $port)) {
    die('Connect Error (' . mysqli_connect_errno() . ') ' . mysqli_connect_error());
}

echo 'MySQL successfully connected to: ' . $mysqli->host_info . "\n";

Or put through a second level support request and we can take a look: https://www.interactivetools.com/support/request/

Thanks!

Dave Edis - Senior Developer
interactivetools.com

By maxbenk26 - February 13 - edited: February 13

Thanks Dave for the answer.
What you wrote worked to connect:
MySQL successfully connected to: 18.9.14.3 via TCP/IP
But CMSB is not connected during installation

By maxbenk26 - February 13

Thanks Dave. Your script helped me find the problem. Now everything works!

By Dave - February 15

Hi Maxbenk26,

Okay, great to hear.  Thanks for the update.

Dave Edis - Senior Developer
interactivetools.com