Back to Ceph

Mount CephFS: Prerequisites

doc/cephfs/mount-prerequisites.rst

21.0.03.1 KB
Original Source

Mount CephFS: Prerequisites

You can use CephFS by mounting the file system on a machine or by using :ref:cephfs-shell <cephfs-shell>. A system mount can be performed using :ref:the kernel driver <cephfs_mount_using_kernel_driver> as well as :ref:the FUSE driver <cephfs_mount_using_fuse>. Both have their own advantages and disadvantages. Read the following section to understand more about both of these ways to mount CephFS.

For Windows CephFS mounts, please check the :ref:ceph-dokan <ceph-dokan> page.

Which CephFS Client?

The FUSE client is the most accessible and the easiest to upgrade to the version of Ceph used by the storage cluster, while the kernel client will always give better performance.

When encountering bugs or performance issues, it is often instructive to try using the other client, in order to find out whether the bug was client-specific or not (and then to let the developers know).

General Prerequisites for Mounting CephFS

Before mounting CephFS, ensure that the client host (where CephFS has to be mounted and used) has a copy of the Ceph configuration file (i.e. ceph.conf) and a keyring of the CephX user that has permission to access the MDS. Both of these files must already be present on the host where the Ceph Monitor resides.

#. Generate a minimal conf file for the client host and place it at a standard location::

# on client host
mkdir -p -m 755 /etc/ceph
ssh {user}@{mon-host} "sudo ceph config generate-minimal-conf" | sudo tee /etc/ceph/ceph.conf

Alternatively, you may copy the conf file. But the above method generates a conf with minimal details which is usually sufficient. For more information, see Client Authentication_ and :ref:bootstrap-options.

#. Ensure that the conf has appropriate permissions::

chmod 644 /etc/ceph/ceph.conf

#. Create a CephX user and get its secret key::

ssh {user}@{mon-host} "sudo ceph fs authorize cephfs client.foo / rw" | sudo tee /etc/ceph/ceph.client.foo.keyring

In the above command, replace cephfs with the name of your CephFS, foo by the name you want for your CephX user and / by the path within your CephFS for which you want to allow access to the client host and rw stands for both read and write permissions. Alternatively, you may copy the Ceph keyring from the Monitor host to client host at /etc/ceph but creating a keyring specific to the client host is better. While creating a CephX keyring/client, using the same client name across multiple machines is perfectly fine.

.. note:: If you get 2 prompts for password while running above any of 2 above command, run sudo ls (or any other trivial command with sudo) immediately before these commands.

#. Ensure that the keyring has appropriate permissions::

chmod 600 /etc/ceph/ceph.client.foo.keyring

.. note:: There might be few more prerequisites for kernel and FUSE mounts individually, please check respective mount documents.

.. _Client Authentication: ../client-auth