Hello.
I have next ceph configuration: :
Network 172.16.6.0/24 is ceph cluster/public network and proxmox management network.
We would to upgrade ceph cluster network to 10Gb/s and split proxmox and ceph to different connections. We have installed additional network adapters to each node.
How I can change ceph subnet without cluster reinitialization?
Is enouth to change this option: cluster network = 172.16.99.0/24? (For example)
Do I need to add options like this for each OSD?:
[osd.X]
public addr = {host-public-ip-address}
cluster addr = {host-cluster-ip-address}[/CODE]
Or will be better to move ceph cluster completelly to another subnet?:
Thanks all.
I have next ceph configuration: :
Code:
# ceph.conf
[global]
auth client required = none
auth cluster required = none
auth service required = none
cluster network = 172.16.6.0/24
filestore xattr use omap = true
keyring = /etc/pve/priv/$cluster.$name.keyring
mon allow pool delete = true
osd journal size = 5120
osd pool default min size = 1
public network = 172.16.6.0/24
[osd]
keyring = /var/lib/ceph/osd/ceph-$id/keyring
[mon.pve06]
host = pve06
mon addr = 172.16.6.18:6789
[mon.pve04]
host = pve04
mon addr = 172.16.6.16:6789
[mon.pve01]
host = pve01
mon addr = 172.16.6.14:6789
Network 172.16.6.0/24 is ceph cluster/public network and proxmox management network.
We would to upgrade ceph cluster network to 10Gb/s and split proxmox and ceph to different connections. We have installed additional network adapters to each node.
How I can change ceph subnet without cluster reinitialization?
Is enouth to change this option: cluster network = 172.16.99.0/24? (For example)
Do I need to add options like this for each OSD?:
[osd.X]
public addr = {host-public-ip-address}
cluster addr = {host-cluster-ip-address}[/CODE]
Or will be better to move ceph cluster completelly to another subnet?:
Code:
cluster network = 172.16.99.0/24
public network = 172.16.99.0/24
Thanks all.