- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试设置开发 PostgreSQL 服务器。它正在运行,我能够从命令行创建角色、表等。但是,当我尝试使用 Play 应用进化时,出现以下错误:
org.postgresql.util.PSQLException: FATAL: sorry, too many clients already
我能够连接,如果我故意输入语法错误,它会返回语法错误,所以我知道 Play 能够连接到数据库。然而,在成功应用进化后,我得到如上所示的错误。
我不太精通 PostgreSQl 管理,所以我不确定问题出在 Play 还是我的 PostgreSQL 安装上。我刚刚在运行 Mountain Lion 的 Mac 上使用 Heroku 的 Postgres.app 安装了它。
这是写入控制台的内容:
! @6cnb0blpp - Internal server error, for request [GET /] ->
play.api.db.evolutions.InvalidDatabaseRevision: Database 'default' needs evolution! [An SQL script need to be run on your database.]
at play.api.db.evolutions.EvolutionsPlugin$$anonfun$onStart$1$$anonfun$apply$1.apply$mcV$sp(Evolutions.scala:427) ~[play_2.9.1.jar:2.0.4]
at play.api.db.evolutions.EvolutionsPlugin.withLock(Evolutions.scala:448) ~[play_2.9.1.jar:2.0.4]
at play.api.db.evolutions.EvolutionsPlugin$$anonfun$onStart$1.apply(Evolutions.scala:414) ~[play_2.9.1.jar:2.0.4]
at play.api.db.evolutions.EvolutionsPlugin$$anonfun$onStart$1.apply(Evolutions.scala:412) ~[play_2.9.1.jar:2.0.4]
at scala.collection.LinearSeqOptimized$class.foreach(LinearSeqOptimized.scala:59) ~[scala-library.jar:0.11.3]
at scala.collection.immutable.List.foreach(List.scala:45) ~[scala-library.jar:0.11.3]
[error] c.j.b.h.AbstractConnectionHook - Failed to acquire connection Sleeping for 1000ms and trying again. Attempts left: 10. Exception: null
[error] c.j.b.h.AbstractConnectionHook - Failed to acquire connection Sleeping for 1000ms and trying again. Attempts left: 9. Exception: null
[error] c.j.b.h.AbstractConnectionHook - Failed to acquire connection Sleeping for 1000ms and trying again. Attempts left: 8. Exception: null
[error] c.j.b.h.AbstractConnectionHook - Failed to acquire connection Sleeping for 1000ms and trying again. Attempts left: 7. Exception: null
[error] c.j.b.h.AbstractConnectionHook - Failed to acquire connection Sleeping for 1000ms and trying again. Attempts left: 6. Exception: null
[error] c.j.b.h.AbstractConnectionHook - Failed to acquire connection Sleeping for 1000ms and trying again. Attempts left: 5. Exception: null
[error] c.j.b.h.AbstractConnectionHook - Failed to acquire connection Sleeping for 1000ms and trying again. Attempts left: 4. Exception: null
[error] c.j.b.h.AbstractConnectionHook - Failed to acquire connection Sleeping for 1000ms and trying again. Attempts left: 3. Exception: null
[error] c.j.b.h.AbstractConnectionHook - Failed to acquire connection Sleeping for 1000ms and trying again. Attempts left: 2. Exception: null
[error] c.j.b.h.AbstractConnectionHook - Failed to acquire connection Sleeping for 1000ms and trying again. Attempts left: 1. Exception: null
[error] application -
谢谢!
最佳答案
允许的连接数在 postgresql.conf
中使用 GUC(“Grand Unified Configuration”)max_connections
设置.默认值为 100。
但在修改设置之前,您必须问自己:在您的集群达到限制之前,所有其他 100 个连接是从哪里来的?这通常表明您的安装或程序中存在错误!
您可能还对 connection pooling 感兴趣还有这个article about The Number of Connections在 Postgres Wiki 中。
关于PostgreSQL 演变 : "PSQLException: FATAL: sorry, too many clients already",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14049185/
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 4 年前。
Flyway是 RDBMS 世界中非常方便的模式迁移/演化工具。我正在为 ES 寻找类似的东西。 尽管 ES 与 RDBMS 不同而且我明白这一点,但像 Flyway 这样的工具的全部要点基本上是在多
假设我们有如下设置。 架构演变兼容性设置为 BACKWARD。 JDBC Source Connector 轮询从 DB 写入 Kafka 主题的数据。HDFS Sink Connector 从 Ka
我正在做 todo tutorial玩。当我在 conf/evolutions/default/1.sql 中创建 evolution 时,没有任何反应。我刚得到异常 JdbcSQLException
我正在尝试设置开发 PostgreSQL 服务器。它正在运行,我能够从命令行创建角色、表等。但是,当我尝试使用 Play 应用进化时,出现以下错误: org.postgresql.util.PSQLE
这里是数据库配置 应用程序配置文件: slick.dbs.default.profile="slick.jdbc.PostgresProfile$" slick.dbs.default.db.driv
我是一名优秀的程序员,十分优秀!