|
用php怎么都连不上!提示:FATAL: IDENT authentication failed for user "test" 。不懂该怎么办!用户我是用creatuser test创建的!不懂对不对?
看了postgresql的文档,那个用户认证一段怎么都看不懂,能不能解释一下?
还有每次进postgresql都要先换成su,再postgresql,如何用自己建的用户登陆呢?
我的代码是这样的:
<html>
<head>
<title>欢迎来到lanb的留言板</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>
<?php
$db = pg_connect("dbname=web user=lanb");
if(!$db)
{
$db_error = "无法连接到PostGreSQL数据库!";
echo $db_error;
}
else
{
echo "成功连接!";
}
?>
</body>
</html>
在concsole里面运行php index.php是可以看到成功连接的!但是在网页里面就不可一! |
|