Postgresql как ограничить общий размер WAL-файлов?

Приветствую! Собственно, сабж. Настраиваю потоковую репликацию по вот этой инструкции eax.me/postgresql-replication

# какие адреса слушать, замените на IP сервера
listen_addresses = '10.0.3.245'

wal_level = hot_standby

# опционально: не дожидаемся fsync на реплике при синхронной репликации
# synchronous_commit = remote_write

# это нужно, чтобы работал pg_rewind
wal_log_hints = on
max_wal_senders = 8
wal_keep_segments = 64

# если хотим синхронную репликацию на одну любую реплику
# synchronous_standby_names = '*'

hot_standby = on
— каким образом ограничить не только количество WAL-сегментов, но максимально занимаемый ими объем?

Server doesn't listen [PostgreSQL] ?

OS: Windows 7 64-bit

На рабочем компьютере потребовалось переустановить PostgreSQL.

После переустановки при попытке подключения к серверу PostgreSQL 9.3 (localhost: 5432) и создания нового сервера localhost (localhost: 5432) — появляется окно с ошибкой:

«Server doesn't listen
The server doesn't accept connections: the connection library reports
could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host „localhost“ (::1) and accepting TCP/IP connections on port 5432? could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host „localhost“ (127.0.0.1) and accepting TCP/IP connections on port 5432?

If you encounter this message, please check if the server you're trying to contact is actually running PostgreSQL on the given port. Test if you have network connectivity from your client to the server host using ping or equivalent tools. Is your network / VPN / SSH tunnel / firewall configured correctly?

For security reasons, PostgreSQL does not listen on all available IP addresses on the server machine initially. In order to access the server over the network, you need to enable listening on the address first.
Читать дальше

Почему не включается PostgreSQL 9.3 в ISPManager 4 Pro?

Произвёл отключение PostgreSQL на вкладке «Возможности» кнопкой «Выкл.» в ISPManager 4 Pro. Теперь пытаюсь включить, там же, но он не включается.
Лог /usr/local/ispmgr/var/pkgctl.log пишет:
Oct 12 06:31:56 [ 0:0] INFO Lookup log level for '/usr/local/ispmgr/var/pkgctl.log' in 'etc/pkgctl.debug' Oct 12 06:31:56 [64492:0] ../../src/mgr/install/pkgctl.cpp:641 TRACE pkgctl started Oct 12 06:31:56 [64492:0] ../../src/mgr/install/pkgctl.cpp:642 DEBUG LogLevel 9 Oct 12 06:31:56 [64492:0] ../../src/mgr/install/pkgctl.cpp:692 TRACE Init pkgmgr Oct 12 06:31:56 [64492:0] INFO Using package manager 'Yum' Oct 12 06:31:56 [64492:0] ../../src/mgr/install/pkgctl.cpp:694 TRACE Init way Oct 12 06:31:56 [64492:0] ../../src/mgr/install/pkgctl.cpp:696 TRACE Init client Oct 12 06:31:56 [64492:0] ../../src/mgr/install/pkgctl.cpp:702 TRACE Done Oct 12 06:31:56 [64492:0] ../../src/mgr/install/pkgctl.cpp:541 TRACE LoadModule lib/pkgisp-pgsql.so Oct 12 06:31:56 [64492:0] ../../src/mgr/install/pkgmgr.cpp:472 DEBUG Load package list Oct 12 06:32:01 [64492:0] EXTINFO Execute (/usr/bin/yum list all | /bin/egrep '^[^ ]+ +[0-9]') return=0 exited Oct 12 06:32:02 [64492:0] ../../src/mgr/install/pkgmgr.cpp:482 DEBUG 14766 packages found Oct 12 06:32:02 [64492:0] ../../src/mgr/install/pkgmgr.cpp:57 TRACE List 'postgresql-server' found 1 Oct 12 06:32:03 [64492:0] EXTINFO Execute (/usr/bin/yum list installed | /bin/egrep '^[^ ]+ +[0-9]') return=0 exited Oct 12 06:32:04 [64492:0] EXTINFO Execute (/usr/bin/yum list installed | /bin/egrep -v '[[:space:]]') return=0 exited Oct 12 06:32:06 [64492:0] EXTINFO Execute (/usr/bin/yum info alt-ImageMagick-c++-devel.x86_64 alt-php53-pear-ezcomponents.noarch alt-php53-zend-guard-loader.x86_64 alt-php54-pear-ezcomponents.noarch alt-php54-zend-guard-loader.x86_64 alt-php55-pear-ezcomponents.noarch dejavu-lgc-sans-mono-fonts.noarch device-mapper-persistent-data.x86_64 kmod-iolimits-2.6.32-531.17.1.lve1.2.58.el6.x86_64.x86_64 kmod-
Читать дальше