0

我已经在 Windows 操作系统中下载并执行了 DHIS-2。我想连接一个 PostgreSQL 数据库。我正在dhis.conf文件中尝试以下配置设置,但它不起作用。

connection.dialect = org.hibernate.dialect.PostgreSQLDialect
connection.driver_class = org.postgresql.Driver
connection.url = jdbc:postgresql:dhis2
connection.username = dhis
connection.password = dhis
connection.schema = update
encryption.password = abcd

它向我显示以下错误消息。

HTTP ERROR: 503

Problem accessing /. Reason:

    Service Unavailable
4

1 回答 1

1

请验证数据库名称、用户名和密码是否正确。

您可以使用以下命令在命令行/终端上对此进行测试:

psql -d dhis2 -U dhis -p

然后输入您的密码。如果无法连接,则数据库名称、用户名和密码中的一项或多项不正确。

于 2017-07-20T14:29:53.597 回答