[GLLUG] Replication Software For Linux

Mike Szumlinski szumlins@pilot.msu.edu
Mon, 23 Sep 2002 09:57:27 -0400


I would think this is a something a simple shell script and a cron job 
would do better than special software.

#!/bin/sh
mount /path/to/server1 /mountpoint1
mount /path/to/server2 /mountpoint2
cp -R /path/to/webpage/ /mountpoint1
cp -R /path/to/webpage/ /mountpoint2
umount /mountpoint1
umount /mountpoint2

or something more civilized

-Mike
On Monday, September 23, 2002, at 09:22  AM, Ex Fed wrote:
>
> I have been asked to set up replication to replicate a persons web 
> pages across three servers.  Initially, I thought that the page could 
> be displayed inside of a frame and would not need to be replicated 
> onto the other servers, but the customer wants the page replicated 
> onto the other two servers automatically.