ceph编译

1.执行./install-deps.sh提示deb无法安装
解决方案:
直接使用dpkg -i来安装deb,会提示缺失3个库,库名如下:
cython
python
dh-systemd
其中cython和python手动安装好后,也会依旧报错。此时修改debian/control文件,从文件里去掉这3个库即可。

2.执行./install-deps.sh提示pip不存在
解决方案:
在activate_virtualenv()函数第一行加入apt -y install python-pip

3.执行./install-deps.sh提示/activate文件不存在
解决方案:
注释掉activate_virtualenv方法的最后一行,即. $env_dir/bin/activate

4.执行./install-deps.sh提示ERROR: Could not find a version that satisfies the requirement faulthandler
解决方案:
在 src/pybind/mgr/dashboard/requirements.txt里删掉pytest-faulthandler

5.执行./do_cmake.sh提示python和ceph所用的openssl库不一致
解决方案:
降低ubuntu22.04里的openssl版本,包括/usr/include/openssl,/usr/bin/openssl和/lib/x86_64-linux-gnu下的libssl so文件。

6.执行make报错,./boost/thread/pthread/thread_data.hpp:60:5: error: missing binary operator before token "("60 | #if PTHREAD_STACK_MIN > 0
解决方案:
修改ceph/build/boost/src/Boost/boost/thread/pthread下的thread_data.hpp文件,将60~62行注释掉

7.只编译ceph-osd:
make ceph-osd -j4

你可能感兴趣的:(ceph,linux,运维)