错误1
ceph_deploy.mon mon.ceph-mon-2 monitor is not yet in quorum
移除监控节点上次初始化创建的文件
ceph-deploy mon destroy ceph-mon-node1
错误2
neither `public_addr` nor `public_network` keys are defined for monitors
说明有多网卡需要再 ~/my_cluster/ceph.conf
中添加
public_network = 172.16.245.0/24
错误3
unable to resolve host ceph-osd-node2
修改响应节点 /etc/hosts
把 127.0.0.1 localhost
改为 127.0.0.1 主机名
localhost 改成对应的主机名
错误4
RuntimeError: Failed to execute command: /usr/sbin/ceph-disk -v activate --mark-init systemd --mount /dev/sdb
激活失败 再失败的节点上运行
sudo ceph-disk activate-all
错误5
MGR_DOWN no active mgr
没有 mgr 服务创建即可
ceph-deploy mgr create node1 node2 node3
mgr 服务已启动 重启
service ceph-mgr@node1 restart
错误6
application not enabled on pool '...'
这个是在新版本中出现的,需要给 pool 打个标签。具体为什么不知道 - -
ceph osd pool application enable pool_name rgw
错误7
重启物理机 osd down
1. osd 所在物理机 osd service 是否启动
systemctl status ceph-osd@*
2. 启动失败
ceph osd in osd.0....X
3. 执行第 1 步
网友评论