[TOC]node
軟件 | 版本 |
---|---|
操做系統 | CentOS7.6 |
ceph | nautilus, v14.2.4 |
由於是剛搭建完ceph不久, rgw以前暫時沒用到就沒有添加。
今天添加rgw後,經過重啓dashboard,發現報Error了。python
ceph mgr module disable dashboard ceph mgr module enable dashboard
Module 'devicehealth' has failed: Failed to import _strptime because the import lockis held by another thread.
經過在dashboard中的日誌查看,發現mgr節點啓動報錯。vim
經過谷歌搜索,發現有人提過這個bug,好在在stackoverflow中找到了解決辦法。bash
mgr節點中,修改devicehealth模塊文件,ide
vim /usr/share/ceph/mgr/devicehealth/module.py
ui
添加一行import _strptime
操作系統
重啓mgr服務。報錯消失,問題解決。rest
systemctl restart ceph-mgr@ceph-node2.service
日誌
參考資料:
[1] https://tracker.ceph.com/issues/41879
[2] https://stackoverflow.com/questions/2427240/thread-safe-equivalent-to-pythons-time-strptimecode