Freeside:1.7:Documentation:Administration:Slony

From Freeside
Revision as of 07:31, 27 February 2008 by Supaplex (talk | contribs) (Reverted edits by RelriClino (Talk); changed back to last version by Ivan)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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