Accessing Ceph object storage using the Swift API

Ceph supports RESTful API that is compatible with the basic data access model of the Swift API. In the last section, we covered accessing the Ceph cluster via the S3 API; in this section, we will learn to access it via the Swift API.

How to do it

To use Ceph object storage with the Swift API, we need the Swift subuser 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 Ceph object storage:

  1. On client-node1, a virtual machine installs the python Swift client:
    # apt-get install python-setuptools
    # easy_install pip
    # pip install --upgrade setuptools
    # pip install --upgrade python-swiftclient
    
  2. Get the swift subuser and secret keys:
    # radosgw-admin user info --uid mona
    
  3. Access Ceph object storage by listing the default bucket:
    # swift -A http://192.168.1.106:7480/auth/1.0 -U mona:swift -K 6vxGDhuEBsPSyX1E7vYvFrTXLVqoJByMHT+jnXPV list
    
  4. Add a new bucket, second-bucket:
    # swift -A http://192.168.1.106:7480/auth/1.0 -U mona:swift -K 6vxGDhuEBsPSyX1E7vYvFrTXLVqoJByMHT+jnXPV post second-bucket
    
  5. List the buckets; it should show the new second-bucket as well:
    # swift -A http://192.168.1.106:7480/auth/1.0 -U mona:swift -K 6vxGDhuEBsPSyX1E7vYvFrTXLVqoJByMHT+jnXPV list
    
    How to do it

See also…

  • The Creating the RADOS Gateway user recipe
..................Content has been hidden....................

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