To configure the Metadata Server for the Ceph Filesystem, you should have a running Ceph cluster. In the earlier chapters, we learned to deploy the Ceph storage cluster using Ansible; we will use the same cluster and Ansible for the MDS deployment.
Deploying Ceph MDS
How to do it...
Deploying an MDS server through ceph-ansible is quite easy, let's review the steps on how this is done:
- Using Ansible from ceph-node1, we will deploy and configure MDS on ceph-node2. On our Ansible configuration node ceph-node1, add a new section [mdss] to the /etc/ansible/hosts file:
- Navigate to the Ansible configuration directory on ceph-node1, /usr/share/ceph-ansible:
root@ceph-node1 # cd /usr/share/ceph-ansible
- Run the...