1

Postgres に接続しようとしていますが、次のようなエラー メッセージが表示されます。

[main] INFO org.hibernate.connection.DriverManagerConnectionProvider - using driver: org.postgresql.Driver at URL: jdbc:postgresql://localhost:5433/postgres
[main] INFO org.hibernate.connection.DriverManagerConnectionProvider - connection properties: {user=postgres, password=****}
[main] WARN org.hibernate.cfg.SettingsFactory - Could not obtain connection to query metadata
org.postgresql.util.PSQLException: Connection refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.

ユーザー名/パスワードが hibernate.conf で問題ないことを確認しました

    <!-- Database connection settings -->
    <property name="connection.driver_class">org.postgresql.Driver</property>
    <property name="connection.url">jdbc:postgresql://localhost/postgres</property>
    <property name="connection.username">postgres</property>
    <property name="connection.password">*******</property>

これは私の pg_hba.conf です

# TYPE  DATABASE        USER            ADDRESS                 METHOD

# IPv4 local connections:
host    all             all             127.0.0.1/32            md5
# IPv6 local connections:
host    all             all             ::1/128                 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
# host   postgres,replication    localhost   127.0.0.1/32    md5
# host   postgres,replication    localhost   ::1/128     md5
host     all     all     0.0.0.0/0   md5

私は Windows で作業しています (UNIX ではありません)。したがって、この問題を解決する方法を提案してください。

ありがとう!

4

1 に答える 1

2

接続 URL の port no はどこにありますか。jdbc:postgresql://localhost: portno/postgres

したがって、最終的なURLは、私のPCのようにdbサーバーのポートに従う必要があります

jdbc:postgresql://localhost:5432/postgres
于 2013-10-18T07:36:30.130 に答える