关于postgresql:尝试创建数据库时出错 – Ecto – Phoenix

Error when trying to create database - Ecto - Phoenix

我在尝试创建数据库时遇到错误。 我安装了postgres,我已经成功完成了一些测试项目。 而且,我没有看到这个错误。 任何帮助都会很棒:

错误:

1
2
3
4
5
6
7
8
9
10
 ~/Desktop/elixir/restore $ mix ecto.create
** (Mix) The DATABASE FOR Restore.Repo couldn't be created: tcp connect: connection refused - :econnrefused

21:52:23.978 [error] GenServer #PID<0.150.0> terminating
** (Postgrex.Error) tcp connect: connection refused - :econnrefused
    (db_connection) lib/db_connection/connection.ex:148: DBConnection.Connection.connect/2
    (connection) lib/connection.ex:623: Connection.enter_connect/5
    (stdlib) proc_lib.erl:240: :proc_lib.init_p_do_apply/3
Last message: nil
State: Postgrex.Protocol


我试图运行mix ecto.create时遇到同样的问题。
所以首先要确保你有postgres。 建议使用brew来安装它。

brew安装postgres

使用brew服务来启动/停止postgresql,

创建一个数据库,

创建postgres超级用户,

可能你需要授予文件夹权限。

这些链接对我有用:

psql:致命:角色"postgres"不存在

psql:FATAL:数据库""不存在


我有同样的问题,问题是postgres没有运行。

所以,要检查这一点,你应该运行:

1
brew services list

然后,如果你看到:

1
Name STATUS USER Plist postgresql stopped

你应该跑:

1
brew services START postgresql

干杯!