问题
- CentOS-7.6.1810离线环境搭建Ceph环境时出现gpg-key安装源公钥检查错误。
- 原因是执行ceph-deploy install 命令的服务器无法访问互联网。
- 具体报错如下图:
解决
安装命令后新增--no-adjust-repos
参数即可跳过安装 GPG 密钥。
命令如下:
ceph-deploy install --release {ceph_release_version} {ceph_node} --no-adjust-repos
我实际操作的命令如下:
ceph-deploy install nmtp_mysql1 nmtp_mysql3 nmtp_mysql4 --no-adjust-repos
实际操作结果:
安装成功。