From 94ffa8c1e36602543f7f02a218d5ef7185796cda Mon Sep 17 00:00:00 2001 From: Francisco Redondo Marchena Date: Tue, 9 Jun 2015 14:32:33 +0000 Subject: Increase the number of max connections for postgresql Openstack itself was generating more than 100 connections. This was blocking the services to access to the database, so failing to attempt to do any action/command. Change-Id: Ifdbb39c1875cd705fecf09294bb252cf97531f67 --- install-files/openstack/usr/share/openstack/postgres/postgresql.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-files/openstack/usr/share/openstack/postgres/postgresql.conf b/install-files/openstack/usr/share/openstack/postgres/postgresql.conf index 74153385..9c8094ea 100644 --- a/install-files/openstack/usr/share/openstack/postgres/postgresql.conf +++ b/install-files/openstack/usr/share/openstack/postgres/postgresql.conf @@ -1,5 +1,5 @@ listen_addresses = '{{ MANAGEMENT_INTERFACE_IP_ADDRESS }}' -max_connections = 100 +max_connections = 300 shared_buffers = 128MB log_timezone = 'UTC' datestyle = 'iso, mdy' -- cgit v1.2.1