我刚刚重命名了我的应用程序(用新的名称替换旧名称的所有实例),现在我的应用程序无法再连接到在localhost上运行的postgres数据库。
PG::Error (could not connect to server: Connection refused (0x0000274D/10061)
Is the server running on host "localhost" (::1) and accepting
TCP/IP connections on port 5432?
有什么想法吗?
谢谢:-----)
编辑:这是我的database.yml
common: &common
adapter: postgresql
username: <username>
password: <password>
development:
<<: *common
database: development
test:
<<: *common
database: test
production:
<<: *common
database: production
其中用户名和密码是我的postgres安装的用户名和凭据。但是,我无法使用pgAdmin连接到服务器!
答案 0 :(得分:0)
我找到答案:显然我的postgres服务器没有在本地运行,所以我不得不手动启动服务。 : - )