我运行了Rails服务器,当我尝试在我的localhost上查看我的页面时,我看到了这个错误:
Could not connect to server: Connection refused
Is the server running on host "127.0.0.1" and accepting TCP/IP connections on port 5432?
奇怪的是,一周前这个页面正在显示,现在却没有,所以我不明白发生了什么变化。
答案 0 :(得分:3)
5432端口错误可能表明Rails正在尝试连接尚未创建或未运行的PostgreSQL数据库。
检查以确保您的config\database.yml
文件准确无误并运行以下命令:
bundle exec rake db:create