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

推荐订阅源

有赞技术团队
有赞技术团队
B
Blog
IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
量子位
博客园 - 叶小钗
T
Tailwind CSS Blog
小众软件
小众软件
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
雷峰网
雷峰网
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Blog — PlanetScale
Blog — PlanetScale
V
V2EX
博客园_首页
I
InfoQ
B
Blog RSS Feed
Microsoft Azure Blog
Microsoft Azure 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 Understand CephX Authentication Flow
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

CephX is the authentication protocol used by Ceph to secure communication between clients and cluster daemons. Understanding how CephX works is essential for administering secure Ceph deployments and diagnosing authentication failures.

What is CephX?

CephX is a shared-secret authentication system inspired by Kerberos. It uses symmetric cryptography and session tickets to authenticate entities (clients, OSDs, MONs, MDSs) without transmitting secrets over the network.

The key participants in CephX are:

  • The Ceph Monitor, which acts as the authentication server
  • Clients requesting access (applications, RBD, CephFS users)
  • Daemons (OSDs, MDSs) that validate client credentials

The Authentication Flow

The CephX handshake follows these steps:

  1. Client sends auth request - The client contacts a Monitor with its entity name (e.g., client.admin)
  2. Monitor issues a challenge - The Monitor sends a random challenge encrypted with the client's shared secret
  3. Client proves identity - The client decrypts the challenge and responds, proving it holds the secret
  4. Monitor issues a session ticket - A time-limited ticket is returned, granting access to specific services
  5. Client presents ticket to OSD/MDS - The service validates the ticket against the Monitor's shared secret
# View all existing auth keys in the cluster
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph auth list

# Get details for a specific entity
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph auth get client.admin

Keyring Files and Their Role

Each entity in the cluster uses a keyring file to store its shared secret:

# Export a specific keyring
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph auth get client.admin -o /tmp/ceph.client.admin.keyring

# Print keyring content
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph auth print-key client.admin

In Rook, keyrings are stored as Kubernetes Secrets:

kubectl -n rook-ceph get secret rook-ceph-admin-keyring -o yaml

Capabilities and What They Control

Every key has capability strings that define what it can do:

# Create a restricted client key
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph auth get-or-create client.myapp \
    mon 'allow r' \
    osd 'allow rw pool=mypool'

Common capability values:

  • allow r - read-only access
  • allow rw - read/write access
  • allow * - full access (use with caution)
  • allow rw pool=<name> - scoped to a specific pool

Debugging Authentication Failures

If a client fails to authenticate, check the Monitor logs:

kubectl -n rook-ceph logs deploy/rook-ceph-mon-a | grep -i "auth\|EACCES\|no key"

Test authentication directly:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph --id myapp --keyring /etc/ceph/keyring health

Common errors and fixes:

  • EACCES - wrong key or capability mismatch
  • auth: error reading file - keyring file missing or wrong permissions
  • no key: client.X - entity does not exist in auth database

Summary

CephX authentication uses a challenge-response mechanism where Monitors act as an authentication authority, issuing time-limited session tickets to verified clients. Keyrings store shared secrets, and capabilities define fine-grained access permissions. In Rook-managed clusters, keyrings are stored as Kubernetes Secrets and can be inspected and rotated via standard Ceph auth commands or the Rook operator.