1

我正在尝试使用 radosgw 将 Openstack (liberty) swift 与 Ceph (Jewel) 一起使用。目的是对象应该存储在 ceph osds 下。我有一个可用的 Openstack 和 Ceph 集群。

为了使用 Ceph 作为对象存储后端,我在 ceph cluster 中安装并配置了 radosgw。在 openstack 节点中,我安装了“python-swiftclient”,创建了一个对象存储服务并使用 radosgw 的 URL 为该服务添加了一个端点。

我按照下面链接中的说明进行操作。 http://docs.ceph.com/docs/jewel/radosgw/keystone/

头文件

[client.rgw.rgw]
rgw_frontends = "civetweb port=7480"
rgw enable ops log = true
rgw ops log rados = true
rgw thread pool size = 2000
rgw override bucket index max shards = 23
ms dispatch throttle bytes = 209715200

[client.radosgw.gateway]
rgw keystone url =  http://controller:35357
rgw keystone admin token = ADMIN
rgw keystone accepted roles =  _member_,admin
rgw keystone token cache size = 200
rgw keystone revocation interval = 60
rgw s3 auth use keystone = true
nss db path = /var/ceph/nss

Openstack 端点

# openstack endpoint list |grep -i object
 | 8efd00b48db249e69244a5f3e35356b1 | RegionOne | swift | object-store | True | internal | http://rgw:7480/swift/v1 |
 | b7d1c7ccc84640138116d8e6676b28a3 | RegionOne | swift | object-store | True | admin | http://rgw:7480/swift/v1 |
 | c7844842b53647a4b623905c54cc6c75 | RegionOne | swift | object-store | True | public | http://rgw:7480/swift/v1 |

从命令行输出 swift list

# swift list -v
test_CONTAINER

从命令行输出 swift stat

# swift stat -v
          StorageURL: http://rgw:7480/swift/v1
          Auth Token: AUTH_rgwtk0e00000074657374757365723a737769667431dd200c6d2136112ee6d657300feb16d05ffa8f80a2e53ce6c257b32ec5505ff396e5e8
          Account: v1
          Containers: 7
          Objects: 12
          Bytes: 168
          Meta Temp-Url-Key: healthseq
          X-Account-Bytes-Used-Actual: 40960
          X-Timestamp: 1473615022.41820
          X-Trans-Id: tx0000000000000000006b3-0057d594ae-1f5cb-default
          Content-Type: text/plain; charset=utf-8
          Accept-Ranges: bytes

当我尝试访问 openstack 仪表板中的对象存储 - 容器时,出现以下错误。 http://pastebin.com/ALevYCX8

请参阅下图,了解我在尝试从仪表板访问对象存储时遇到的错误。 openstack仪表板中的错误

4

1 回答 1

1

只需在您的代码 [client.radosgw.gateway] 中删除这一行并合并设置

于 2017-03-02T10:59:54.100 回答