How to do it...

To use Ceph object storage with the Swift API, we need the Swift sub-user and secret keys that we created earlier in this chapter. This user information will then be passed using the Swift CLI tool in order to access the Ceph object storage:

  1. On the client-node1, a virtual machine installs the Python Swift client:
        # easy_install pip
# pip install --upgrade setuptools
# pip install --upgrade python-swiftclient
  1. Get the swift sub-user and secret keys from the RGW node:
        # radosgw-admin user info --uid pratima 
-k /var/lib/ceph/radosgw/ceph-rgw.rgw-node1/keyring
--name client.rgw.rgw-node1
  1. Access Ceph object storage by listing the default bucket:
        # swift -A http://192.168.1.106:8080/auth/1.0 
-U pratima:swift
-K whUTYlKFeKvKO59O6wFOANoyoH37SUJEjBD9cQmH list
  1. Add a new bucket, second-bucket:
        # swift -A http://192.168.1.106:8080/auth/1.0 
-U pratima:swift
-K whUTYlKFeKvKO59O6wFOANoyoH37SUJEjBD9cQmH post second-bucket
  1. List the buckets; it should show the new second-bucket as well:
        # swift -A http://192.168.1.106:8080/auth/1.0 
-U pratima:swift
-K whUTYlKFeKvKO59O6wFOANoyoH37SUJEjBD9cQmH list
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset