Managing Maximum Database Connections
By default, the PostgreSQL database allows a maximum of 115 concurrent connections. 15 are reserved for administrative users and 100 for regular users. Regular users would be Flame Family products, Burn nodes, and services (Wiretap, Wiretap Gateway, Transcoder, etc.).
It is possible to modify this value following these steps:
Make sure no Flame Family product is currently using this database (either locally or remotely)
Login a flame_db user:
sudo -u flame_db -iStop the database:
cd /opt/Autodesk/bin ./igniter --stopModify the postgresql.conf file:
cd /var/opt/Autodesk/pgsql/17/data/ vi postgresql.confModify the max_connections value to suite your needs
max_connections = 100Save the file and restart the database
cd /opt/Autodesk/bin ./igniter --start
