Ceph-Sharing-Disk » Historique » Version 30
Mehdi Abaakouk, 11/11/2016 20:27
1 | 3 | Laurent GUERBY | {{>toc}} |
---|---|---|---|
2 | 3 | Laurent GUERBY | |
3 | 1 | Mehdi Abaakouk | h1. Ceph-Sharing-Disk |
4 | 1 | Mehdi Abaakouk | |
5 | 3 | Laurent GUERBY | h2. Objectif |
6 | 3 | Laurent GUERBY | |
7 | 4 | Laurent GUERBY | Un-e adherent-e tetaneutral.net souhaite heberger une machine efficace energetiquement et prenant peu de place comme un NUC/Brix ce qui arrange tetaneutral.net mais limite la partie stockage disque. L'idée est que l'adherent-e achete en plus des disques 3.5 classiques, nous les mettons dans le cluster Ceph/openstack et nous exportons un pool de stockage Ceph a la machine. |
8 | 4 | Laurent GUERBY | |
9 | 3 | Laurent GUERBY | h2. Cluster |
10 | 3 | Laurent GUERBY | |
11 | 1 | Mehdi Abaakouk | Sur le cluster ceph: |
12 | 1 | Mehdi Abaakouk | |
13 | 22 | Laurent GUERBY | http://chiliproject.tetaneutral.net/projects/git-tetaneutral-net/repository/openstack-tools/revisions/master/entry/ceph-create-ext-pool-v2.sh |
14 | 22 | Laurent GUERBY | |
15 | 22 | Laurent GUERBY | <pre> |
16 | 25 | Mehdi Abaakouk | # ./ceph-create-ext-pool-v2.sh <pool> <username> <size en giga> |
17 | 25 | Mehdi Abaakouk | ./ceph-create-ext-pool-v2.sh ec4p1 sileht 4096 # GB |
18 | 22 | Laurent GUERBY | </pre> |
19 | 22 | Laurent GUERBY | |
20 | 10 | Laurent GUERBY | |
21 | 1 | Mehdi Abaakouk | |
22 | 3 | Laurent GUERBY | h2. Client |
23 | 1 | Mehdi Abaakouk | |
24 | 7 | Mehdi Abaakouk | h3. Installation de ceph |
25 | 7 | Mehdi Abaakouk | |
26 | 29 | Mehdi Abaakouk | h4. Debian et Ubuntu |
27 | 7 | Mehdi Abaakouk | |
28 | 7 | Mehdi Abaakouk | <pre> |
29 | 7 | Mehdi Abaakouk | apt-get install lsb-release |
30 | 7 | Mehdi Abaakouk | wget -q -O- 'https://ceph.com/git/?p=ceph.git;a=blob_plain;f=keys/release.asc' | sudo apt-key add - |
31 | 28 | Mehdi Abaakouk | echo deb http://ceph.com/debian-jewel/ $(lsb_release -sc) main | sudo tee /etc/apt/sources.list.d/ceph.list |
32 | 7 | Mehdi Abaakouk | apt-get update |
33 | 12 | Laurent GUERBY | apt-get install ceph |
34 | 12 | Laurent GUERBY | </pre> |
35 | 12 | Laurent GUERBY | |
36 | 7 | Mehdi Abaakouk | h3. Configuration de ceph |
37 | 12 | Laurent GUERBY | |
38 | 6 | Laurent GUERBY | Sur le client rbd : |
39 | 1 | Mehdi Abaakouk | |
40 | 1 | Mehdi Abaakouk | La machine machine doit être configuré avec une ip sur le vlan 3199, si eth0 n'est pas dans un bridge : |
41 | 16 | Laurent GUERBY | |
42 | 16 | Laurent GUERBY | <pre> |
43 | 17 | Laurent GUERBY | ip link add link eth0 name eth0.3199 type vlan id 3199 |
44 | 1 | Mehdi Abaakouk | ip link set dev eth0.3199 txqueuelen 100 |
45 | 16 | Laurent GUERBY | ip link set eth0.3199 up |
46 | 16 | Laurent GUERBY | ip addr add 192.168.99.XXX/24 dev eth0.3199 # XXX donne par les admin ttnn |
47 | 1 | Mehdi Abaakouk | </pre> |
48 | 16 | Laurent GUERBY | |
49 | 1 | Mehdi Abaakouk | pour que la config du VLAN se lance automatiquement au boot, on peut rajouter dans /etc/network/interfaces |
50 | 16 | Laurent GUERBY | |
51 | 17 | Laurent GUERBY | <pre> |
52 | 16 | Laurent GUERBY | # Vlan pour ceph |
53 | 21 | bikepunk bikepunk | auto eth0.3199 |
54 | 21 | bikepunk bikepunk | iface eth0.3199 inet manual |
55 | 21 | bikepunk bikepunk | up ip link set dev eth0.3199 txqueuelen 100 |
56 | 1 | Mehdi Abaakouk | up ip link set eth0.3199 up |
57 | 1 | Mehdi Abaakouk | up ip addr add 192.168.99.222/24 dev eth0.3199 |
58 | 21 | bikepunk bikepunk | </pre> |
59 | 21 | bikepunk bikepunk | |
60 | 21 | bikepunk bikepunk | Installation de ceph : |
61 | 21 | bikepunk bikepunk | |
62 | 21 | bikepunk bikepunk | <pre> |
63 | 1 | Mehdi Abaakouk | apt-get install ceph |
64 | 21 | bikepunk bikepunk | </pre> |
65 | 21 | bikepunk bikepunk | |
66 | 21 | bikepunk bikepunk | Le membre récupére son keyring (ceph.client.sileht.keyring ici) et le copie dans /etc/ceph/ |
67 | 1 | Mehdi Abaakouk | |
68 | 16 | Laurent GUERBY | |
69 | 1 | Mehdi Abaakouk | <pre> |
70 | 1 | Mehdi Abaakouk | # cat /etc/ceph/ceph.client.sileht.keyring |
71 | 1 | Mehdi Abaakouk | [client.sileht] |
72 | 5 | Laurent GUERBY | key = xxxxxxxxxyyyy== |
73 | 1 | Mehdi Abaakouk | </pre> |
74 | 1 | Mehdi Abaakouk | |
75 | 19 | Laurent GUERBY | Il peut ensuite créer le fichier /etc/ceph/ceph.conf |
76 | 19 | Laurent GUERBY | |
77 | 19 | Laurent GUERBY | <pre> |
78 | 19 | Laurent GUERBY | [global] |
79 | 19 | Laurent GUERBY | fsid = 1fe74663-8dfa-486c-bb80-3bd94c90c967 |
80 | 19 | Laurent GUERBY | auth_supported = cephx |
81 | 19 | Laurent GUERBY | auth_cluster_required = cephx |
82 | 19 | Laurent GUERBY | auth_service_required = cephx |
83 | 19 | Laurent GUERBY | auth_client_required = cephx |
84 | 1 | Mehdi Abaakouk | mon_host = 192.168.99.251,192.168.99.252,192.168.99.253 |
85 | 1 | Mehdi Abaakouk | |
86 | 1 | Mehdi Abaakouk | [client.sileht] |
87 | 1 | Mehdi Abaakouk | keyring = /etc/ceph/ceph.client.sileht.keyring |
88 | 1 | Mehdi Abaakouk | </pre> |
89 | 1 | Mehdi Abaakouk | |
90 | 1 | Mehdi Abaakouk | On vérifie que cela marche : |
91 | 1 | Mehdi Abaakouk | |
92 | 1 | Mehdi Abaakouk | <pre> |
93 | 24 | Mehdi Abaakouk | $ rbd --id sileht -p disks info sileht-vol |
94 | 1 | Mehdi Abaakouk | $ echo $? |
95 | 1 | Mehdi Abaakouk | 0 |
96 | 1 | Mehdi Abaakouk | </pre> |
97 | 1 | Mehdi Abaakouk | |
98 | 24 | Mehdi Abaakouk | Si il n'y a pas d'erreur c'est bon, on configure le mapping automatique du volume rbd : |
99 | 1 | Mehdi Abaakouk | |
100 | 1 | Mehdi Abaakouk | <pre> |
101 | 24 | Mehdi Abaakouk | $ echo disks/sileht-vol id=sileht >> /etc/ceph/rbdmap |
102 | 1 | Mehdi Abaakouk | $ service rbdmap restart |
103 | 24 | Mehdi Abaakouk | RBD Mapping: 'disks/sileht-vol'...done. |
104 | 1 | Mehdi Abaakouk | </pre> |
105 | 1 | Mehdi Abaakouk | |
106 | 1 | Mehdi Abaakouk | |
107 | 1 | Mehdi Abaakouk | le disque est prêt, on peut soit le formater directement : |
108 | 1 | Mehdi Abaakouk | |
109 | 1 | Mehdi Abaakouk | <pre> |
110 | 24 | Mehdi Abaakouk | $ mkfs.ext4 /dev/rbd/disks/sileht-vol |
111 | 26 | Mehdi Abaakouk | $ echo /dev/rbd/disks/sileht-vol /backup ext4 defaults,discard,noatime,_netdev 0 2" >> /etc/fstab |
112 | 26 | Mehdi Abaakouk | $ mount /backup |
113 | 11 | Laurent GUERBY | </pre> |
114 | 11 | Laurent GUERBY | |
115 | 1 | Mehdi Abaakouk | soit le chiffrer: |
116 | 1 | Mehdi Abaakouk | |
117 | 20 | Laurent GUERBY | <pre> |
118 | 24 | Mehdi Abaakouk | $ sudo cryptsetup luksFormat /dev/rbd/disks/sileht-vol |
119 | 1 | Mehdi Abaakouk | |
120 | 1 | Mehdi Abaakouk | WARNING! |
121 | 1 | Mehdi Abaakouk | ======== |
122 | 24 | Mehdi Abaakouk | This will overwrite data on /dev/rbd/disks/sileht-vol irrevocably. |
123 | 1 | Mehdi Abaakouk | |
124 | 5 | Laurent GUERBY | Are you sure? (Type uppercase yes): YES |
125 | 1 | Mehdi Abaakouk | Enter passphrase: |
126 | 1 | Mehdi Abaakouk | Verify passphrase: |
127 | 1 | Mehdi Abaakouk | </pre> |
128 | 1 | Mehdi Abaakouk | |
129 | 1 | Mehdi Abaakouk | <pre> |
130 | 24 | Mehdi Abaakouk | $ cryptsetup luksOpen /dev/rbd/disks/sileht-vol backup1 |
131 | 1 | Mehdi Abaakouk | $ mkfs.ext4 /dev/mapper/backup1 |
132 | 5 | Laurent GUERBY | $ mount /dev/mapper/backup1 /backup |
133 | 1 | Mehdi Abaakouk | </pre> |
134 | 1 | Mehdi Abaakouk | |
135 | 1 | Mehdi Abaakouk | Attention : ne pas remplir le device de données aleatoires comme suggéré dans les tutoriaux luks cela ferait perdre le provisionning progressif de ceph (utilisation effective uniquement sur les blocks non zero) |
136 | 1 | Mehdi Abaakouk | |
137 | 1 | Mehdi Abaakouk | Ajout de la configuration persistante via un keyfile (attention : c'est une clé privée qui permet d'ouvrir le volume cryptfs sans passphrase) : |
138 | 1 | Mehdi Abaakouk | |
139 | 1 | Mehdi Abaakouk | <pre> |
140 | 1 | Mehdi Abaakouk | $ dd if=/dev/urandom of=/etc/luks.key bs=1024 count=4 |
141 | 1 | Mehdi Abaakouk | $ chmod 0400 /etc/luks.key |
142 | 24 | Mehdi Abaakouk | $ cryptsetup luksAddKey /dev/rbd/disks/sileht-vol /etc/luks.key |
143 | 1 | Mehdi Abaakouk | |
144 | 1 | Mehdi Abaakouk | $ sudo blkid | grep -e rbd0 -e backup1 |
145 | 1 | Mehdi Abaakouk | /dev/rbd0: UUID="1a268f70-6f6d-41f7-9216-43ba0bd0750b" TYPE="crypto_LUKS" |
146 | 1 | Mehdi Abaakouk | /dev/mapper/backup1: UUID="51db13d9-4ac4-4e47-bb7a-b111994cdefd" TYPE="ext4" |
147 | 1 | Mehdi Abaakouk | |
148 | 1 | Mehdi Abaakouk | |
149 | 26 | Mehdi Abaakouk | $ echo "backup1 UUID=1a268f70-6f6d-41f7-9216-43ba0bd0750b /etc/luks.key luks,discard" >> /etc/crypttab |
150 | 26 | Mehdi Abaakouk | $ echo "UUID=51db13d9-4ac4-4e47-bb7a-b111994cdefd /backup ext4 defaults,discard,noatime,_netdev 0 2" >> /etc/fstab |
151 | 1 | Mehdi Abaakouk | </pre> |
152 | 1 | Mehdi Abaakouk | |
153 | 1 | Mehdi Abaakouk | Effacement d'une image : |
154 | 1 | Mehdi Abaakouk | |
155 | 1 | Mehdi Abaakouk | <pre> |
156 | 24 | Mehdi Abaakouk | # Editer /etc/ceph/rbdmap et enlever la ligne "sileht-vol" |
157 | 2 | Laurent GUERBY | # service rbdmap restart |
158 | 2 | Laurent GUERBY | </pre> |
159 | 24 | Mehdi Abaakouk | |
160 | 24 | Mehdi Abaakouk | h2. Vieille methode |
161 | 24 | Mehdi Abaakouk | |
162 | 24 | Mehdi Abaakouk | Création de l'utilisateur et du pool ceph pour cet utilisateur |
163 | 24 | Mehdi Abaakouk | |
164 | 24 | Mehdi Abaakouk | http://chiliproject.tetaneutral.net/projects/git-tetaneutral-net/repository/openstack-tools/revisions/master/entry/ceph-create-ext-pool.sh |
165 | 24 | Mehdi Abaakouk | |
166 | 24 | Mehdi Abaakouk | <pre> |
167 | 24 | Mehdi Abaakouk | # # ./ceph-create-ext-pool.sh <username> <size en giga> |
168 | 24 | Mehdi Abaakouk | # ./ceph-create-ext-pool.sh sileht 100 |
169 | 24 | Mehdi Abaakouk | creating ceph.client.sileht.keyring |
170 | 24 | Mehdi Abaakouk | imported keyring |
171 | 24 | Mehdi Abaakouk | pool 'sileht-pool' created |
172 | 24 | Mehdi Abaakouk | set pool 70 size to 2 |
173 | 24 | Mehdi Abaakouk | set pool 70 min_size to 2 |
174 | 24 | Mehdi Abaakouk | set-quota max_bytes = 107374182400 for pool sileht-pool |
175 | 24 | Mehdi Abaakouk | # cat ceph.client.sileht.keyring |
176 | 24 | Mehdi Abaakouk | ... |
177 | 24 | Mehdi Abaakouk | # ceph auth get client.sileht |
178 | 24 | Mehdi Abaakouk | ... (identical to file) |
179 | 24 | Mehdi Abaakouk | </pre> |
180 | 24 | Mehdi Abaakouk | |
181 | 24 | Mehdi Abaakouk | Le fichier important pour le client est ./ceph.client.sileht.keyring |