Skip to main content
  1. 2023/
  2. Posts from July/

More fun with Ceph RADOSGW

More fun with ceph radosgw #

in a previous post, we went over how we got radosgw working inside ceph

root@px-m-44:~# ceph config-key set rgw/cert/noblewise/default.crt -i /etc/pve/priv/wildcard_dog.wolfspyre.io-crt-aio.pem
set rgw/cert/noblewise/default.crt
root@px-m-44:~# ceph config-key set rgw/cert/noblewise/default.key -i /etc/pve/priv/wildcard_dog.wolfspyre.io-key.pem
set rgw/cert/noblewise/default.key
root@px-m-44:~#

https://gist.github.com/robbat2/ec0a66eed28e5f0e1ef7018e9c77910c#rgw-zonegroup-configuration https://xahteiwi.eu/resources/hints-and-kinks/hosting-website-radosgw/

https://forum.proxmox.com/threads/ceph-dashboard-rados-gw-management-problem.123104/

https://forum.proxmox.com/threads/ceph-dashboard-rados-gw-management-problem.123104/post-559370

vitor.prado Member May 24, 2023 New Add bookmark #6 Hi guys.

The issue is happening because the MGR is trying to connect to RGW with the hostname of RGW, instead the IP address. To avoid this problem, comment the variable rgw_dns_name in ceph.conf and configure your zonegroup to use hostnames with the FQDN of your domain and all name of yours RGW, like this:

{ “api_name” : “regionname”, “default_placement” : “default-placement”, “endpoints” : [ ], “hostnames” : [ “yourname.domain.com”, “rgw1-name”, “rgw2-name” ],

https://greenstatic.dev/posts/2020/ssl-tls-rgw-ceph-config/

https://docs.ceph.com/en/quincy/radosgw/s3/commons/ https://docs.ceph.com/en/quincy/radosgw/multisite/ https://gist.github.com/robbat2/ec0a66eed28e5f0e1ef7018e9c77910c#rgw-zonegroup-configuration

3
3 mins
hmmmmm