Your submission was sent successfully! Close

You have successfully unsubscribed! Close

Thank you for signing up for our newsletter!
In these regular emails you will find the latest updates about Ubuntu and upcoming events where you can meet our team.Close

Client setup

This appendix shows how to set up a test client host that can be used for deployment verification purposes in the Storage types and LXD integration sections.

The client is created within the Juju model used by the given deployment. Begin by deploying the ubuntu application (and giving it an application name of ‘ceph-client’):

juju deploy ubuntu ceph-client

Generate a minimal ceph.conf file, make a local copy, and transfer it to the client:

juju ssh ceph-mon/0 sudo ceph config generate-minimal-conf | tee ceph.conf
juju scp ceph.conf ceph-client/0:

Connect to the client:

juju ssh ceph-client/0

On the client host,

Install the required software, put the ceph.conf file in place, and set up the correct permissions:

sudo apt install -y ceph-common
sudo mv ~ubuntu/ceph.conf /etc/ceph
sudo chmod 644 /etc/ceph/ceph.conf
sudo chown root: /etc/ceph/ceph.conf

This page was last modified 1 year, 2 months ago. Help improve this document in the forum.