All of lore.kernel.org
 help / color / mirror / Atom feed
From: Venky Shankar <vshankar@redhat.com>
To: Jeff Layton <jlayton@redhat.com>
Cc: idryomov@gmail.com, ceph-devel <ceph-devel@vger.kernel.org>
Subject: Re: [PATCH 4/4] doc: document new CephFS mount device syntax
Date: Tue, 29 Jun 2021 11:48:33 +0530	[thread overview]
Message-ID: <CACPzV1==tkzJYfE1GjRrBzp5Tcoo_Trx3PRuXvhcJqJFFtrADw@mail.gmail.com> (raw)
In-Reply-To: <efacd6bfc864c5a29291e8ab24f82e0a6bd9022e.camel@redhat.com>

On Mon, Jun 28, 2021 at 8:57 PM Jeff Layton <jlayton@redhat.com> wrote:
>
> On Mon, 2021-06-28 at 13:25 +0530, Venky Shankar wrote:
> > Signed-off-by: Venky Shankar <vshankar@redhat.com>
> > ---
> >  Documentation/filesystems/ceph.rst | 23 ++++++++++++++++++++---
> >  1 file changed, 20 insertions(+), 3 deletions(-)
> >
> > diff --git a/Documentation/filesystems/ceph.rst b/Documentation/filesystems/ceph.rst
> > index 7d2ef4e27273..e46f9091b851 100644
> > --- a/Documentation/filesystems/ceph.rst
> > +++ b/Documentation/filesystems/ceph.rst
> > @@ -82,7 +82,7 @@ Mount Syntax
> >
> >  The basic mount syntax is::
> >
> > - # mount -t ceph monip[:port][,monip2[:port]...]:/[subdir] mnt
> > + # mount -t ceph user@fsid.fs_name=/[subdir] mnt -o mon_host=monip1[:port][/monip2[:port]]
> >
>
> The actual code lists the option as "mon_addr".

Good catch. The mount helper uses `mon_host`, however, the option
passed to the kernel is `mon_addr`.

>
> >  You only need to specify a single monitor, as the client will get the
> >  full list when it connects.  (However, if the monitor you specify
> > @@ -90,16 +90,33 @@ happens to be down, the mount won't succeed.)  The port can be left
> >  off if the monitor is using the default.  So if the monitor is at
> >  1.2.3.4::
> >
> > - # mount -t ceph 1.2.3.4:/ /mnt/ceph
> > + # mount -t ceph cephuser@07fe3187-00d9-42a3-814b-72a4d5e7d5be.cephfs=/ /mnt/ceph -o mon_host=1.2.3.4
> >
> >  is sufficient.  If /sbin/mount.ceph is installed, a hostname can be
> > -used instead of an IP address.
> > +used instead of an IP address and the cluster FSID can be left out
> > +(as the mount helper will fill it in by reading the ceph configuration
> > +file)::
> >
> > +  # mount -t ceph cephuser@cephfs=/ /mnt/ceph -o mon_host=mon-addr
> >
> > +Multiple monitor addresses can be passed by separating each address with a slash (`/`)::
> > +
> > +  # mount -t ceph cephuser@cephfs=/ /mnt/ceph -o mon_host=192.168.1.100/192.168.1.101
> > +
> > +When using the mount helper, monitor address can be read from ceph
> > +configuration file if available. Note that, the cluster FSID (passed as part
> > +of the device string) is validated by checking it with the FSID reported by
> > +the monitor.
> >
> >  Mount Options
> >  =============
> >
> > +  mon_host=ip_address[:port][/ip_address[:port]]
> > +     Monitor address to the cluster
> > +
>
> Might want to mention that "mon_addr" is just used to bootstrap the
> connection to the cluster, and that it'll follow the monmap after that
> point.

ACK

>
> > +  fsid=cluster-id
> > +     FSID of the cluster
> > +
> >    ip=A.B.C.D[:N]
> >       Specify the IP and/or port the client should bind to locally.
> >       There is normally not much reason to do this.  If the IP is not
>
> --
> Jeff Layton <jlayton@redhat.com>
>


-- 
Cheers,
Venky


  reply	other threads:[~2021-06-29  6:19 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-28  7:55 [PATCH 0/4] ceph: new mount device syntax Venky Shankar
2021-06-28  7:55 ` [PATCH 1/4] ceph: new device mount syntax Venky Shankar
2021-06-29 11:32   ` Luis Henriques
2021-06-29 13:54     ` Venky Shankar
2021-06-29 15:10       ` Jeff Layton
2021-06-29 15:42         ` Luis Henriques
2021-06-28  7:55 ` [PATCH 2/4] ceph: validate cluster FSID for new device syntax Venky Shankar
2021-06-28 15:04   ` Jeff Layton
2021-06-29  4:42     ` Venky Shankar
2021-06-28  7:55 ` [PATCH 3/4] ceph: record updated mon_addr on remount Venky Shankar
2021-06-28 15:19   ` Jeff Layton
2021-06-28  7:55 ` [PATCH 4/4] doc: document new CephFS mount device syntax Venky Shankar
2021-06-28 15:26   ` Jeff Layton
2021-06-29  6:18     ` Venky Shankar [this message]
2021-06-28 15:32 ` [PATCH 0/4] ceph: new " Jeff Layton
2021-06-29 11:22 ` Luis Henriques
2021-06-29 12:13   ` Venky Shankar

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CACPzV1==tkzJYfE1GjRrBzp5Tcoo_Trx3PRuXvhcJqJFFtrADw@mail.gmail.com' \
    --to=vshankar@redhat.com \
    --cc=ceph-devel@vger.kernel.org \
    --cc=idryomov@gmail.com \
    --cc=jlayton@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.