1

I can't install Ceph on my centos 7 system. The error message is like:

node.example.com][DEBUG ] This system is not registered with an entitlement server. You can use subscription-manager to register.

[node.example.com][DEBUG ] Determining fastest mirrors 
[node.example.com][DEBUG ] No package ceph available. 
[node.example.com][DEBUG ] No package ceph-osd available. 
[node.example.com][DEBUG ] No package ceph-mds available. 
[node.example.com][DEBUG ] No package ceph-mon available. 
[node.example.com][DEBUG ] No package ceph-radosgw available. 
[node.example.com][WARNIN] Error: Nothing to do 
[node.example.com][ERROR ] RuntimeError: command returned non-zero exit status: 1 [ceph_deploy][ERROR ] RuntimeError: Failed to execute command: yum -y install ceph ceph-osd ceph-mds ceph-mon ceph-radosgw
0xF2
  • 314
  • 3
  • 17
Kisen.Chin
  • 229
  • 2
  • 4
  • 9

2 Answers2

2

Below command install ceph mimic version 13.2

 ceph-deploy install  cephmon02 cephmon03  --repo-url=http://mirrors.aliyun.com/ceph/rpm-mimic/el7/

Changed mimic to another version.

L_J
  • 2,351
  • 10
  • 23
  • 28
iraj norouzi
  • 111
  • 8
1

You need to install the ceph repo. first.

Refer the below link:

# yum install centos-release-ceph-jewel

# yum install ceph-{mon,osd,...}

https://wiki.centos.org/SpecialInterestGroup/Storage

kumar
  • 2,530
  • 6
  • 33
  • 57