无法将postgres_exporter连接到postgresql数据库

时间:2019-04-29 15:46:22

标签: postgresql docker prometheus

我无法将postgres_exporter连接到Postgresql数据库。我正在

time="2019-04-29T15:37:46Z" level=info msg="Established new database connection to \"localhost:5432\"." source="postgres_exporter.go:767"
time="2019-04-29T15:37:46Z" level=error msg="Error opening connection to database (postgresql://postgres:PASSWORD_REMOVED@localhost:5432/postgres?sslmode=disable): pq: unknown authentication response: 10" source="postgres_exporter.go:1260"
time="2019-04-29T15:37:46Z" level=info msg="Starting Server: :9187" source="postgres_exporter.go:1360"

端口还可以,密码也可以。当我尝试以

运行
# Start an example database
docker run --net=host -it --rm -e POSTGRES_PASSWORD=password postgres
# Connect to it
docker run --net=host -e DATA_SOURCE_NAME="postgresql://postgres:password@localhost:5432/postgres?sslmode=disable" wrouesnel/postgres_exporter

它可以完美运行,但是已经有postgresql运行实例,所以我无法创建新实例。

1 个答案:

答案 0 :(得分:0)

看起来您正在数据库中使用SCRAM身份验证,但是postgres_exporter尚不支持它。

您可以等待this issue解决,可以使用更新的lib/pq软件包来构建出口商以启用SCRAM支持,也可以使用md5身份验证。