How to store Object in Ceph Object Store
Clash Royale CLAN TAG #URR8PPP How to store Object in Ceph Object Store I have deployed a Ceph cluster over 3 nodes and have created msd and rgw . I have 3 machines named ceph1, ceph2 and ceph3. msd rgw I have created a user with radosgw-admin user create command. radosgw-admin user create Now I want to access the ceph cluster using swift api and create a container. For that I wrote following java code : import org.javaswift.joss.client.factory.AccountConfig; import org.javaswift.joss.client.factory.AccountFactory; import org.javaswift.joss.client.factory.AuthenticationMethod; import org.javaswift.joss.model.Account; import org.javaswift.joss.model.Container; import org.javaswift.joss.model.StoredObject; import java.io.File; import java.io.IOException; import java.util.*; public class Example { public static void main(String args) { String username = "sahoo"; String password = "IM8K5GAQIXHFRAKYS761"; String authUrl = "http://ceph1:7480/"; ...