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

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
D
DataBreaches.Net
罗磊的独立博客
博客园 - 司徒正美
Last Week in AI
Last Week in AI
The Cloudflare Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
The GitHub Blog
The GitHub Blog
宝玉的分享
宝玉的分享
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
小众软件
小众软件
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
B
Blog
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell

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.