尝试运行Vapor 3应用程序时出现以下错误:



它曾经工作得很好。
我能做什么?

最佳答案

可能是数据库服务器尚未运行。

对于 MySQL,打开终端并运行命令:

$ mysql.server start

对于 Postgres,请执行以下操作:
$ brew services start postgres

然后,再次尝试运行该项目。现在应该可以再次使用了 :)

取自 here

关于swift - Vapor 连接被拒绝(errno 61),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55205247/

10-12 13:37