Proxmox » Historique » Version 9
Laurent GUERBY, 10/08/2023 23:48
1 | 5 | Laurent GUERBY | {{toc}} |
---|---|---|---|
2 | 1 | Laurent GUERBY | |
3 | 1 | Laurent GUERBY | h1. Proxmox |
4 | 5 | Laurent GUERBY | |
5 | 5 | Laurent GUERBY | h2. Cluster proxmox tetaneutral.net |
6 | 5 | Laurent GUERBY | |
7 | 5 | Laurent GUERBY | |
8 | 6 | Laurent GUERBY | |
9 | 8 | Laurent GUERBY | h2. Serveur hote cluster proxmox |
10 | 1 | Laurent GUERBY | |
11 | 8 | Laurent GUERBY | Lors de l'installation de proxmox au boot sur les machines ryzen CM X570D4U le DHCP va marcher sur une carte ethernet 1 Gbit/s qui est en access VLAN 128 |
12 | 1 | Laurent GUERBY | |
13 | 8 | Laurent GUERBY | Une fois l'install terminee avec cette IP temporaire il faut mettre a jour la configuration reseau |
14 | 8 | Laurent GUERBY | |
15 | 8 | Laurent GUERBY | 1/ Editer /etc/hosts pour remplacer le 192.168.128.xx par une IP VLAN 3191 192.168.91.xx |
16 | 8 | Laurent GUERBY | |
17 | 8 | Laurent GUERBY | 2/ Editer /etc/network/interfaces pour qu'il ressemble a : |
18 | 8 | Laurent GUERBY | |
19 | 1 | Laurent GUERBY | <pre> |
20 | 8 | Laurent GUERBY | auto lo |
21 | 8 | Laurent GUERBY | iface lo inet loopback |
22 | 8 | Laurent GUERBY | |
23 | 8 | Laurent GUERBY | iface enp38s0 inet manual |
24 | 8 | Laurent GUERBY | |
25 | 8 | Laurent GUERBY | iface enp39s0 inet manual |
26 | 8 | Laurent GUERBY | |
27 | 8 | Laurent GUERBY | iface enp45s0f0 inet manual |
28 | 8 | Laurent GUERBY | |
29 | 8 | Laurent GUERBY | iface enp45s0f1 inet manual |
30 | 8 | Laurent GUERBY | |
31 | 8 | Laurent GUERBY | iface enx1e90c5e88350 inet manual |
32 | 8 | Laurent GUERBY | |
33 | 8 | Laurent GUERBY | |
34 | 1 | Laurent GUERBY | auto vmbr0 |
35 | 8 | Laurent GUERBY | iface vmbr0 inet manual |
36 | 8 | Laurent GUERBY | bridge-ports enp45s0f0 |
37 | 8 | Laurent GUERBY | bridge-stp off |
38 | 8 | Laurent GUERBY | bridge-fd 0 |
39 | 8 | Laurent GUERBY | bridge-vlan-aware yes |
40 | 8 | Laurent GUERBY | bridge-vids 2-4094 |
41 | 8 | Laurent GUERBY | |
42 | 8 | Laurent GUERBY | auto vmbr0.3132 |
43 | 8 | Laurent GUERBY | iface vmbr0.3132 inet static |
44 | 8 | Laurent GUERBY | address IPV4SERVER/32 |
45 | 8 | Laurent GUERBY | gateway 91.224.148.1 |
46 | 8 | Laurent GUERBY | |
47 | 8 | Laurent GUERBY | iface vmbr0.3132 inet6 static |
48 | 8 | Laurent GUERBY | address 2a03:7220:8083:XX00::1/56 |
49 | 8 | Laurent GUERBY | address fe80::83:XX/64 |
50 | 8 | Laurent GUERBY | gateway fe80::31 |
51 | 8 | Laurent GUERBY | |
52 | 8 | Laurent GUERBY | auto vmbr0.3191 |
53 | 8 | Laurent GUERBY | iface vmbr0.3191 inet static |
54 | 8 | Laurent GUERBY | address 192.168.91.XX/24 |
55 | 8 | Laurent GUERBY | |
56 | 8 | Laurent GUERBY | auto vmbr0.3192 |
57 | 8 | Laurent GUERBY | iface vmbr0.3192 inet static |
58 | 8 | Laurent GUERBY | address 192.168.92.XX/24 |
59 | 8 | Laurent GUERBY | |
60 | 1 | Laurent GUERBY | auto vmbr1 |
61 | 1 | Laurent GUERBY | iface vmbr1 inet static |
62 | 1 | Laurent GUERBY | address 192.168.128.XX/24 |
63 | 1 | Laurent GUERBY | bridge-ports enp38s0 |
64 | 1 | Laurent GUERBY | bridge-stp off |
65 | 1 | Laurent GUERBY | bridge-fd 0 |
66 | 1 | Laurent GUERBY | |
67 | 1 | Laurent GUERBY | </pre> |
68 | 1 | Laurent GUERBY | |
69 | 1 | Laurent GUERBY | 3/ Faire @ifreload -a@ dans un screen |
70 | 1 | Laurent GUERBY | |
71 | 1 | Laurent GUERBY | Comme l'IP 128 ne change pas il ne devrait pas y avoir de perte de reseau. |
72 | 1 | Laurent GUERBY | |
73 | 1 | Laurent GUERBY | Rebooter pour valider |
74 | 9 | Laurent GUERBY | |
75 | 9 | Laurent GUERBY | h3. Ceph |
76 | 9 | Laurent GUERBY | |
77 | 9 | Laurent GUERBY | https://pve.proxmox.com/pve-docs/chapter-pveceph.html |
78 | 9 | Laurent GUERBY | |
79 | 9 | Laurent GUERBY | @ceph osd crush rule create-replicated replicated_hdd default host hdd@ |
80 | 9 | Laurent GUERBY | @ceph osd crush rule create-replicated replicated_ssd default host ssd@ |
81 | 9 | Laurent GUERBY | |
82 | 9 | Laurent GUERBY | @ceph osd pool set ceph1-hdd crush_rule replicated_hdd@ |
83 | 9 | Laurent GUERBY | @ceph osd pool set ceph1-ssd crush_rule replicated_ssd@ |
84 | 9 | Laurent GUERBY | |
85 | 9 | Laurent GUERBY | Pour erasure coding |
86 | 9 | Laurent GUERBY | |
87 | 9 | Laurent GUERBY | @pveceph pool create ec22 --erasure-coding k=2,m=2 --pg_num=128@ |