Проблема

При выполнении команды

sudo pmaagent configure --config_postgres -d postgres -p 5432
BASH

В логе агента возникает ошибка:

2023-04-19 12:22:02.2813+03 [info] Reconfiguration confirmation receieved
2023-04-19 12:22:29.3050+03 [info] failed to connect to host=/var/run/postgresql user=postgres database=postgres: server error (ВАЖНО: пользователь "postgres" не прошёл проверку подлинности (Peer) (SQLSTATE 28000))
2023-04-19 12:22:29.3053+03 [error] configure/configurer_postgresql.go:131 Could not connect to the PostgreSQL instance using provided credentials. Please provide correct database access credentials and connection settings.
BASH


Причина

Пароль пользователя postgres был изменен.


Решение

Выполнить команду с указанием нового пароля пользователя postgres.

sudo pmaagent configure --config_postgres -d postgres -p 5432 --db-pass=ПАРОЛЬ_ПОЛЬЗОВАТЕЛЯ_POSTGRES
BASH