Projet

Général

Profil

Cluster Ganeti » Historique » Version 27

Laurent GUERBY, 11/07/2012 09:58

1 16 Mehdi Abaakouk
h1. Cluster Ganeti
2 1 Mehdi Abaakouk
3 9 Mehdi Abaakouk
{{>toc}}
4 9 Mehdi Abaakouk
5 25 Laurent GUERBY
h2. Liens
6 25 Laurent GUERBY
7 25 Laurent GUERBY
talk par iustin a google I/O sur ganeti : a 28:00 http://youtu.be/TELArK6SmyY
8 25 Laurent GUERBY
9 18 Laurent GUERBY
h2. Installation from scratch
10 18 Laurent GUERBY
11 23 Laurent GUERBY
h3. Ganeti
12 23 Laurent GUERBY
13 18 Laurent GUERBY
apt-get install ganeti2
14 1 Mehdi Abaakouk
15 23 Laurent GUERBY
h2. config LVM DRBD
16 18 Laurent GUERBY
17 23 Laurent GUERBY
/etc/lvm/lvm.conf
18 1 Mehdi Abaakouk
19 23 Laurent GUERBY
changer le filter lvm dans /etc/lvm/lvm.conf pour
20 23 Laurent GUERBY
21 18 Laurent GUERBY
<pre>
22 18 Laurent GUERBY
# filter = [ "a/.*/" ]
23 18 Laurent GUERBY
filter = ["r|/dev/cdrom|", "r|/dev/drbd[0-9]+|" ]
24 1 Mehdi Abaakouk
</pre>
25 18 Laurent GUERBY
26 23 Laurent GUERBY
Evite les soucis avec DRBD
27 1 Mehdi Abaakouk
28 23 Laurent GUERBY
h2. DRBD
29 23 Laurent GUERBY
30 19 Laurent GUERBY
* activer drbd
31 19 Laurent GUERBY
32 19 Laurent GUERBY
<pre>
33 24 Christophe Moille
# echo "options drbd minor_count=128 usermode_helper=/bin/true" >> /etc/modprobe.d/drbd-ganeti.conf
34 19 Laurent GUERBY
# rmmod drbd
35 19 Laurent GUERBY
# modprobe drbd
36 19 Laurent GUERBY
# cat /sys/module/drbd/parameters/usermode_helper 
37 1 Mehdi Abaakouk
/bin/true
38 19 Laurent GUERBY
</pre>
39 1 Mehdi Abaakouk
40 23 Laurent GUERBY
h2. Partition
41 1 Mehdi Abaakouk
42 23 Laurent GUERBY
* fdisk et LVM
43 23 Laurent GUERBY
44 23 Laurent GUERBY
<pre>
45 1 Mehdi Abaakouk
fdisk /dev/sda
46 1 Mehdi Abaakouk
new primary part
47 19 Laurent GUERBY
hex code 8e
48 23 Laurent GUERBY
</pre>
49 23 Laurent GUERBY
50 19 Laurent GUERBY
partprobe
51 19 Laurent GUERBY
pvcreate /dev/sda2 
52 1 Mehdi Abaakouk
vgcreate vg_ganeti /dev/sda2
53 19 Laurent GUERBY
54 18 Laurent GUERBY
55 23 Laurent GUERBY
S'il existe deja vider le volume group et le recreer
56 18 Laurent GUERBY
57 18 Laurent GUERBY
<pre>
58 18 Laurent GUERBY
pvs
59 1 Mehdi Abaakouk
vgs
60 1 Mehdi Abaakouk
lvs
61 18 Laurent GUERBY
lvremove
62 18 Laurent GUERBY
vgcreate kvmvg /dev/sdb... #TODO check
63 18 Laurent GUERBY
</pre>
64 18 Laurent GUERBY
65 23 Laurent GUERBY
h3. Network
66 23 Laurent GUERBY
67 20 Laurent GUERBY
<pre>
68 20 Laurent GUERBY
# dans /etc/network/interfaces
69 20 Laurent GUERBY
# The primary network interface
70 20 Laurent GUERBY
auto eth0
71 20 Laurent GUERBY
iface eth0 inet manual
72 20 Laurent GUERBY
73 20 Laurent GUERBY
# dans /etc/rc.local     
74 20 Laurent GUERBY
ip l set eth0 up    
75 20 Laurent GUERBY
                    
76 20 Laurent GUERBY
brctl addbr ganeti-br0
77 20 Laurent GUERBY
ip li set ganeti-br0 up
78 1 Mehdi Abaakouk
brctl addif ganeti-br0 eth0
79 20 Laurent GUERBY
                    
80 20 Laurent GUERBY
ip a a 10.42.0.13/24 dev ganeti-br0
81 20 Laurent GUERBY
ip r a default via 10.42.0.1 
82 20 Laurent GUERBY
              
83 20 Laurent GUERBY
</pre>
84 18 Laurent GUERBY
85 23 Laurent GUERBY
h3. DNS
86 21 Laurent GUERBY
87 1 Mehdi Abaakouk
<pre>
88 1 Mehdi Abaakouk
# Dans /etc/hosts              
89 21 Laurent GUERBY
10.42.0.10 tmaster.thsf tmaster
90 21 Laurent GUERBY
10.42.0.11 t1.thsf t1     
91 21 Laurent GUERBY
10.42.0.12 t2.thsf t2
92 21 Laurent GUERBY
10.42.0.13 t3.thsf t3
93 21 Laurent GUERBY
</pre>
94 23 Laurent GUERBY
95 23 Laurent GUERBY
h3. Ganeti Service
96 21 Laurent GUERBY
97 21 Laurent GUERBY
On master
98 21 Laurent GUERBY
99 21 Laurent GUERBY
<pre>
100 21 Laurent GUERBY
gnt-cluster init --nic-parameters mode=bridged,link=ganeti-br0 --master-netdev=ganeti-br0 \                       
101 21 Laurent GUERBY
 --vg-name vg_ganeti --enabled-hypervisors=kvm tmaster.thsf
102 21 Laurent GUERBY
103 21 Laurent GUERBY
# to add second machine
104 21 Laurent GUERBY
gnt-node add t2
105 21 Laurent GUERBY
106 21 Laurent GUERBY
# add sid
107 21 Laurent GUERBY
root@t3:~# cat /etc/apt/sources.list
108 21 Laurent GUERBY
# deb http://ftp2.fr.debian.org/debian/ wheezy main
109 21 Laurent GUERBY
110 21 Laurent GUERBY
deb http://ftp2.fr.debian.org/debian/ wheezy main
111 21 Laurent GUERBY
deb-src http://ftp2.fr.debian.org/debian/ wheezy main
112 21 Laurent GUERBY
113 21 Laurent GUERBY
deb http://security.debian.org/ wheezy/updates main
114 21 Laurent GUERBY
deb-src http://security.debian.org/ wheezy/updates main
115 21 Laurent GUERBY
116 21 Laurent GUERBY
deb http://ftp2.fr.debian.org/debian/ sid main
117 21 Laurent GUERBY
deb-src http://ftp2.fr.debian.org/debian/ sid main
118 21 Laurent GUERBY
119 21 Laurent GUERBY
root@t3:~# cat /etc/apt/preferences
120 21 Laurent GUERBY
Package: *
121 21 Laurent GUERBY
Pin: release a=unstable
122 21 Laurent GUERBY
Pin-priority: 10
123 21 Laurent GUERBY
124 21 Laurent GUERBY
125 21 Laurent GUERBY
# to create vm
126 21 Laurent GUERBY
apt-get install ganeti-htools ganeti ganeti-instance-debootstrap
127 21 Laurent GUERBY
128 22 Laurent GUERBY
#/etc/hosts
129 22 Laurent GUERBY
10.42.0.101 vm1.thsf vm1
130 22 Laurent GUERBY
131 22 Laurent GUERBY
gnt-cluster copyfile /etc/hosts
132 22 Laurent GUERBY
133 22 Laurent GUERBY
gnt-instance add -H kernel_path=/boot/vmlinuz-3.2.0-2-amd64,initrd_path=/boot/initrd.img-3.2.0-2-amd64 \
134 22 Laurent GUERBY
-t drbd -B memory=512M,vcpus=1 --disk 0:size=5G -I hail -o debootstrap+default vm1.thsf
135 22 Laurent GUERBY
136 21 Laurent GUERBY
</pre>
137 21 Laurent GUERBY
138 21 Laurent GUERBY
139 10 Mehdi Abaakouk
h2. Administration des VMs
140 1 Mehdi Abaakouk
141 27 Laurent GUERBY
h3. Gestion d'un disque en I/O error
142 18 Laurent GUERBY
143 27 Laurent GUERBY
First put the disk in failure offline:
144 27 Laurent GUERBY
echo offline > /sys/block/sdb/device/state
145 18 Laurent GUERBY
146 27 Laurent GUERBY
Then we need to remove the volume group, here /dev/kvmvg
147 27 Laurent GUERBY
We need to do it manually because vgremove will not work in this case
148 27 Laurent GUERBY
149 27 Laurent GUERBY
/dev/kvmvg# for i in *; do echo === $(date) == $i ; dmsetup remove /dev/kvmvg/"$i"; echo $?; done
150 27 Laurent GUERBY
151 27 Laurent GUERBY
This will leave a few lv when ganeti hasnt detected for some reason the disk failure. 
152 27 Laurent GUERBY
For those left we need to force drbd to go Diskless, use either gnt-instance info or ls -l /var/run/ganeti/instance-disks/ or /var/lib/ganeti/config.data to find the VM and /dev/drbdNNN then
153 27 Laurent GUERBY
154 27 Laurent GUERBY
drbdsetup /dev/drbd47 detach
155 27 Laurent GUERBY
156 27 Laurent GUERBY
Then gnt-instance info VM to force ganeti to recognize the disk failure (it will take a few minutes)
157 27 Laurent GUERBY
158 27 Laurent GUERBY
Then dmsetup remove will work.
159 27 Laurent GUERBY
160 27 Laurent GUERBY
After the last dmsetup remove /dev/kvmvg will disappear.
161 27 Laurent GUERBY
162 27 Laurent GUERBY
Now you can physically remove the disk and plug a new disk on a new SATA port (on the same SATA port the kernel didn't recognize the new drive)
163 27 Laurent GUERBY
Then create a LVM partition then vgcreate kvmvg /dev/sdX
164 27 Laurent GUERBY
165 27 Laurent GUERBY
Now we need to recreate redundancy 
166 27 Laurent GUERBY
167 27 Laurent GUERBY
On the still running VM you can use 
168 27 Laurent GUERBY
169 27 Laurent GUERBY
gnt-instance replace-disks --submit -a VMname
170 27 Laurent GUERBY
171 27 Laurent GUERBY
On the stopped VM you need to do manually
172 27 Laurent GUERBY
173 27 Laurent GUERBY
gnt-instance replace-disks --submit -p VMname # if primary to reconstruct
174 27 Laurent GUERBY
gnt-instance replace-disks --submit -s VMname # if secondary to reconstruct
175 27 Laurent GUERBY
176 27 Laurent GUERBY
At 15 MByte/s 1 TB to reconstruct will take about 18h30.
177 27 Laurent GUERBY
178 27 Laurent GUERBY
Links
179 27 Laurent GUERBY
180 27 Laurent GUERBY
http://docs.ganeti.org/ganeti/2.5/html/admin.html#preparing-for-disk-operations
181 27 Laurent GUERBY
http://docs.ganeti.org/ganeti/2.5/html/admin.html#generalized-storage-handling
182 27 Laurent GUERBY
http://www.lancealbertson.com/2011/02/handling-hdd-failures-with-ganeti/
183 27 Laurent GUERBY
184 10 Mehdi Abaakouk
h3. Demarrer et arrêter une instance ?
185 1 Mehdi Abaakouk
186 10 Mehdi Abaakouk
<pre>
187 10 Mehdi Abaakouk
gnt-instance start vm1
188 10 Mehdi Abaakouk
gnt-instance stop vm1
189 10 Mehdi Abaakouk
</pre>
190 1 Mehdi Abaakouk
191 26 Mehdi Abaakouk
Si pendant l'extinction de la VM le message suivant apparait:
192 26 Mehdi Abaakouk
<pre>WARNING: Could not shutdown block device disk/0 on node h6.tetaneutral.net: drbd45: can't shutdown drbd device: /dev/drbd45: State change failed: (-12) Device is held open by someone</pre>
193 26 Mehdi Abaakouk
194 26 Mehdi Abaakouk
Sur h6 on peut remarquer que l'on a un status non nominal sur drbd:
195 26 Mehdi Abaakouk
<pre>$ grep -A4 45: /proc/drbd
196 26 Mehdi Abaakouk
45: cs:WFConnection ro:Primary/Unknown ds:UpToDate/DUnknown C r----
197 26 Mehdi Abaakouk
    ns:68584404 nr:0 dw:67728388 dr:2484540 al:535 bm:237 lo:0 pe:0 ua:0 ap:0 ep:1 wo:b oos:0
198 26 Mehdi Abaakouk
</pre>
199 26 Mehdi Abaakouk
200 26 Mehdi Abaakouk
Pour résoudre le probléme taper:
201 26 Mehdi Abaakouk
<pre>drbdsetup /dev/drbd45 down</pre>
202 26 Mehdi Abaakouk
203 26 Mehdi Abaakouk
Si le message persiste, il faut vérifier que plus aucun processus n'utilise le drbd45 sur h6, par exemple vérifier devmapper:
204 26 Mehdi Abaakouk
<pre>dmsetup ls | grep drbd45</pre>
205 26 Mehdi Abaakouk
206 26 Mehdi Abaakouk
Référence dans la doc ganeti: http://docs.ganeti.org/ganeti/2.5/html/walkthrough.html#in-use-disks-at-instance-shutdown
207 26 Mehdi Abaakouk
208 10 Mehdi Abaakouk
h3. Comment tout savoir sur une vm ?
209 1 Mehdi Abaakouk
210 1 Mehdi Abaakouk
<pre>
211 1 Mehdi Abaakouk
gnt-instance info vm1
212 1 Mehdi Abaakouk
</pre>
213 1 Mehdi Abaakouk
214 10 Mehdi Abaakouk
h3. Déplacement le(s) disque(s) dur d'une VM
215 1 Mehdi Abaakouk
216 1 Mehdi Abaakouk
Si la machine a ces disques au format plain (sans drbd), taper:
217 1 Mehdi Abaakouk
218 1 Mehdi Abaakouk
<pre>
219 1 Mehdi Abaakouk
gnt-instance stop vm1
220 1 Mehdi Abaakouk
gnt-instance move -n h6 vm1
221 1 Mehdi Abaakouk
gnt-instance start vm1
222 1 Mehdi Abaakouk
</pre>
223 1 Mehdi Abaakouk
224 1 Mehdi Abaakouk
Si la machine utilise drbd (uniquement le disque de la node secondaire bascule):
225 1 Mehdi Abaakouk
226 1 Mehdi Abaakouk
<pre>
227 1 Mehdi Abaakouk
gnt-instance replace-disks -n h6 vm1
228 1 Mehdi Abaakouk
</pre>
229 10 Mehdi Abaakouk
230 1 Mehdi Abaakouk
Si vous voulais déplacer l'autre disque du drbd, il faut basculer la machine, puis refaire la même chose
231 1 Mehdi Abaakouk
232 10 Mehdi Abaakouk
h3. Basculer/migrer une machine qui utilise drbd
233 1 Mehdi Abaakouk
234 1 Mehdi Abaakouk
Bascule avec arret de la machine:
235 1 Mehdi Abaakouk
236 1 Mehdi Abaakouk
<pre>
237 1 Mehdi Abaakouk
gnt-instance failover vm1
238 1 Mehdi Abaakouk
</pre>
239 1 Mehdi Abaakouk
240 10 Mehdi Abaakouk
Sans arrêt, migration à chaud:
241 10 Mehdi Abaakouk
242 1 Mehdi Abaakouk
<pre>
243 1 Mehdi Abaakouk
gnt-instance migrate vm1
244 1 Mehdi Abaakouk
</pre>
245 10 Mehdi Abaakouk
246 1 Mehdi Abaakouk
En cas de soucis primaire/secondaire:
247 1 Mehdi Abaakouk
248 1 Mehdi Abaakouk
<pre>
249 1 Mehdi Abaakouk
gnt-instance migrate --cleanup vm1
250 1 Mehdi Abaakouk
</pre>
251 1 Mehdi Abaakouk
252 10 Mehdi Abaakouk
h3. Création d'une machine
253 1 Mehdi Abaakouk
254 10 Mehdi Abaakouk
Un script est présent sur h1 voici ca doc:
255 10 Mehdi Abaakouk
<pre>
256 10 Mehdi Abaakouk
# /root/gnt-addvm
257 10 Mehdi Abaakouk
usage: gnt-addvm [options] VIRTUAL_MACHINE_HOSTNAME
258 10 Mehdi Abaakouk
       -o OS | --os OS          OS can be default natty32 natty64 sid64 squeeze32 squeeze64 wheezy64
259 10 Mehdi Abaakouk
       -s SIZE | --size SIZE    default SIZE is 10G
260 10 Mehdi Abaakouk
       -m MEM | --mem MEM       default MEM is 256M
261 10 Mehdi Abaakouk
       -c CPU | --cpu CPU               default CPU is 1
262 10 Mehdi Abaakouk
       -n NODES | --nodes NODES         default NODES is
263 10 Mehdi Abaakouk
       -d MODE | --disk MODE      default MODE is drbd
264 10 Mehdi Abaakouk
       -q | --quick             don't wait drbd sync
265 10 Mehdi Abaakouk
       --dry-run                        show executed command
266 10 Mehdi Abaakouk
       --cdrom PATH             installation from iso file
267 10 Mehdi Abaakouk
</pre>
268 1 Mehdi Abaakouk
269 10 Mehdi Abaakouk
270 10 Mehdi Abaakouk
h3. Supprimer une machine
271 10 Mehdi Abaakouk
272 1 Mehdi Abaakouk
<pre>
273 10 Mehdi Abaakouk
gnt-instance remove vm1
274 1 Mehdi Abaakouk
</pre>
275 1 Mehdi Abaakouk
276 10 Mehdi Abaakouk
si la vm est en drbd et que une des nodes du drbd ne fonctionne plus
277 1 Mehdi Abaakouk
278 10 Mehdi Abaakouk
<pre>
279 1 Mehdi Abaakouk
gnt-instance remove --ignore-failures vm1
280 1 Mehdi Abaakouk
</pre>
281 10 Mehdi Abaakouk
282 14 Mehdi Abaakouk
283 10 Mehdi Abaakouk
h3. Changer les cractéristique d'une VM, upgrade disk, net, cpu, mem
284 10 Mehdi Abaakouk
285 1 Mehdi Abaakouk
Et hop une nouvelle carte réseau sur le vlan tsf
286 10 Mehdi Abaakouk
<pre>
287 1 Mehdi Abaakouk
gnt-instance  modify --net add:link=br1 vm1
288 1 Mehdi Abaakouk
</pre>
289 10 Mehdi Abaakouk
290 10 Mehdi Abaakouk
Un petit disk en plus
291 10 Mehdi Abaakouk
<pre>
292 10 Mehdi Abaakouk
gnt-instance  modify --disk add:size=50G vm1
293 1 Mehdi Abaakouk
</pre>
294 10 Mehdi Abaakouk
295 10 Mehdi Abaakouk
Un petite upgrade cpu et mémoire
296 10 Mehdi Abaakouk
<pre>
297 10 Mehdi Abaakouk
gnt-instance modify -B vcpus=2,memory=512M vm1
298 1 Mehdi Abaakouk
</pre>
299 10 Mehdi Abaakouk
300 1 Mehdi Abaakouk
Reboot pour prendre en compte le tout
301 10 Mehdi Abaakouk
<pre>
302 1 Mehdi Abaakouk
gnt-instance reboot -t full vm1
303 1 Mehdi Abaakouk
</pre>
304 10 Mehdi Abaakouk
305 10 Mehdi Abaakouk
== Je voudrais bien booter mon kernel ! ou un cdrom==
306 1 Mehdi Abaakouk
Je peux désactivé le kernel commun pour une vm
307 10 Mehdi Abaakouk
308 10 Mehdi Abaakouk
<pre>
309 10 Mehdi Abaakouk
gnt-instance modify -H kernel_path="" vm1
310 10 Mehdi Abaakouk
</pre>
311 1 Mehdi Abaakouk
Ou booter sur le cdrom pour le prochain démarrage commme ceci:
312 1 Mehdi Abaakouk
313 10 Mehdi Abaakouk
<pre>
314 1 Mehdi Abaakouk
gnt-instance start -H boot_order=cdrom,cdrom_image_path=/path/to/debian-504-amd64-netinst.iso vm1
315 1 Mehdi Abaakouk
</pre>
316 10 Mehdi Abaakouk
317 1 Mehdi Abaakouk
318 27 Laurent GUERBY
h3. Relocaliser les disques secondaires si un serveur est HS.
319 10 Mehdi Abaakouk
320 10 Mehdi Abaakouk
Ceci déplace le disque redondant (qui n'est plus présent si le serveur est HS) est le reconstruit sur un autre serveur
321 10 Mehdi Abaakouk
322 1 Mehdi Abaakouk
<pre>
323 10 Mehdi Abaakouk
gnt-instance replace-disks -I hail vm1
324 1 Mehdi Abaakouk
</pre>
325 1 Mehdi Abaakouk
326 1 Mehdi Abaakouk
327 11 Mehdi Abaakouk
h3. Importer une image disque venant de l’extérieur
328 11 Mehdi Abaakouk
329 11 Mehdi Abaakouk
Convertion de l'image au format raw (si c'est pas déjà le cas)
330 11 Mehdi Abaakouk
<pre>
331 11 Mehdi Abaakouk
kvm-img convert DISQUEVM.qcow -O raw DISQUEVM.raw
332 11 Mehdi Abaakouk
</pre>
333 11 Mehdi Abaakouk
334 11 Mehdi Abaakouk
Copie du disque au format raw sur un lvm
335 11 Mehdi Abaakouk
<pre>
336 11 Mehdi Abaakouk
size=$(kvm-img info DISQUEVM.raw | sed -n -e 's/^virtual size:[^(]*(\([[:digit:]]*\).*)/\1/gp')
337 11 Mehdi Abaakouk
lvcreate -L ${size}b -n lv_migration_DISQUEVM kvmvg
338 11 Mehdi Abaakouk
dd if=DISQUEVM.raw of=/dev/kvmvg/lv_migration_DISQUEVM
339 11 Mehdi Abaakouk
</pre>
340 11 Mehdi Abaakouk
341 11 Mehdi Abaakouk
Création de la VM
342 11 Mehdi Abaakouk
<pre>
343 11 Mehdi Abaakouk
gnt-instance add -B memory=512M --no-start -t plain -n $(hostname) --disk 0:adopt=lv_migration_DISQUEVM --net 0 -o debootstrap+default VMNAME.tetaneutral.net
344 11 Mehdi Abaakouk
</pre>
345 11 Mehdi Abaakouk
346 11 Mehdi Abaakouk
Et pour finir, on transforme le format de disque de la VM en drbd:
347 11 Mehdi Abaakouk
<pre>
348 11 Mehdi Abaakouk
gnt-instance modify -t drbd -n h6 VMNAME.tetaneutral.net
349 11 Mehdi Abaakouk
</pre>
350 11 Mehdi Abaakouk
351 17 Mehdi Abaakouk
h3. Copier une VM sur une autre machine
352 11 Mehdi Abaakouk
353 11 Mehdi Abaakouk
Seul la machine *h1* a l'espace configurer pour faire des dumps de machine virtuelle.
354 11 Mehdi Abaakouk
355 11 Mehdi Abaakouk
On lance un backup de celle-ci (attention cette commande *éteint* la machine):
356 11 Mehdi Abaakouk
<pre>
357 11 Mehdi Abaakouk
gnt-backup export -n h1 sileht2
358 11 Mehdi Abaakouk
</pre>
359 11 Mehdi Abaakouk
360 11 Mehdi Abaakouk
Les fichiers sont ensuite sur h1 dans /exports/sileht2.tetaneutral.net/
361 11 Mehdi Abaakouk
362 11 Mehdi Abaakouk
Le fichier qui nous intéresse est celui qui fini par *.snap* qui est le disque dur au format raw de la VM, dans mon cas:
363 11 Mehdi Abaakouk
<pre>
364 11 Mehdi Abaakouk
09d836a0-22e0-4ea4-9104-c301351bb2e2.disk0_data.snap
365 11 Mehdi Abaakouk
</pre>
366 11 Mehdi Abaakouk
367 11 Mehdi Abaakouk
Pour la démonstration je copie ce fichier sur h2:
368 11 Mehdi Abaakouk
<pre>
369 11 Mehdi Abaakouk
scp /exportfs/sileht2.tetaneutral.net/09d836a0-22e0-4ea4-9104-c301351bb2e2.disk0_data.snap h2:/root/sileht.raw
370 11 Mehdi Abaakouk
</pre>
371 11 Mehdi Abaakouk
372 11 Mehdi Abaakouk
Et je le test avec kvm:
373 11 Mehdi Abaakouk
<pre>
374 11 Mehdi Abaakouk
kvm -m 256 -drive file=sileht.raw,format=raw,if=virtio,boot=on,cache=writeback -usbdevice tablet -netdev type=tap,id=netdev0,fd=10 -device virtio-net-pci,mac=aa:00:00:62:e3:a0,netdev=netdev0
375 11 Mehdi Abaakouk
</pre>
376 1 Mehdi Abaakouk
377 15 Mehdi Abaakouk
A savoir l'image utilise les pilotes kvm "virtio", si on souhaite utiliser la VM avec un autre logiciel de virtualisation,
378 15 Mehdi Abaakouk
il faudra modifié le fstab pour mettre /dev/sda1 au lieu de /dev/vda1 et supprimer le fichier /etc/udev/rules.d/70-persistent-net.rules
379 11 Mehdi Abaakouk
380 14 Mehdi Abaakouk
h3. Monter une partition de machine virtuelle sur la machine hôte (!Attention DANGER!)
381 11 Mehdi Abaakouk
382 11 Mehdi Abaakouk
Arret de la machine et activation des disques
383 11 Mehdi Abaakouk
<pre>
384 11 Mehdi Abaakouk
 $ gnt-instance stop VMNAME.tetaneutral.net
385 11 Mehdi Abaakouk
 $ gnt-instance activate-disks VMNAME.tetaneutral.net
386 11 Mehdi Abaakouk
 h1.tetaneutral.net:disk/0:/dev/drbd34
387 11 Mehdi Abaakouk
</pre>
388 11 Mehdi Abaakouk
389 11 Mehdi Abaakouk
Ensuite pour voir les partitions du disque, ici le /dev/drbd34:
390 11 Mehdi Abaakouk
<pre>
391 11 Mehdi Abaakouk
kpartx -l /dev/drbd34
392 11 Mehdi Abaakouk
</pre>
393 11 Mehdi Abaakouk
394 11 Mehdi Abaakouk
On créé ensuite les partitions dans /dev avec devmapper
395 11 Mehdi Abaakouk
<pre>
396 11 Mehdi Abaakouk
kpartx -a /dev/drbd34
397 11 Mehdi Abaakouk
ls -la /dev/mapper/drbd34*
398 11 Mehdi Abaakouk
</pre>
399 11 Mehdi Abaakouk
400 11 Mehdi Abaakouk
A partir de maintenant on peut faire mumuse avec la partition, exemple:
401 11 Mehdi Abaakouk
<pre>
402 11 Mehdi Abaakouk
mount /dev/mapper/drbd34p1 /mnt/
403 11 Mehdi Abaakouk
....
404 11 Mehdi Abaakouk
umount /mnt
405 11 Mehdi Abaakouk
</pre>
406 11 Mehdi Abaakouk
407 11 Mehdi Abaakouk
Puis *très important*, il faut nettoyer devmapper et déactiver les disk pour ganeti
408 11 Mehdi Abaakouk
409 11 Mehdi Abaakouk
<pre>
410 11 Mehdi Abaakouk
kpartx -d /dev/drbd34
411 11 Mehdi Abaakouk
gnt-instance deactivate-disks VMNAME.tetaneutral.net
412 11 Mehdi Abaakouk
gnt-instance start VMNAME.tetaneutral.net
413 11 Mehdi Abaakouk
</pre>
414 11 Mehdi Abaakouk
415 1 Mehdi Abaakouk
h2. Administration des serveurs/nodes
416 10 Mehdi Abaakouk
417 10 Mehdi Abaakouk
h3. Éteindre/rebooter provisoirement un des serveurs sans coupure de service
418 10 Mehdi Abaakouk
419 10 Mehdi Abaakouk
La procédure est la suivante:
420 10 Mehdi Abaakouk
 - migration des machines virtuelles sur leurs secondaires
421 10 Mehdi Abaakouk
 - Arret/Ralummage ou reboot du serveur
422 10 Mehdi Abaakouk
 - remigration des machines virtuelles sur le serveur hX
423 1 Mehdi Abaakouk
424 10 Mehdi Abaakouk
<pre>
425 10 Mehdi Abaakouk
gnt-node migrate hX
426 10 Mehdi Abaakouk
shutdown -h now # ou reboot
427 1 Mehdi Abaakouk
hbal -L --no-disk-moves -X
428 1 Mehdi Abaakouk
</pre>
429 10 Mehdi Abaakouk
430 10 Mehdi Abaakouk
La resynchro drbd est automatique.
431 10 Mehdi Abaakouk
432 10 Mehdi Abaakouk
h3. L'extinction d'une node proprement dans le but de la désactivé du cluster
433 1 Mehdi Abaakouk
434 10 Mehdi Abaakouk
<pre>
435 10 Mehdi Abaakouk
gnt-node migrate hX # gnt-node failover hX
436 10 Mehdi Abaakouk
gnt-node evacuate -I hail hX
437 1 Mehdi Abaakouk
gnt-node modify -O yes hX
438 1 Mehdi Abaakouk
</pre>
439 10 Mehdi Abaakouk
440 1 Mehdi Abaakouk
Ici toutes les VMs seront migrés et les données auront été déplacé vers les autres nodes.
441 10 Mehdi Abaakouk
442 1 Mehdi Abaakouk
h3. Vérifier l'état du cluster
443 10 Mehdi Abaakouk
444 10 Mehdi Abaakouk
Sur le masternode normalement h1 faire:
445 1 Mehdi Abaakouk
446 10 Mehdi Abaakouk
<pre>
447 1 Mehdi Abaakouk
gnt-cluster verify
448 1 Mehdi Abaakouk
</pre>
449 10 Mehdi Abaakouk
450 1 Mehdi Abaakouk
h3. Change le node principal (masternode) de "ganeti", celui qui permet de lancer des commandes ganeti.
451 10 Mehdi Abaakouk
452 1 Mehdi Abaakouk
Allez sur un node, taper ceci et il deviendra "maternode":
453 1 Mehdi Abaakouk
454 1 Mehdi Abaakouk
<pre>
455 1 Mehdi Abaakouk
gnt-node masterfailover
456 1 Mehdi Abaakouk
</pre>
457 10 Mehdi Abaakouk
458 1 Mehdi Abaakouk
h3. Gestion des fichiers de configuration (ie: /etc/ganeti, /etc/hosts, /etc/rc.local, ...)
459 10 Mehdi Abaakouk
460 1 Mehdi Abaakouk
Tous les fichiers de configuration à synchroniser entre toutes les nodes du cluster sont contenues dans ce script:
461 1 Mehdi Abaakouk
462 1 Mehdi Abaakouk
<pre>
463 1 Mehdi Abaakouk
/etc/ganeti/pushconf.sh
464 1 Mehdi Abaakouk
</pre>
465 10 Mehdi Abaakouk
466 1 Mehdi Abaakouk
Le lancer recopie ces fichiers du masternode vers les autres nodes.
467 10 Mehdi Abaakouk
468 10 Mehdi Abaakouk
h3. Désactiver un serveur qui serait HS du cluster provisoirement.
469 10 Mehdi Abaakouk
470 10 Mehdi Abaakouk
On bascule les machines qui n'ont pas le failover en automatique
471 10 Mehdi Abaakouk
472 10 Mehdi Abaakouk
<pre>
473 10 Mehdi Abaakouk
gnt-node failover [ --ignore-consistency ] h2
474 10 Mehdi Abaakouk
</pre>
475 10 Mehdi Abaakouk
476 10 Mehdi Abaakouk
le --ignore-consistency permet de forcer ganeti à ne pas contrôler le disk avant le basculement
477 10 Mehdi Abaakouk
478 10 Mehdi Abaakouk
On peux (optionnellement) déplacer les disques durs secondaires des VMs
479 10 Mehdi Abaakouk
480 10 Mehdi Abaakouk
gnt-node evacuate [--early-release]  -I hail hX
481 10 Mehdi Abaakouk
482 10 Mehdi Abaakouk
le --early-release permet de forcer ganeti à ne pas contrôler le disk avant le basculement (utile si le disk de h2 est HS)
483 10 Mehdi Abaakouk
484 10 Mehdi Abaakouk
Puis on désactive la node:
485 10 Mehdi Abaakouk
486 10 Mehdi Abaakouk
<pre>
487 10 Mehdi Abaakouk
gnt-node modify -O yes h2
488 10 Mehdi Abaakouk
</pre>
489 10 Mehdi Abaakouk
490 1 Mehdi Abaakouk
491 11 Mehdi Abaakouk
h3. Réinsertion dans le cluster d'un node désactivé
492 10 Mehdi Abaakouk
493 10 Mehdi Abaakouk
- On réactive la node
494 10 Mehdi Abaakouk
- On remet dessus des machines et des disques en répartissant la charge du cluster
495 10 Mehdi Abaakouk
496 10 Mehdi Abaakouk
<pre>
497 10 Mehdi Abaakouk
gnt-node modify -O no h2
498 10 Mehdi Abaakouk
hbal -L -X
499 10 Mehdi Abaakouk
</pre>
500 10 Mehdi Abaakouk
501 10 Mehdi Abaakouk
502 10 Mehdi Abaakouk
h2. Setup d'un nouveau NODE
503 10 Mehdi Abaakouk
504 10 Mehdi Abaakouk
h3. Installation
505 10 Mehdi Abaakouk
506 1 Mehdi Abaakouk
* Installer squeeze basique avec juste ssh
507 1 Mehdi Abaakouk
* Ajouter wheezy dans /etc/apt/sources.list
508 1 Mehdi Abaakouk
509 1 Mehdi Abaakouk
<pre>
510 1 Mehdi Abaakouk
# deb http://ftp.fr.debian.org/debian/ squeeze main
511 1 Mehdi Abaakouk
deb http://ftp.fr.debian.org/debian/ squeeze main contrib non-free
512 1 Mehdi Abaakouk
deb-src http://ftp.fr.debian.org/debian/ squeeze main contrib non-free
513 1 Mehdi Abaakouk
deb http://ftp.fr.debian.org/debian/ sid main contrib non-free
514 1 Mehdi Abaakouk
deb-src http://ftp.fr.debian.org/debian/ sid main contrib non-free
515 1 Mehdi Abaakouk
deb http://ftp.de.debian.org/debian-backports/ squeeze-backports main contrib non-free
516 1 Mehdi Abaakouk
deb-src http://ftp.de.debian.org/debian-backports/ squeeze-backports main contrib non-free
517 3 Mehdi Abaakouk
deb http://security.debian.org/ squeeze/updates main
518 3 Mehdi Abaakouk
deb-src http://security.debian.org/ squeeze/updates main
519 4 Mehdi Abaakouk
# squeeze-updates, previously known as 'volatile'
520 3 Mehdi Abaakouk
deb http://ftp.fr.debian.org/debian/ squeeze-updates main
521 1 Mehdi Abaakouk
deb-src http://ftp.fr.debian.org/debian/ squeeze-updates main
522 8 Mehdi Abaakouk
</pre>
523 8 Mehdi Abaakouk
524 8 Mehdi Abaakouk
* Allouer un port avec 3131, 3175, 3195 tagged sur le procurve
525 8 Mehdi Abaakouk
* Monter le reseau manuellement IP X
526 7 Mehdi Abaakouk
527 8 Mehdi Abaakouk
<pre>
528 7 Mehdi Abaakouk
ip link add link eth0 name eth0.3131 type vlan id 3131
529 8 Mehdi Abaakouk
ip link set eth0.3131 up
530 7 Mehdi Abaakouk
ip addr add 91.224.149.15X/25 dev eth0.3131
531 8 Mehdi Abaakouk
</pre>
532 8 Mehdi Abaakouk
533 8 Mehdi Abaakouk
* Creer /etc/rc.local.conf avec X et Y
534 7 Mehdi Abaakouk
535 5 Mehdi Abaakouk
<pre>
536 5 Mehdi Abaakouk
IP_3131="91.224.149.15X/25"
537 6 Mehdi Abaakouk
GW_3131="91.224.149.254"
538 5 Mehdi Abaakouk
IP_3175="192.168.3.Y/24"
539 1 Mehdi Abaakouk
KVM_DISKS="sdb"
540 5 Mehdi Abaakouk
</pre>
541 1 Mehdi Abaakouk
542 1 Mehdi Abaakouk
* Installer les packages
543 1 Mehdi Abaakouk
544 1 Mehdi Abaakouk
<pre>
545 1 Mehdi Abaakouk
#TODO liste en fichier commit qqpart
546 1 Mehdi Abaakouk
#TODO: passer a une version compilée en local de ganeti pour eviter les update de version wheezy
547 1 Mehdi Abaakouk
dpkg --get-selections | ssh root@h48 dpkg --set-selections
548 1 Mehdi Abaakouk
ssh root@h48 apt-get dselect-upgrade
549 5 Mehdi Abaakouk
</pre>
550 5 Mehdi Abaakouk
551 6 Mehdi Abaakouk
552 6 Mehdi Abaakouk
553 5 Mehdi Abaakouk
* munin:
554 5 Mehdi Abaakouk
dans /etc/munin/munin-node.conf ajouter: allow ^91\.224\.149\.194$
555 5 Mehdi Abaakouk
* TODO patch munin Loic
556 1 Mehdi Abaakouk
http://trac.fsffrance.org/wiki/PatchInventory#Munin
557 5 Mehdi Abaakouk
* reboot
558 1 Mehdi Abaakouk
* Installer le node dans le cluster ganeti apres s'etre assure que la version de ganeti est bien la meme
559 5 Mehdi Abaakouk
560 1 Mehdi Abaakouk
<pre>
561 1 Mehdi Abaakouk
dpkg -l|grep -i ganeti
562 5 Mehdi Abaakouk
gnt-node add h48
563 5 Mehdi Abaakouk
/etc/ganeti/pushconf.sh
564 5 Mehdi Abaakouk
</pre>
565 5 Mehdi Abaakouk
566 5 Mehdi Abaakouk
Appliquer ce patch à ganeti-instance-debootstrap:
567 5 Mehdi Abaakouk
568 5 Mehdi Abaakouk
<pre>
569 5 Mehdi Abaakouk
--- /usr/share/ganeti/os/debootstrap/common.sh.ori  2010-09-15 22:34:12.000000000 +0200
570 5 Mehdi Abaakouk
+++ /usr/share/ganeti/os/debootstrap/common.sh  2011-07-27 12:33:55.695617766 +0200
571 5 Mehdi Abaakouk
@@ -91,7 +91,7 @@
572 5 Mehdi Abaakouk
# some versions of sfdisk need manual specification of
573 1 Mehdi Abaakouk
# head/sectors for devices such as drbd which don't
574 5 Mehdi Abaakouk
# report geometry
575 5 Mehdi Abaakouk
-  sfdisk -H 255 -S 63 --quiet --Linux "$1" <<EOF
576 5 Mehdi Abaakouk
+  sfdisk -H 255 -S 63 -D --quiet --Linux "$1" <<EOF
577 6 Mehdi Abaakouk
0,,L,*
578 5 Mehdi Abaakouk
EOF
579 3 Mehdi Abaakouk
}
580 1 Mehdi Abaakouk
</pre>
581 1 Mehdi Abaakouk
582 11 Mehdi Abaakouk
Ci dessous ajouter dkms et r8168 si nécessaire.
583 3 Mehdi Abaakouk
584 15 Mehdi Abaakouk
h3. Pilotes additionnel
585 1 Mehdi Abaakouk
586 1 Mehdi Abaakouk
Sur h1,h2,h4,h5 et h6, le pilote (r8169.ko) de la carte réseau (r8168/8111) provoque des kernels panic, il a été remplacé la version du constructeur (r8168.ko).
587 1 Mehdi Abaakouk
Pilote dispo ici: (http://www.realtek.com/downloads/downloadsView.aspx?Langid=1&PNid=13&PFid=5&Level=5&Conn=4&DownTypeID=3&GetDown=false)
588 1 Mehdi Abaakouk
589 1 Mehdi Abaakouk
<pre>
590 1 Mehdi Abaakouk
apt-get install gcc dkms
591 1 Mehdi Abaakouk
cd /usr/src
592 1 Mehdi Abaakouk
wget http://url_to_pilot/r8168-8.024.00.tar.bz2
593 1 Mehdi Abaakouk
tar -xjf r8168-8.024.00.tar.bz2
594 1 Mehdi Abaakouk
cd r8168-8.024.00
595 1 Mehdi Abaakouk
cat > dkms.conf << EOF
596 1 Mehdi Abaakouk
PACKAGE_NAME=r8168
597 1 Mehdi Abaakouk
PACKAGE_VERSION=8.024.00
598 1 Mehdi Abaakouk
MAKE[0]="make"
599 1 Mehdi Abaakouk
BUILT_MODULE_NAME[0]=r8168
600 1 Mehdi Abaakouk
BUILT_MODULE_LOCATION[0]="src/"
601 1 Mehdi Abaakouk
DEST_MODULE_LOCATION[0]="/kernel/updates/dkms"
602 1 Mehdi Abaakouk
AUTOINSTALL="YES"
603 1 Mehdi Abaakouk
EOF
604 1 Mehdi Abaakouk
dkms add -m r8168 -v 8.024.00
605 1 Mehdi Abaakouk
dkms build -m r8168 -v 8.024.00
606 1 Mehdi Abaakouk
dkms install -m r8168 -v 8.024.00
607 1 Mehdi Abaakouk
echo "r8168" >> /etc/modules
608 1 Mehdi Abaakouk
echo "blacklist r8169" >> /etc/modprobe.d/blacklist-network.conf
609 1 Mehdi Abaakouk
update-initramfs -u
610 1 Mehdi Abaakouk
reboot
611 1 Mehdi Abaakouk
</pre>
612 1 Mehdi Abaakouk
613 1 Mehdi Abaakouk
Pour les machines a base de e1000e:
614 1 Mehdi Abaakouk
615 1 Mehdi Abaakouk
<pre>
616 1 Mehdi Abaakouk
apt-get install gcc dkms
617 1 Mehdi Abaakouk
cd /usr/src
618 1 Mehdi Abaakouk
wget http://downloadmirror.intel.com/15817/eng/e1000e-1.3.17.tar.gz
619 1 Mehdi Abaakouk
tar -xzf e1000e-1.3.17.tar.gz
620 1 Mehdi Abaakouk
cd e1000e-1.3.17
621 1 Mehdi Abaakouk
cat > dkms.conf << EOF
622 1 Mehdi Abaakouk
PACKAGE_NAME=e1000e
623 1 Mehdi Abaakouk
PACKAGE_VERSION=1.3.17
624 1 Mehdi Abaakouk
CLEAN="make -C src/ clean"
625 1 Mehdi Abaakouk
MAKE[0]="make -C src/"
626 1 Mehdi Abaakouk
BUILT_MODULE_NAME[0]=e1000e
627 1 Mehdi Abaakouk
BUILT_MODULE_LOCATION[0]="src/"
628 1 Mehdi Abaakouk
DEST_MODULE_LOCATION[0]="/kernel/updates/dkms"
629 1 Mehdi Abaakouk
AUTOINSTALL="YES"
630 1 Mehdi Abaakouk
EOF
631 1 Mehdi Abaakouk
dkms add -m e1000e -v 1.3.17
632 1 Mehdi Abaakouk
dkms build -m e1000e -v 1.3.17
633 1 Mehdi Abaakouk
dkms install -m e1000e -v 1.3.17
634 1 Mehdi Abaakouk
reboot
635 1 Mehdi Abaakouk
</pre>
636 1 Mehdi Abaakouk
637 1 Mehdi Abaakouk
638 1 Mehdi Abaakouk
h2. Annexe 
639 13 Mehdi Abaakouk
640 13 Mehdi Abaakouk
h3. Configuration réseau
641 13 Mehdi Abaakouk
642 13 Mehdi Abaakouk
le script /etc/rc.local, qui s'occupe de préparer la configuration réseaux pour ganeti (avec les vlan, bridge and co)
643 13 Mehdi Abaakouk
le script /etc/rc.local.conf, contient les adresses IP de la machine et les gw
644 1 Mehdi Abaakouk
645 11 Mehdi Abaakouk
h3. Protection VNC
646 11 Mehdi Abaakouk
647 11 Mehdi Abaakouk
Le VNC de kvm est utiliser sur chaque MV.
648 11 Mehdi Abaakouk
Des règles de firewall sont automatiquement mise en place par le script /etc/ganeti/vnc-firewall pour que seul la machine gntwebmgr.tetaneutral.net soit autoriser a s'y connecter
649 11 Mehdi Abaakouk
Ce script est appelé par les hooks ganeti.
650 11 Mehdi Abaakouk
651 11 Mehdi Abaakouk
h3. Mac spoofing configuration (Actuellement désactivé)
652 11 Mehdi Abaakouk
653 1 Mehdi Abaakouk
Le script ifup de ganeti pour kvm a été modifier (ie: /etc/ganeti/kvm-vif-bridge) pour écrire la relation entre la vm, le numero de ces interfaces réseaux et ces tap.
654 1 Mehdi Abaakouk
Le fichier prends la forme suivante:
655 1 Mehdi Abaakouk
munin.tetaneutral.net:0:tap3
656 1 Mehdi Abaakouk
trac.tetaneutral.net:0:tap5
657 1 Mehdi Abaakouk
munin.tetaneutral.net:1:tap5
658 1 Mehdi Abaakouk
Les règles ebtables sont écrites par le script /etc/ganeti/spoofing/spoofing-protection avec les informations de ce fichier.
659 1 Mehdi Abaakouk
Les scripts de hook de ganeti (ie:/etc/ganeti/hook/) utilise ce script, pour lancer ou arreter le spoofing.
660 1 Mehdi Abaakouk
661 11 Mehdi Abaakouk
h3. Patch maison pour ganeti
662 1 Mehdi Abaakouk
663 11 Mehdi Abaakouk
Ajout de l'option -D à sfdisk au script /usr/share/ganeti/os/debootstrap/common.sh ligne 84 pour créer des partitions avec assez d'espace pour grub
664 11 Mehdi Abaakouk
Celui-ci est décrit dans l'installation d'une node aussi.
665 1 Mehdi Abaakouk
666 11 Mehdi Abaakouk
h3. J'ai n'est pas trouvé mon bonheur, comment je vais faire ?!
667 1 Mehdi Abaakouk
668 11 Mehdi Abaakouk
Voici quelques ressources:
669 11 Mehdi Abaakouk
* http://docs.ganeti.org/ganeti/current/html/
670 11 Mehdi Abaakouk
* http://docs.ganeti.org/ganeti/2.1/man/
671 11 Mehdi Abaakouk
* http://wiki.osuosl.org/public/ganeti/
672 11 Mehdi Abaakouk
Ou bien je demande à sileht d'écrire le use case qui me manque s'il à le temps