mirror of https://gitlab.crans.org/nounous/nixos
add information probleme possible
parent
78274fd0fa
commit
f65fc106c7
|
|
@ -77,6 +77,22 @@ Pour créer un osd (attention de prendre le bon disque parce que ca supprime les
|
||||||
sudo ceph-volume lvm create --data /dev/sdf --no-systemd
|
sudo ceph-volume lvm create --data /dev/sdf --no-systemd
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# Problèmes
|
||||||
|
|
||||||
|
Si avec `ceph -s` vous avez :
|
||||||
|
|
||||||
|
`1 monitors have not enabled msgr2`,
|
||||||
|
activez le msgr2, afin que les vms proxmox puissent utiliser les disques :
|
||||||
|
```bash
|
||||||
|
sudo ceph mon enable-msgr2
|
||||||
|
```
|
||||||
|
`mons are allowing insecure global_id reclaim`
|
||||||
|
alors
|
||||||
|
```bash
|
||||||
|
ceph config set mon auth_allow_insecure_global_id_reclaim false
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
# Info
|
# Info
|
||||||
|
|
||||||
- Monitor : c'est lui qui garde la map d'ou est quoi
|
- Monitor : c'est lui qui garde la map d'ou est quoi
|
||||||
|
|
@ -114,3 +130,14 @@ gourmand en ressources.
|
||||||
- migration nfs -> cephfs ?
|
- migration nfs -> cephfs ?
|
||||||
|
|
||||||
# Plan Migration
|
# Plan Migration
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Monitoring
|
||||||
|
|
||||||
|
Les dashboard grafana viennent de : <https://github.com/ceph/ceph/tree/main/monitoring/ceph-mixin/dashboards_out>
|
||||||
|
|
||||||
|
Pour activer prometheus (port 9283 par defaut) :
|
||||||
|
```bash
|
||||||
|
ceph mgr module enable prometheus
|
||||||
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue