Am new to Google Cloud SQL. I just created a instance in Cloud Console.
Now I like to connect to that Instance via my localhost phpMyAdmin. But CloudSQL doestn't have any host name to configure. It only have IPV6 adress. So am little confused about how to do. I already tried by editing 'config.inc.php' file using ipv6 address. But it giving me the error below
2002 - php_network_getaddresses: getaddrinfo failed: No such host is known.
The server is not responding (or the local server's socket is not correctly configured).
And my config file details are below
$i++;
$cfg['Servers'][$i]['verbose'] = '*****';
$cfg['Servers'][$i]['host'] = '2001:4860:4864:1:****:****:***:****';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '**********';
$cfg['Servers'][$i]['AllowNoPassword'] = true;