我把问题放在了meteor-postgres上,在安装meteor之前有没有什么应该采取的步骤?因为我的流星-邮差还是没有连上。
我在github上写了这个问题:
https://github.com/storeness/meteor-postgres/issues/7
任何其他工具都可以连接postgresql数据库for meteor framework
发布于 2015-12-17 12:10:18
我不知道meteor-postgres,但是连接字符串
postgres://postgres:postgres@localhost/meteorpg
转换为:有一个Postgresql服务器运行在localhost端口5432上,其中有一个名为meteorpg的现有数据库,用户postgres标识为密码postgres可以访问该数据库。
ECONNREFUSED
指示在此位置没有接受TCP连接的任何内容。
那么你有没有Postgresql守护进程在运行呢?
https://stackoverflow.com/questions/34327221
复制相似问题