You can push the data from a Next Matter workflow to the database or pull the data you need into a workflow.
postgresql.conf
file. To trace the file, run the following command:
listen_addresses = 'localhost'
line with listen_addresses = '*'
.
Data | Description |
---|---|
Database hostname | The network host name or the IP address of the PostgreSQL server. |
Database name | The PostgreSQL database name that you want to access. If not specified, normally the operating system username is used as the database name. To get the name log in to the server using the SQL Shell (psql) app and run SELECT datname FROM pg_database . |
Port | The network port that the PostgreSQL server is running on. By default, this is port 5432. |
Username | The database username you wish to connect as. If not specified, the default username is postgres . |
Password | The PostgreSQL password associated with the specified username. To get the password, run the psql command \password . |