无法放入桶中

发布于 2024-12-17 05:23:51 字数 460 浏览 1 评论 0原文

首先,我很确定 riak 通过使用以下命令设置正常:riak-admin status

但我无法放入存储桶测试中:

curl -v -X PUT -d 'This is really cool' -H "Content-Type: text/plain" http://markson.hk:8098/buckets/test/1234

< HTTP/1.1 404 Object Not Found
< Server: MochiWeb/1.1 WebMachine/1.9.0 (participate in the frantic)
< Date: Fri, 18 Nov 2011 12:13:03 GMT
< Content-Type: text/html
< Content-Length: 193

错误是否是由于新存储桶测试造成的?我应该先创建它吗?

First I'm pretty sure the riak is setting ok by using the command: riak-admin status

But I can't PUT in into a bucket test:

curl -v -X PUT -d 'This is really cool' -H "Content-Type: text/plain" http://markson.hk:8098/buckets/test/1234

< HTTP/1.1 404 Object Not Found
< Server: MochiWeb/1.1 WebMachine/1.9.0 (participate in the frantic)
< Date: Fri, 18 Nov 2011 12:13:03 GMT
< Content-Type: text/html
< Content-Length: 193

Does the error due to the new bucket test? Should I create it first?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

装迷糊 2024-12-24 05:23:51

看一下Basic Riak API Operations,基本的PUT请求看起来像这样:

PUT /riak/bucket/key

因此你的curl示例应该类似于:

curl -v -X PUT -d 'The is so cool' -H "Content-Type: text/plain" http://markson.hk:8098/riak/test/1234

但是话又说回来,似乎有人已经为你存入了一个测试密钥:

Take a look at Basic Riak API Operations, the basic PUT request looks like this:

PUT /riak/bucket/key

Hence your curl example should be similar to:

curl -v -X PUT -d 'The is so cool' -H "Content-Type: text/plain" http://markson.hk:8098/riak/test/1234

But then again, seems like somebody already deposited a test key for you:

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文