惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
B
Blog
博客园 - 三生石上(FineUI控件)
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
Vercel News
Vercel News
量子位
A
About on SuperTechFans
博客园 - 聂微东
WordPress大学
WordPress大学
D
DataBreaches.Net
The Cloudflare Blog
M
MIT News - Artificial intelligence
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
Docker
雷峰网
雷峰网
C
Check Point Blog
S
SegmentFault 最新的问题
U
Unit 42
月光博客
月光博客
Apple Machine Learning Research
Apple Machine Learning Research

OneUptime Blog

How to Monitor Azure App Services (PaaS) with OpenTelemetry Grafana Stack vs OneUptime: DIY Observability or Unified Platform? Your AI Workloads Are About to Blow Up Your Observability Bill The Great Observability Consolidation Is Here How to Write Custom Object Classes for Ceph How to Write Custom Ceph Manager Modules How to Write a ceph.conf Configuration File How to Use Rook-Ceph with OpenShift How to Use Rook-Ceph with Longhorn for Comparison How to Configure Volume Snapshot Class for RBD in Rook How to Configure VolumeReplicationClass Scheduling Intervals in Rook How to Set Up Volume Replication with Rook-Ceph How to Create Volume Group Snapshots with Rook CSI How to Visualize Ceph Network Performance in Grafana How to Enable Virtual Host-Style Bucket Access in Rook How to View Runtime Configuration via Admin Socket How to View Quota Settings and Update Stats in Ceph RGW How to View PG Scaling Recommendations with autoscale-status How to View PG Distribution via Admin Socket How to View Performance Metrics in the Ceph Dashboard How to View OSD Performance Counters in Ceph How to View Connection Status via Admin Socket How to View Ceph Cluster Summary Dashboard via CLI How to Version Control Rook-Ceph Configuration How to Version Control Ceph Infrastructure with Terraform How to Verify Kubernetes Node Requirements for Rook-Ceph Deployment How to Verify Health Before and After Rook Upgrades How to Verify Data Integrity with Deep Scrubbing How to Verify Complete Rook-Ceph Cleanup How to Verify Backup Integrity from Ceph Snapshots
How to Use the S3 API with Ceph RGW
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Overview

Ceph RGW implements the Amazon S3 API, making it compatible with any S3 client including AWS CLI, boto3, and s3cmd. This guide covers common S3 operations against a Ceph RGW endpoint using both the CLI and Python SDK.

Prerequisites

Ensure you have:

  • A running RGW instance with an accessible endpoint
  • A user account with S3 credentials
# Get the RGW endpoint in a Rook cluster
kubectl -n rook-ceph get svc rook-ceph-rgw-my-store -o jsonpath='{.status.loadBalancer.ingress[0].ip}'

# Retrieve user credentials from the secret
kubectl -n rook-ceph get secret rook-ceph-object-user-my-store-myuser \
  -o jsonpath='{.data.AccessKey}' | base64 -d
kubectl -n rook-ceph get secret rook-ceph-object-user-my-store-myuser \
  -o jsonpath='{.data.SecretKey}' | base64 -d

Using AWS CLI with RGW

Configure the AWS CLI for Ceph RGW:

# Configure credentials
aws configure set aws_access_key_id MYACCESSKEY
aws configure set aws_secret_access_key MYSECRETKEY
aws configure set region us-east-1

# Set the RGW endpoint for each command
export RGW_ENDPOINT=http://rgw.example.com:80

Bucket Operations

# Create a bucket
aws --endpoint-url $RGW_ENDPOINT s3 mb s3://mybucket

# List buckets
aws --endpoint-url $RGW_ENDPOINT s3 ls

# Enable versioning on a bucket
aws --endpoint-url $RGW_ENDPOINT s3api put-bucket-versioning \
  --bucket mybucket \
  --versioning-configuration Status=Enabled

Object Operations

# Upload an object
aws --endpoint-url $RGW_ENDPOINT s3 cp file.txt s3://mybucket/file.txt

# Upload a directory recursively
aws --endpoint-url $RGW_ENDPOINT s3 sync ./mydir s3://mybucket/mydir/

# Download an object
aws --endpoint-url $RGW_ENDPOINT s3 cp s3://mybucket/file.txt ./file-copy.txt

# List objects
aws --endpoint-url $RGW_ENDPOINT s3 ls s3://mybucket --recursive

# Delete an object
aws --endpoint-url $RGW_ENDPOINT s3 rm s3://mybucket/file.txt

Access Control

# Apply a bucket policy (public read)
cat > bucket-policy.json << 'EOF'
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Principal": "*",
      "Action": "s3:GetObject",
      "Resource": "arn:aws:s3:::mybucket/*"
    }
  ]
}
EOF

aws --endpoint-url $RGW_ENDPOINT s3api put-bucket-policy \
  --bucket mybucket \
  --policy file://bucket-policy.json

Using boto3 with Ceph RGW

import boto3
from botocore.config import Config

s3 = boto3.client(
    's3',
    endpoint_url='http://rgw.example.com:80',
    aws_access_key_id='MYACCESSKEY',
    aws_secret_access_key='MYSECRETKEY',
    config=Config(signature_version='s3v4'),
    region_name='us-east-1'
)

# Create bucket
s3.create_bucket(Bucket='mybucket')

# Upload object
s3.upload_file('localfile.txt', 'mybucket', 'remotefile.txt')

# Download object
s3.download_file('mybucket', 'remotefile.txt', 'downloaded.txt')

# List objects
response = s3.list_objects_v2(Bucket='mybucket')
for obj in response.get('Contents', []):
    print(obj['Key'], obj['Size'])

Multipart Upload for Large Files

# Use AWS CLI which handles multipart automatically
aws --endpoint-url $RGW_ENDPOINT \
  s3 cp large-file.iso s3://mybucket/large-file.iso \
  --expected-size 10737418240

Summary

Ceph RGW provides full S3 API compatibility, allowing you to use any S3 client by pointing it at the RGW endpoint with your user credentials. The AWS CLI, boto3, and s3cmd all work with RGW with minor configuration changes. Use --endpoint-url with the CLI or endpoint_url in boto3 to redirect requests from AWS to your Ceph cluster.