Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
rpm -Uvh https://download.ceph.com/rpm-octopuspacific/el8/noarch/ceph-release-1-1.el8.noarch.rpm
yum install epel-release
yum clean all
yum update
yum#yum install ceph
yum install ceph-radosgw

...


Now a 'ceph status' should workTBC



Code Block
languagebash
mkdir -p /var/lib/ceph/radosgw/ceph-rgw.`hostname -s`
ceph auth get-or-create client.rgw.`hostname -s` osd 'allow rwx' mon 'allow rw' -o /var/lib/ceph/radosgw/ceph-rgw.`hostname -s`/keyring
touch /var/lib/ceph/radosgw/ceph-rgw.`hostname -s`/done




Code Block
languagebash
chown -R ceph:ceph /var/lib/ceph/radosgw
chown -R ceph:ceph /var/log/ceph
chown -R ceph:ceph /var/run/ceph
chown -R ceph:ceph /etc/ceph



Code Block
languagebash
systemctl enable ceph-radosgw.target
systemctl enable ceph-radosgw@rgw.<rgw_hostname>
systemctl start ceph-radosgw@rgw.<rgw_hostname>



Ref: https://access.redhat.com/documentation/en-us/red_hat_ceph_storage/3/html/installation_guide_for_red_hat_enterprise_linux/manually-installing-ceph-object-gateway

...