Hello,
I have three node proxmox cluster:
optiplex 7020
xeon e3-1265lv3
16GB
120GB SSD for OS
512GB nvme for ceph
1GbE network for "external" access
dual 10GbE network (for cluster)
Network is connected as stated here:
https://pve.proxmox.com/wiki/Full_Mesh_Network_for_Ceph_Server
as routed setup
each node can "talk" to other two nodes,
network config:
PVE1
PVE2
PVE3
ceph.conf:
any command like:
anyone can help me with this?
Thanks in advance.
I have three node proxmox cluster:
optiplex 7020
xeon e3-1265lv3
16GB
120GB SSD for OS
512GB nvme for ceph
1GbE network for "external" access
dual 10GbE network (for cluster)
Network is connected as stated here:
https://pve.proxmox.com/wiki/Full_Mesh_Network_for_Ceph_Server
as routed setup
each node can "talk" to other two nodes,
network config:
PVE1
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
mtu 9000
auto enp1s0f0
iface enp1s0f0 inet static
address 192.168.20.10/24
mtu 9000
up ip route add 192.168.20.30/32 dev enp1s0f0
down ip route del 192.168.20.30/32
auto enp1s0f1
iface enp1s0f1 inet static
address 192.168.20.10/24
mtu 9000
up ip route add 192.168.20.20/32 dev enp1s0f1
down ip route del 192.168.20.20/32
auto vmbr0
iface vmbr0 inet static
address 192.168.10.11/24
gateway 192.168.10.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
mtu 9000
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
mtu 9000
auto enp1s0f0
iface enp1s0f0 inet static
address 192.168.20.20/24
mtu 9000
up ip route add 192.168.20.10/32 dev enp1s0f0
down ip route del 192.168.20.10/32
auto enp1s0f1
iface enp1s0f1 inet static
address 192.168.20.20/24
mtu 9000
up ip route add 192.168.20.30/32 dev enp1s0f1
down ip route del 192.168.20.30/32
auto vmbr0
iface vmbr0 inet static
address 192.168.10.12/24
gateway 192.168.10.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
mtu 9000
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
mtu 9000
auto enp1s0f0
iface enp1s0f0 inet static
address 192.168.20.30/24
mtu 9000
up ip route add 192.168.20.20/32 dev enp1s0f0
down ip route del 192.168.20.20/32
auto enp1s0f1
iface enp1s0f1 inet static
address 192.168.20.30/24
mtu 9000
up ip route add 192.168.20.10/32 dev enp1s0f1
down ip route del 192.168.20.10/32
auto vmbr0
iface vmbr0 inet static
address 192.168.10.13/24
gateway 192.168.10.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
mtu 9000
Code:
[global]
auth_client_required = cephx
auth_cluster_required = cephx
auth_service_required = cephx
cluster network = 192.168.20.0/24
fsid = 9f47e518-4613-4564-863b-e8d3a923a1f5
mon_allow_pool_delete = true
mon_host = 192.168.20.10
ms_bind_ipv4 = true
ms_bind_ipv6 = false
osd_pool_default_min_size = 2
osd_pool_default_size = 3
public_network = 192.168.20.0/24
[client]
keyring = /etc/pve/priv/$cluster.$name.keyring
[mon.pve1]
public_addr = 192.168.20.10
Code:
root@pve1:~# pveceph status
command 'ceph -s' failed: got timeout
Thanks in advance.