e5: 1/1/1 up {0=a=up:active}
Once the filesystem is created and the MDS is active, you are ready to mount
-the filesystem:
+the filesystem. If you have created more than one filesystem, you will
+choose which to use when mounting.
- `Mount CephFS`_
- `Mount CephFS as FUSE`_
=========================
- Mount Ceph FS as a FUSE
+Mount Ceph FS using FUSE
=========================
-For Ceph version 0.55 and later, ``cephx`` authentication is on by default.
Before mounting a Ceph File System in User Space (FUSE), ensure that the client
host has a copy of the Ceph configuration file and a keyring with CAPS for the
Ceph metadata server.
sudo mkdir /home/usernname/cephfs
sudo ceph-fuse -m 192.168.0.1:6789 /home/username/cephfs
+If you have more than one filesystem, specify which one to mount using
+the ``--client_mds_namespace`` command line argument, or add a
+``client_mds_namespace`` setting to your ``ceph.conf``.
+
See `ceph-fuse`_ for additional details.
To automate mounting ceph-fuse, you may add an entry to the system fstab_.
sudo mount -t ceph 192.168.0.1:6789:/ /mnt/mycephfs -o name=admin,secretfile=/etc/ceph/admin.secret
+If you have more than one filesystem, specify which one to mount using
+the ``mds_namespace`` option, e.g. ``-o mds_namespace=myfs``.
+
See `User Management`_ for details on cephx.
To unmount the Ceph file system, you may use the ``umount`` command. For example::