我有一个带Ubuntu服务器wirh apache的虚拟机,我希望将我的php页面与远程PostgreSQL数据库连接,但这不起作用。但我尝试在我的localhost中工作。
<?php
$inf = "host='IP_POSTGRES' port='5432' dbname='bd' user='user'
password='pssw'";
$con = pg_connect($inf) or die("Connection Error".pg_last_error());
?>
答案 0 :(得分:0)
你的postgre服务器究竟在哪里,Cloud?从你的电脑到服务器IP ping是否有效?在云上运行的服务器是否有一些mac过滤?
您能否确定这些问题