cURL操作Openstack对象存储的ReST API详解
由于最近工作需要使用openstack ,使用curl操作openstack对象存储的rest api,这是本人找了好多资料完成的,这里记录下。
使用openstack ,使用curl操作openstack对象存储的rest api
curl 是一个利用url语法规定来传输文件和数据的工具,支持很多协议,如http、ftp、telnet等。本文主要是介绍使用该工具和http协议与swift服务如何交互。curl允许你从命令行或shell脚本传送和接收http的请求和响应。这使得直接与rest的api工作而无需其他客服端apis成为可能。本文,我们需要使用到以下的curl命令行选项:
-x method 描述http的请求方法(head, get等) -d dump 将http响应头部到stdout. -h header 描述一个在请求中的http\https头部. -v 使用操作的过程更加详细
1.认证
in order to use the rest api, you will first need to obtain a authorization token, which will need to be passed in for each request using the x-auth-token header. the following example demonstrates how to use curl to obtain the authorization token and the url of the storage system.
为了使用rest的api,我们首先需要获得一个认证令牌,用于传给每个使用x-auth-token头部的请求。以下的例子展示了如何使用curl来获得认证令牌和存储系统的url。
exp1:获得x-storage-url和x-auth-token
curl -d- -h 'x-storage-user: test:tester' -h 'x-storage-pass: testing' http://127.0.0.1:8080/auth/v1.0
运行结果如下:
sting' http://127.0.0.1:8080/auth/v1.0 http/1.1 200 ok x-storage-url: http://127.0.0.1:8080/v1/auth_test x-storage-token: auth_tkf828cc87bb9348168a52619b1f7e3928 x-auth-token: auth_tkf828cc87bb9348168a52619b1f7e3928 content-length: 0 date: fri, 07 oct 2011 07:45:58 gmt
也可以使用-v选项来获得更详细的信息:
curl -v -h 'x-storage-user: test:tester' -h 'x-storage-pass: testing' http://127.0.0.1:8080/auth/v1.0
运行结果如下:
* about to connect() to 127.0.0.1 port 8080 (#0) * trying 127.0.0.1... connected * connected to 127.0.0.1 (127.0.0.1) port 8080 (#0) > get /auth/v1.0 http/1.1 > user-agent: curl/7.21.3 (i686-pc-linux-gnu) libcurl/7.21.3 openssl/0.9.8o zlib/1.2.3.4 libidn/1.18 > host: 127.0.0.1:8080 > accept: */* > x-storage-user: test:tester > x-storage-pass: testing > < http/1.1 200 ok < x-storage-url: http://127.0.0.1:8080/v1/auth_test < x-storage-token: auth_tkf828cc87bb9348168a52619b1f7e3928 < x-auth-token: auth_tkf828cc87bb9348168a52619b1f7e3928 < content-length: 0 < date: fri, 07 oct 2011 07:48:30 gmt < * connection #0 to host 127.0.0.1 left intact * closing connection #0
存储url和认证令牌作为响应头部返回。在认证之后,你可以使用curl来执行存储服务上的head,get,delete,post和put请求。
2.确定存储的使用情况
一个head请求可以发送到存储服务来确定你已经在系统中存储了多少数据以及你使用的容器数量。使用-x开关来描述正确的http方法和-d将http响应头部输出到终端(stdout)。
exp2:查询帐号的存储使用情况
curl -x head -d - \ -h "x-auth-token:auth_tkf828cc87bb9348168a52619b1f7e3928" \ http://127.0.0.1:8080/v1/auth_test
输出如下:
http/1.1 204 no content x-account-object-count: 3 x-account-bytes-used: 92983 x-account-container-count: 4 accept-ranges: bytes content-length: 0 date: fri, 07 oct 2011 08:04:38 gmt
http请求必须包含了一个头部来描述认证令牌。在响应中的http头部显示在该存储帐号中的容器数量和整个帐号所存储的总字节数。
3.创建一个存储容器
在上传任何数据到openstack的对象存储之前,你必须创建一个存储容器。你可以使用put请求来创建一个容器;curl也可以用于该目的。
exp3:创建一个photos的容器
curl -x put -d - -h "x-auth-token:auth_tkf828cc87bb9348168a52619b1f7e3928" http://127.0.0.1:8080/v1/auth_test/photos
运行结果如下:
http/1.1 201 created content-length: 18 content-type: text/html; charset=utf-8 date: fri, 07 oct 2011 08:18:44 gmt
返回201(created)的http状态代码表示容器已被成功地创建。
4.上传一个存储对象
在创建完一个容器之后,你可以上传一个本地文件。对于这个例子,我们上传一张林志玲mm的照片。-t开关描述到上传的本地文件的完整路径。
exp4:上传对象
curl -x put -t /home/swift/下载/lzl.jpg -d - \ -h "content-type: image/jpeg" \ -h "x-auth-token: auth_tkf828cc87bb9348168a52619b1f7e3928" \ -h "x-object-meta-lzl: 一张关于林志玲的美图" \ http://127.0.0.1:8080/v1/auth_test/photos/lzl.jpg
结果如下:
http/1.1 201 created content-length: 118 content-type: text/html; charset=utf-8 etag: 870563216b9f54942fc09d574aa3e2bd last-modified: fri, 07 oct 2011 08:39:49 gmt date: fri, 07 oct 2011 08:39:51 gmt
5.其他curl命令
你可以使用curl工具发出任何已定义的用于openstack对象存储的rest方法。例如,你可以使用curl来发送post和delete请求即使我们没有提供的相关例子。比如,下载刚才上传的照片:
curl -x get -h "x-auth-token: auth_tkf828cc87bb9348168a52619b1f7e3928" http://127.0.0.1:8080/v1/auth_test/photos/lzl.jpg >td_lzl.jpg
注意:一般地,你每次调用curl来执行一个操作,系统就会创建一个独立的tcp/ip和ssl连接(https)然后丢弃。然而,使用语言的apis是设计用来重用这些在操作之间的连接,因此提供了更好的细嫩。我们推荐在你的产品应用中使用一种支持语言的apis并且限制curl仅用来快速和简单地测试/诊断。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
上一篇: 详解Docker目录挂载的方法总结