From owner-freebsd-questions@FreeBSD.ORG Thu Nov 27 13:36:03 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5079D106564A for ; Thu, 27 Nov 2008 13:36:03 +0000 (UTC) (envelope-from eforezz@gmail.com) Received: from yx-out-2324.google.com (yx-out-2324.google.com [74.125.44.29]) by mx1.freebsd.org (Postfix) with ESMTP id 0B6398FC18 for ; Thu, 27 Nov 2008 13:36:02 +0000 (UTC) (envelope-from eforezz@gmail.com) Received: by yx-out-2324.google.com with SMTP id 8so442621yxb.13 for ; Thu, 27 Nov 2008 05:36:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:mime-version:content-type:content-transfer-encoding :content-disposition; bh=zumT7V4iiOKZsDAWOHiOCu9sIM8Ambc294lzaEV9HiY=; b=vvFdUFQyYM3alTwOc7RZmixGrGs77KjVgl1UthW7vQuRKv8b/lqOeP/S2RLYTeMhfb AWT/aK0WxhXftgU/Q8mHL30uzre/YCwrI4L99rntgBDYgn9ZHfdUE2MvT3qRbaXfuWcf CXKavxXC5Mx1H6Hhe1tw5rksepp7dOuGzcuSY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:mime-version:content-type :content-transfer-encoding:content-disposition; b=vHsotZh2XyiGM0tp/N9C2Og+Y8nJyQycIxKCWor41W99c91whb4cqTWZ0exD1mk1YK iDqkW1YBfvNsQLKPWIa9Dz3A5EiV0PJfnNlUbZJu56R0D1QZq2/jfzw6ihVDahR4vbY3 Qil3LUp6MAsboHME8+Nitvjo7pPQ9hNT70OGU= Received: by 10.65.51.16 with SMTP id d16mr7487028qbk.41.1227792961713; Thu, 27 Nov 2008 05:36:01 -0800 (PST) Received: by 10.65.155.3 with HTTP; Thu, 27 Nov 2008 05:36:01 -0800 (PST) Message-ID: Date: Thu, 27 Nov 2008 15:36:01 +0200 From: EforeZZ To: ansarm@gmail.com MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: freebsd-questions@freebsd.org Subject: realtime network replication X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 13:36:03 -0000 Ansar Mohammed wrote: >Hello all, >I need to replicate /home between two freebsd servers in real time (no >scheduled rsyncs) >What are my options? Hi, The following configuration seems to do what you ask for: Two NFS servers, each of them provides access to a huge equal-sized file-container. Third server mounts directories with files-containers from the prevoius two servers. GEOM RAID1 mirroring is used on the third server to create a /home filesystem backed by two huge file-containers. You will have a copy of your /home inside the GEOM file-container on each of the two servers. You will get realtime data replication. Drop a note if the performance of such configuration is acceptable :) Best regards, EforeZZ