Kbase P28026: Quick Guide to set up Fathom Replication / OpenEdge Replication
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  4/24/2009 |
|
Status: Verified
GOAL:
Quick Guide to setup Fathom Replication
GOAL:
How to set up OpenEdge replication?
GOAL:
How to set up Fathom replication using the default implementation
FACT(s) (Environment):
All Supported Operating Systems
Progress 9.x
OpenEdge 10.x
OpenEdge Replication
FIX:
This solution is not a substitute of the documentation of Fathom High Availability Replication, it is only intended to have a quick reference of the steps needed to complete when configuring Fathom Replication .
On the Source Side:
- Create the database
PROSTRCT CREATE dbname
- Make a copy or restore from a backup:
PROCOPY $DLC/sports dbname
- Do a backup
tar -cvf bkup.tar db*
RFUTIL dbname -C mark backedup
- Activate the After Image (You may need to add some AI extents )
RFUTIL dbname -C aimage begin
- Enable replication
PROUTIL dbname -C enablesitereplication source
- Do a Full backup
PROBKUP dbname <device>
- Move the backup to the remote site
Use RCP,FTP ,etc...
- Copy and modify the dbname.repl.properties from
$FATHOM/properties/source.repl.properties
On the Target Side :
- Restore the Backup
PROREST dbname <device>
- Enable target replication
PROUTIL dbname -C enablesitereplication target
- Copy and modify the dbname.repl.properties from
$FATHOM/properties/target.repl.properties
- Start the database (Target database should be started first)
PROSERVE dbname <dbparams> -DBService replagent -S port
The port needs to be the same as the port parameter in the Fathom Replication server?s repl.properties file.
On the Source Side :
- Start the source Database :
PROSERVE dbname <dbparams> -DBService replserv
Test and monitor the replication environment.