Compiling Ceph
- Download the ceph-14.2.8 source code.
1wget https://download.ceph.com/tarballs/ceph-14.2.8.tar.gz --no-check-certificate
- Apply the UCX patch by placing ceph-14.2.8-ucx.patch in the current directory.
1 2 3
tar -zxvf ceph-14.2.8.tar.gz cd ceph-14.2.8 patch -p1 < ceph-14.2.8-ucx.patch
- Compile Ceph.
1 2 3 4 5
cd .. tar -zcvf ceph-14.2.8.tar.bz2 ceph-14.2.8 cp ceph-14.2.8/ceph.spec /root/rpmbuild/SPECS/ cp ceph-14.2.8.tar.bz2 /root/rpmbuild/SOURCES/ rpmbuild -bb /root/rpmbuild/SPECS/ceph.spec
Parent topic: Compiling the Ceph Software Package