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

推荐订阅源

IT之家
IT之家
A
About on SuperTechFans
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
N
Netflix TechBlog - Medium
Microsoft Security Blog
Microsoft Security Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
博客园 - Franky
D
Docker
Martin Fowler
Martin Fowler
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
Last Week in AI
Last Week in AI
U
Unit 42
F
Fortinet All Blogs
H
Help Net Security
Blog — PlanetScale
Blog — PlanetScale
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
P
Proofpoint News Feed
月光博客
月光博客
G
Google Developers Blog

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 AWS CLI with Ceph RGW S3
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Overview

Ceph RADOS Gateway (RGW) exposes an S3-compatible HTTP API. The AWS CLI works with Ceph RGW by pointing it at the RGW endpoint instead of AWS. This lets teams use familiar AWS tooling against their on-premises Ceph cluster.

Prerequisites

  • AWS CLI v2 installed
  • Ceph RGW running (via Rook or standalone)
  • RGW user credentials (access key and secret key)

Create an RGW User

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  radosgw-admin user create \
  --uid=awscli-user \
  --display-name="AWS CLI User" \
  --access-key=myaccesskey \
  --secret-key=mysecretkey

Configure AWS CLI Profile

Set up a named profile pointing to Ceph RGW:

aws configure --profile ceph
# AWS Access Key ID: myaccesskey
# AWS Secret Access Key: mysecretkey
# Default region name: us-east-1
# Default output format: json

Basic S3 Operations

Create a bucket:

aws s3 mb s3://my-bucket \
  --endpoint-url http://rook-ceph-rgw-my-store.rook-ceph:80 \
  --profile ceph

Upload a file:

aws s3 cp /tmp/myfile.txt s3://my-bucket/myfile.txt \
  --endpoint-url http://rook-ceph-rgw-my-store.rook-ceph:80 \
  --profile ceph

List bucket contents:

aws s3 ls s3://my-bucket/ \
  --endpoint-url http://rook-ceph-rgw-my-store.rook-ceph:80 \
  --profile ceph

Download a file:

aws s3 cp s3://my-bucket/myfile.txt /tmp/downloaded.txt \
  --endpoint-url http://rook-ceph-rgw-my-store.rook-ceph:80 \
  --profile ceph

Sync a Local Directory

aws s3 sync /var/backups/ s3://my-bucket/backups/ \
  --endpoint-url http://rook-ceph-rgw-my-store.rook-ceph:80 \
  --profile ceph \
  --delete

Using the s3api Subcommand

Get bucket ACL:

aws s3api get-bucket-acl \
  --bucket my-bucket \
  --endpoint-url http://rook-ceph-rgw-my-store.rook-ceph:80 \
  --profile ceph

Put an object with metadata:

aws s3api put-object \
  --bucket my-bucket \
  --key config/app.yaml \
  --body /tmp/app.yaml \
  --metadata env=production,version=1.0 \
  --endpoint-url http://rook-ceph-rgw-my-store.rook-ceph:80 \
  --profile ceph

Environment Variable Shortcut

Instead of always passing --endpoint-url, export the built-in AWS_ENDPOINT_URL environment variable supported by AWS CLI v2:

export AWS_DEFAULT_REGION=us-east-1
export AWS_ACCESS_KEY_ID=myaccesskey
export AWS_SECRET_ACCESS_KEY=mysecretkey
export AWS_ENDPOINT_URL=http://rook-ceph-rgw-my-store.rook-ceph:80

aws s3 ls

Summary

The AWS CLI integrates seamlessly with Ceph RGW by using the --endpoint-url flag or an environment variable. All standard S3 operations including bucket management, file transfers, and metadata manipulation work against Ceph with no code changes required.