1

我显示 phpinfo() 信息页面有 pgsql 启用支持但在文件 php

$dbconn =pg_connect("host=localhost port=5432 dbname=qlbv user=postgres password=123456")
 or die("can't connect db"); 

$dbconn 的结果为假;

我有配置

# "local" is for Unix domain socket connections only
local  all        all                              md5   
# IPv4 local connections:
host    all        all        127.0.0.1/32        md5   
# IPv6 local connections:
host    all        all        ::1/128              md5   
# IPv4 internet connections:
host    all        all        0.0.0.0/0            md5 

# - Connection Settings -
listen_addresses='*'
#listen_addresses = 'localhost'        # what IP address(es) to listen on;
                                        # comma-separated list of addresses;
                                        # defaults to 'localhost', '*' = all
                                        # (change requires restart)
port = 5432                            # (change requires restart)

我在centos 中设置webserver 结果$dbconn 为假;你能帮助我吗?谢谢!

4

1 回答 1

1

你尝试类型:

getsebool -a | grep ftp
setsebool -P ftp_home_dir on
getsebool -a | grep ftp
于 2012-07-03T03:31:05.353 回答