偶尔我会在Postgres中遇到这些错误。
org.postgresql.util.PSQLException: Connection refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
和
org.postgresql.util.PSQLException: FATAL: sorry, too many clients already
在收到此错误后重新启动服务器时,我的数据库将正常工作。
答案 0 :(得分:0)
您可以发布更多关于您的设置 - 语言和库(我认为它是Java和JDBC),服务器版本,它的目的(开发或生产)等。
您收到的第二个错误非常明确 - 您超过了配置的服务器连接数。检查服务器配置中的"max_connections"参数,如果有资源,请增加它。
第一个错误AFAICS是一般连接错误。我不知道是什么导致这种情况(除了服务器崩溃,我怀疑是这种情况)。