Machine moosefs-client01 et moosefs-client01
- CPU : 2
- RAM : 2Go
- Disque : 8Go (Disque système)
- IP adresse : 172.16.186.29 et 172.16.186.30
1°) Ajouter les deux machines clientes à vos DNS
moosefs-client01 IN A 172.16.186.29 moosefs-client02 IN A 172.16.186.30
le reverse
29 IN PTR moosefs-client01.house.cpb. 30 IN PTR moosefs-client02.house.cpb.
2°) Mise à jour de la machine (toutes les clients)
[root@moosefs-client01 ~]# yum -y update
3°) Désactiver SELinux (sur les 2 machines clientes)
[root@moosefs-master ~]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config [root@moosefs-master ~]# reboot
4°) Supprimer l’IPv6 (sur les 2 machines clientes)
[root@moosefs-master ~]# vi /etc/sysctl.conf net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.all.autoconf = 0 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.default.autoconf = 0 [root@rsnapshot ~]# sysctl -p
5°) Ajout des repository moosefs (sur les 2 machines clientes)
[root@moosefs-chunker01 ~]# curl "https://ppa.moosefs.com/RPM-GPG-KEY-MooseFS" > /etc/pki/rpm-gpg/RPM-GPG-KEY-MooseFS [root@ moosefs-chunker01 ~]# curl "http://ppa.moosefs.com/MooseFS-3-el7.repo" > /etc/yum.repos.d/MooseFS.repo
6°) Installation du client moosfs(sur les 2 machines clientes)
[root@moosefs-client01 ~]# yum -y install fuse fuse-devel moosefs-client
7°) Création du point de montage /mnt/mfs
Client01
[root@moosefs-client01 ~]# mkdir -p /mnt/mfs [root@moosefs-client01 ~]# mfsmount /mnt/mfs -H moosefs-master
Client02
[root@moosefs-client02 ~]# mkdir -p /mnt/mfs [root@moosefs-client02 ~]# mfsmount /mnt/mfs -H moosefs-master
8°) Check de l’agrégation disque
[root@moosefs-client01 ~]# df -h
Côté master
« Nos clients et les disque mount /mnt/mfs »
« Total de l’agrégation disque »
9°) Check fichiers distribués
Nous allons récupérer un fichier sur /mnt/mfs via le client01 et inspecter ce fichier sur le client02.
Sur Client01
[root@moosefs-client01 ~]# cd /mnt/mfs [root@moosefs-client01 mfs]# yum -y install wget [root@moosefs-client01 mfs]# wget https://i.pinimg.com/originals/92/76/08/927608ee9d64bf6002e523792bcd8dc6.jpg [root@moosefs-client01 mfs]# ls -al
Sur Client02
[root@moosefs-client02 ~]# ls -al /mnt/mfs
Views: 26