thingsboard/tb-cassandra Docker 容器内的 Postgres 数据库的用户名和密码是什么?
Which are the user and password for the Postgres database inside the thingsboard/tb-cassandra Docker container?
Thingsboard with Cassandra 的 Docker 图像 (thingsboard/tb-cassandra) 也有一个 Postgres 数据库来存储元数据等。
我需要使用监视和管理工具从容器外部连接到此 Postgres 数据库。
为此,我需要创建图像时为数据库提供的用户名和密码,但我在 Thingsboard 文档中找不到此信息。
我不想更改凭据,因为这可能会导致 Docker 容器的其他组件出现问题。
有人知道这个 user/password 组合吗?
environment:
POSTGRES_DB: thingsboard
POSTGRES_PASSWORD: postgres
并且根据Postgress:
POSTGRES_USER
This optional environment variable is used in conjunction with POSTGRES_PASSWORD to set a user and its password. This variable will create the specified user with superuser power and a database with the same name. If it is not specified, then the default user of postgres
will be used.
所以user/password应该是postres/postgres
。
Thingsboard with Cassandra 的 Docker 图像 (thingsboard/tb-cassandra) 也有一个 Postgres 数据库来存储元数据等。
我需要使用监视和管理工具从容器外部连接到此 Postgres 数据库。 为此,我需要创建图像时为数据库提供的用户名和密码,但我在 Thingsboard 文档中找不到此信息。 我不想更改凭据,因为这可能会导致 Docker 容器的其他组件出现问题。
有人知道这个 user/password 组合吗?
environment:
POSTGRES_DB: thingsboard
POSTGRES_PASSWORD: postgres
并且根据Postgress:
POSTGRES_USER
This optional environment variable is used in conjunction with POSTGRES_PASSWORD to set a user and its password. This variable will create the specified user with superuser power and a database with the same name. If it is not specified, then the default user of
postgres
will be used.
所以user/password应该是postres/postgres
。