From owner-freebsd-isp@FreeBSD.ORG Thu Jul 3 01:09:43 2003 Return-Path: Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23EF437B401 for ; Thu, 3 Jul 2003 01:09:43 -0700 (PDT) Received: from misery.sdf.com (misery.sdf.com [207.200.153.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3D7343FE3 for ; Thu, 3 Jul 2003 01:09:40 -0700 (PDT) (envelope-from tom@sdf.com) Received: from tom (helo=localhost) by misery.sdf.com with local-esmtp (Exim 2.12 #1) id 19XxQE-0005C6-00; Wed, 2 Jul 2003 23:18:22 -0700 Date: Wed, 2 Jul 2003 23:18:09 -0700 (PDT) From: Tom Samplonius To: Etienne Ledoux In-Reply-To: <200306281044.24659.etienne@unix.za.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-isp@freebsd.org Subject: Re: Which filesystem can I use to access a shared Rackstorage (Raid Array) X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Jul 2003 08:09:43 -0000 On Wed, 2 Jul 2003, Etienne Ledoux wrote: > Greetings, > > I finally got my netservers up and running. I can mount the rackstorage > (shared Raid Array) from both. But as expected if I add/delete something on > the one server the other one doesn't see it untill I reboot it and remount > the share. Just an umount/remount doesn't pick up the change either. BTW, that probably damamged your filesystem, and you should probably force a fsck. UFS assumes exclusive access, and if another system is modifying the same structures, they will write all over each other. When you umount and mount on the one system, it doesn't see the changes, because it assumes nothing has changed since the last time it had the disk mounted. > This being a nice setup I would like to be able to access (add/delete) at the > same time from both servers. Which filesystem available for FreeBSD can I use > to do this ? Well, it would require a filesystem that would establish a lock with its peer before updating anything. I'm not aware of too many filesystems that can do this. > Alternitavily, how can a remount the parition without having to reboot to be > able to see all the new data. This will enable me to sort off use the second > server as a standby. Just never mount the filesystem on two systems at once. Unmount on one, and then mount on the other. Basically, treat it as pseudo removable disk. > e. > _______________________________________________ > freebsd-isp@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-isp > To unsubscribe, send any mail to "freebsd-isp-unsubscribe@freebsd.org" > >