postgresql 无法连接本地服务器


在win7下使用postgreSQL的shell显示无法连接服务器

Server [localhost]:
Database [postgres]:
Port [5432]:
Username [postgres]:
psql: 无法联接到服务器: Connection refused (0x0000274D/10061)
服务器是否在主机 "localhost"(127.0.0.1) 上运行并且准备接受在端口
5432 上的 TCP/IP 联接?
无法联接到服务器: Connection refused (0x0000274D/10061)
服务器是否在主机 "localhost"(127.0.0.1) 上运行并且准备接受在端口
5432 上的 TCP/IP 联接?
请按任意键继续. . .

请问怎样解决啊???

PostgreSQL

love鸡毛 11 years, 7 months ago

极有可能是你的配置有问题

找到你的pg_hba.conf,用文本编辑器打开此文件,将你的用户信息和数据库信息添加进去,如下:

local 数据库名 用户名 md5

同时,将local all all 改为 trust,如下:

local all all trust
芙兰的胸罩 answered 10 years, 2 months ago

Your Answer