I cannot connect to MySQL from Google cloud compute engine to MySQL storage. When I go to 172.146.221.156/test.php on browser showing an error message like this
Warning: mysqli_connect(): (HY000/2002): Permission denied in /var/www/html/test.php on line 21 Connect Error (2002'
My config file is:
<?php
$conn = mysqli_connect("176.154.226.114", "root", "password");
if (!$conn)
{
die('Connect Error (' .mysqli_connect_errno());
}
?>
What am I doing wrong?