Prerequisites
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)
- 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 MON resides.
Generate a minimal conf file for the client host and place it at a standard location:
1
2
3
4on client host
mkdir -p -m 755 /etc/ceph
ssh {user}@{mon-host} "sudo ceph config generate-minimal-conf" | sudo tee /etc/ceph/ceph.conf
chmod 644 /etc/ceph/ceph.confCreate a CephX user and get its secret key:
1
ssh {user}@{mon-host} "sudo ceph fs authorize cephfs-1 client.dongwei / rw" | sudo tee /etc/ceph/ceph.client.dongwei.keyring
In 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.
Ensure that the keyring has appropriate permissions:
1
chmod 600 /etc/ceph/ceph.client.dongwei.keyring
Create Pool/FS
Creating pools
A Ceph file system requires at least two RADOS pools, one for data and one for metadata.
1
2ceph osd pool create cephfs_data
ceph osd pool create cephfs_metadataCreating the file system
1
ceph fs new cephfs-1 cephfs_metadata cephfs_data
Check the status of the file system
1
ceph fs status
check mds status
1
ceph mds stat
Using Erasure Coded pools with CephFS(optional)
1
ceph osd pool set my_ec_pool allow_ec_overwrites true
Mount CephFS using Kernel Driver
1 | mount -t ceph {device-string}={path-to-mounted} {mount-point} -o {key-value-args} {other-args} |
check
1
dongwei@6a65c746-e532-11ef-8ac2-fa7c097efb00.cephfs-1=/ 190G 0 190G 0% /mnt/cephfs
Mount CephFS using FUSE
install ceph-fuse
1
2
3
4
5
6
7Install the Ceph release RPM (adjust 'reef' as needed)
sudo rpm -Uvh https://download.ceph.com/rpm-reef/el9/noarch/ceph-release-1-1.el9.noarch.rpm
Import the Ceph GPG key
sudo rpm --import 'https://download.ceph.com/keys/release.asc'
sudo dnf install -y ceph-fusemount
1
2
3
4
5ceph-fuse {mount point} {options}
mkdir /mnt/mycephfs
ceph-fuse --id dongwei /mnt/mycephfs # mount default fs
ceph-fuse --id dongwei --client_fs cephfs-1 /mnt/mycephfs # mount specify fscheck
1
ceph-fuse 190G 0 190G 0% /mnt/cephfs2