Difference between revisions of "Freeside:2.1:Documentation:Administration:Slony"

From Freeside
Jump to: navigation, search
(Prerequisites)
(Setup)
Line 7: Line 7:
 
= Setup =
 
= Setup =
  
* See the Slony documentation on [http://main.slony.info/documentation/2.0/firstdb.html Replicating Your First Database]
+
* See the Slony documentation on [http://main.slony.info/documentation/2.0/tutorial.html#FIRSTDB Replicating Your First Database]
  
 
* Run <code>bin/slony-setup ''username'' | more</code> and follow the generated instructions.
 
* Run <code>bin/slony-setup ''username'' | more</code> and follow the generated instructions.

Revision as of 15:46, 13 July 2011

Prerequisites

You need to have slony setup and working on both machines. These instructions are meant to be used in conjuction with the Slony documentation.

You need to have Freeside setup and working on both machines. On the slave machine, don't run freeside-setup or start the daemons, but *do* put the init script in place and setup any necessary SSH keys or database auth necessary for integration. Copy conf.datasrc, dbdef.datasrc and htpasswd from the master to the slave server.

Setup

  • Run bin/slony-setup username | more and follow the generated instructions.

Failover

  • Determine if you are doing a controlled switchover or a failover.
  • A controlled switchover is preferable. On the master server, run:
slonik <<END
lock set (id = 1, origin = 1);
wait for event (origin = 1, confirmed = 2);
move set (id = 1, old origin = 1, new origin = 2);
wait for event (origin = 1, confirmed = 2);
END
  • A failover may be necessary. IMPORTANT: "shoot the master server in the head" - make sure it is powered off / disconnected from the network. On the slave server, run:
slonik <<END
failover (id = 1, backup node = 2);
drop node (id = 1, event node = 2);
END
  • Start the freeside daemons on the slave server:
/etc/init.d/freeside start