postgres-8.4

了解访问我的 postgress 数据库的尝试
postgres-8.4

了解访问我的 postgress 数据库的尝试

我有一个网站,它由一组 Docker 容器组成,其中一个容器是 Postgres 数据库,我不得不承认,我对这些东西没有太多经验。当我查看日志时,我看到了多次猜测我密码的尝试: | 2020-11-17 15:08:33.958 UTC [25042] FATAL: password authentication failed for user "postgres" | 2020-11-17 15:08:33.958 UTC [25042] DETAIL: Role "postgres" does not exist. | Connec...

Admin

如何将 DataGrip 连接到 Google 计算引擎上的 Postgres
postgres-8.4

如何将 DataGrip 连接到 Google 计算引擎上的 Postgres

我在 Google Compute 引擎上安装了 Postgres。我可以创建用户、模式和表。我可以使用 PyCharm 远程配置连接到 Google Compute 引擎。但我无法将 DataGrip 连接到 Postgres。 看起来 Posgres 端口是开放的(端口 5432): ...@instance-2:~$ netstat -ntpl (Not all processes could be identified, non-owned process info will not be shown, you would have to be r...

Admin

Postgres LDAP 配置
postgres-8.4

Postgres LDAP 配置

我需要配置 Postgres LDAP 身份验证,但遇到了麻烦。我使用的是 Postgres 8.4(项目要求)。我已阅读了所有能找到的可用文档,我的 pg_hba.conf 文件中的相关行如下: host all all 10.0.0.0/8 ldap ldapserver=10.10.10.10 ldapport=389 ldaptls=0 ldapprefix="uid=DOMAIN\" ldapsuffix="ou=All Users,dc=ad,dc=example,dc=com" 当我尝试从指定的 IP 范围使用“myname”作为用户并使...

Admin