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

推荐订阅源

Recent Announcements
Recent Announcements
博客园 - Franky
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
人人都是产品经理
人人都是产品经理
博客园 - 【当耐特】
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
爱范儿
爱范儿
罗磊的独立博客
博客园_首页
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
V
Visual Studio Blog
T
Tailwind CSS 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 the ceph-authtool Utility
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

What Is ceph-authtool

ceph-authtool is a command-line tool for managing CephX keyring files locally, without needing a running Ceph cluster or network connectivity. It allows you to create new keyrings, generate keys, add entities, and print keyring contents. This is useful for pre-provisioning credentials, disaster recovery, and offline key management.

Installing ceph-authtool

On Debian/Ubuntu:

apt-get install ceph-common

On RHEL/CentOS:

dnf install ceph-common

In Rook environments, ceph-authtool is available inside the toolbox pod:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- bash

Creating a New Keyring

Create a keyring file with a new entity and randomly generated key:

ceph-authtool /tmp/myapp.keyring --create-keyring --gen-key -n client.myapp

This creates a new file /tmp/myapp.keyring with a random key for client.myapp but no capabilities yet.

Generating and Printing a Key

Generate a new random key and print it to stdout without creating a file:

ceph-authtool --gen-print-key

Output:

AQBzm7dg...==

This is useful when you need a key value to inject into existing scripts or templates.

Adding Capabilities to a Keyring

After creating the keyring, add capability strings:

ceph-authtool /tmp/myapp.keyring -n client.myapp \
  --cap mon 'allow r' \
  --cap osd 'allow rw pool=appdata'

Inspecting a Keyring

Print the contents of an existing keyring:

ceph-authtool -l /tmp/myapp.keyring

Sample output:

[client.myapp]
    key = AQBzm7dg...==
    caps mon = "allow r"
    caps osd = "allow rw pool=appdata"

Printing Only the Key Value

Extract just the base64 key value:

ceph-authtool -p -n client.myapp /tmp/myapp.keyring

Output:

AQBzm7dg...==

Adding Multiple Entities to One Keyring

A single keyring file can hold multiple entities. Add additional users:

# Create initial keyring
ceph-authtool /tmp/multi.keyring --create-keyring --gen-key -n client.user1

# Add second entity
ceph-authtool /tmp/multi.keyring --gen-key -n client.user2

# Add caps to each
ceph-authtool /tmp/multi.keyring -n client.user1 \
  --cap mon 'allow r' --cap osd 'allow rw pool=pool1'

ceph-authtool /tmp/multi.keyring -n client.user2 \
  --cap mon 'allow r' --cap osd 'allow rw pool=pool2'

Importing an authtool-Created Keyring to Ceph

Once you have created a keyring with ceph-authtool, register it with the cluster:

ceph auth import -i /tmp/myapp.keyring

Verify:

ceph auth get client.myapp

Use Case: Offline Keyring Pre-Provisioning

In air-gapped or regulated environments, you may need to pre-generate keys and register them before deploying applications:

# Step 1: Generate key offline
ceph-authtool /tmp/preprovisioned.keyring --create-keyring --gen-key -n client.app

# Step 2: Transfer keyring to cluster node
scp /tmp/preprovisioned.keyring admin@ceph-node:/tmp/

# Step 3: Import into cluster
ceph auth import -i /tmp/preprovisioned.keyring

# Step 4: Set caps
ceph auth caps client.app mon 'allow r' osd 'allow rw pool=appdata'

Summary

ceph-authtool manages Ceph keyring files offline. Use --create-keyring --gen-key to create new keyrings, --cap to add capabilities, -l to list keyring contents, -p to print just the key value, and --gen-print-key to generate standalone key values. After offline creation, import keyrings into the cluster with ceph auth import. This tool is essential for disaster recovery and air-gapped deployment scenarios in Rook environments.