Limit connection to database to 100

This commit is contained in:
xbgmsharp
2022-11-29 23:19:31 +01:00
parent 2e269b9424
commit e6309875fb

View File

@@ -47,6 +47,8 @@ select version();
-- Database -- Database
CREATE DATABASE signalk; CREATE DATABASE signalk;
-- Limit connection to 100
ALTER DATABASE signalk WITH CONNECTION LIMIT = 100;
-- connext to the DB -- connext to the DB
\c signalk \c signalk