mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
23 lines
820 B
Plaintext
23 lines
820 B
Plaintext
|
#########################################################################
|
||
|
# Config file for DBMirror.pl
|
||
|
# This file contains a sample configuration file for DBMirror.pl
|
||
|
# It contains configuration information to mirror data from
|
||
|
# the master database to a single slave system.
|
||
|
#
|
||
|
# $Id: slaveDatabase.conf,v 1.1 2002/06/23 21:58:08 momjian Exp $
|
||
|
#######################################################################
|
||
|
|
||
|
$masterHost = "masterMachine.mydomain.com";
|
||
|
$masterDb = "myDatabase";
|
||
|
$masterUser = "postgres";
|
||
|
$masterPassword = "postgrespassword";
|
||
|
|
||
|
# Where to email Error messages to
|
||
|
# $errorEmailAddr = "me@mydomain.com";
|
||
|
|
||
|
$slaveInfo->{"slaveHost"} = "backupMachine.mydomain.com";
|
||
|
$slaveInfo->{"slaveDb"} = "myDatabase";
|
||
|
$slaveInfo->{"slaveUser"} = "postgres";
|
||
|
$slaveInfo->{"slavePassword"} = "postgrespassword";
|
||
|
|