bash-4.2$ pwd /database/edb/as14 bash-4.2$ cat postgresql.conf | grep 'max_wal_senders\|max_replication_slots\|wal_level\|hot_standby\|archive_mode\|archive_command\|shared_preload_libraries' wal_level = replica # minimal, replica, or logical archive_mode = on # enables archiving; off, on, or always archive_command = '/bin/true' #archive_command = 'test ! -f barman@postonline:/var/lib/barman/dev-pgsql/incoming/%f && rsync -a %p barman@postonline:/var/lib/barman/dev-pgsql/incoming/%f' # command to use to archive a logfile segment max_wal_senders = 10 # max number of walsender processes max_replication_slots = 10 # max number of replication slots hot_standby = on # "off" disallows queries during recovery #hot_standby_feedback = off # send info from standby to prevent shared_preload_libraries = '$libdir/dbms_pipe,$libdir/edb_gen,$libdir/dbms_aq,repmgr' bash-4.2$ bash-4.2$ /usr/edb/as14/bin/psql -d postgres -U enter...