I need to connect to the Postgres database in order to make some reports, and I forgot the password. I am using PgAdmin or PowerBI. Can anyone help me?
From a reporting standpoint, I would like to see this also. Last time I tried to connect directly to PostgreSQL I crashed the server hosting OpenProject :(
Most likely this is a Linux/PostgreSQL configuration setting (ports?).
Replies (2)
From a reporting standpoint, I would like to see this also. Last time I tried to connect directly to PostgreSQL I crashed the server hosting OpenProject :(
Most likely this is a Linux/PostgreSQL configuration setting (ports?).
On a packaged installation, you can get the connection details of the OpenProject database through the ENV flag
DATABASE_URL
.openproject config:get DATABASE_URL
You can use this with
psql
directly:psql $(openproject config:get DATABASE_URL)
This can never crash OpenProject unless
In a docker-based installation, you can simply exec on the database container and run
psql
directly from there.Best
Oliver