Return-Path: X-Original-To: apmail-jackrabbit-users-archive@minotaur.apache.org Delivered-To: apmail-jackrabbit-users-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E04CB105D1 for ; Tue, 7 May 2013 11:41:29 +0000 (UTC) Received: (qmail 47295 invoked by uid 500); 7 May 2013 11:41:29 -0000 Delivered-To: apmail-jackrabbit-users-archive@jackrabbit.apache.org Received: (qmail 47010 invoked by uid 500); 7 May 2013 11:41:25 -0000 Mailing-List: contact users-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@jackrabbit.apache.org Delivered-To: mailing list users@jackrabbit.apache.org Received: (qmail 46982 invoked by uid 99); 7 May 2013 11:41:24 -0000 Received: from minotaur.apache.org (HELO minotaur.apache.org) (140.211.11.9) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 May 2013 11:41:24 +0000 Received: from localhost (HELO mail-ee0-f43.google.com) (127.0.0.1) (smtp-auth username bdelacretaz, mechanism plain) by minotaur.apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 May 2013 11:41:24 +0000 Received: by mail-ee0-f43.google.com with SMTP id b15so249081eek.30 for ; Tue, 07 May 2013 04:41:22 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=c/wbhvh4RDbaSTPfN0QZNBNpR4v8yZ2RuKUChazM9HU=; b=dsOOd4gHFHu179nONUpJha7SLvefysaz2DfTeqs1M85JrD/sZD+KQhil7seYK+6Fkj 3/FE60rqpG69oxqXlGSpVCdW2+t2SvhLJflgDlm40jGrvuTzWAkizgm6zYDd4OBR+wes 3cyD2aEYyxmO6QBGHmF+F4SyIVnzPjoH3IqQJ6Uj0oEjH/xQ45PcLqQxe8fm5fsCTNIA kuGHViaBP8odPV/0w/RDpuNiXpimEkNjTuDQy5xOjRclHu41FlMmCVT1oVR68FxAInYo GnRckR1HYWDrtQtuKsVp2GIk8v60FMVxCSzFkMa1Soed4XndqtkA6/ZP0fKTkE26GgQh n18g== MIME-Version: 1.0 X-Received: by 10.14.3.137 with SMTP id 9mr4738736eeh.0.1367926882867; Tue, 07 May 2013 04:41:22 -0700 (PDT) Received: by 10.223.146.206 with HTTP; Tue, 7 May 2013 04:41:22 -0700 (PDT) In-Reply-To: References: Date: Tue, 7 May 2013 13:41:22 +0200 Message-ID: Subject: Re: I am confused about where my repository actually is... From: Bertrand Delacretaz To: users@jackrabbit.apache.org Content-Type: text/plain; charset=UTF-8 On Mon, May 6, 2013 at 11:01 PM, Jay McHugh wrote: > ...So, to try to figure out where my data really is - what property (or > properties) should I look for in the configuration XML files?... Here's two unixish command-line tricks that can also help finding that out: a) Use lsof, dtrace or a similar utility to see what files the process that you're running is accessing b) Use this pattern to find which files change under some_folder: touch /tmp/ts ...run the software for a bit find some_folder -newer /tmp/ts -Bertrand