From b4f092ad45775bfd9a97091c3e79ef2e0d7a2f58 Mon Sep 17 00:00:00 2001 From: Decoupes Remy <remy.decoupes@irstea.fr> Date: Mon, 9 Dec 2019 11:36:59 +0100 Subject: [PATCH] fixing errors on anchor --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 3c3a614..3a3c43b 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,11 @@ This project aims to deploy a datalake and its ecosystem using **[Ansible](http Acutally, this project does : 1. Deploy a mono-node HDFS on : - * [Your own computer using a virtual machine with Vagrant & ansible provision](#vagrant-monode) - * [a server using ansible](#ansible-mononode) + * [Your own computer using a virtual machine with Vagrant & ansible provision](#deploy-mono-node-hdfs-on-a-VM) + * [a server using ansible](#deploy-mono-node-hdfs-on-a-server) 2. Deploy a cluster HDFS on : - * [Your own computer using as many virtual machine you want using Vagrant & ansible](#vagrant-cluster) - * [multiple servers using ansible](#vagrant-ansible) + * [Your own computer using as many virtual machine you want using Vagrant & ansible](#deploy-cluster-hdfs-with-multiple-vms) + * [multiple servers using ansible](#deploy-cluster-hdfs-on-servers) **Prod Environment** : Deploy a mononode HDFS on a server using ansible **Sandbox Environment**: Deploy a mononode HDFS on a VM from Vagrant & Ansible @@ -65,13 +65,13 @@ Vagrant and ansible can be combined to create/deploy/maintain your VM as we do i You only need virtual box and vagrant installed on your computer. This project is going to create VM that you need for your datalake # Deploy a mono-node HDFS -## [Deploy mono-node HDFS on a VM :](#vagrant-monode) +## Deploy mono node HDFS on a VM 1. In cli : Go to the directory which contains the [VagrantFile ](vagrant/mononode/Vagrantfile) 2. In cli : start your VM: ```shell vagrant up ``` -## [Deploy mono-node HDFS on a server :](#ansible-mononode) +## Deploy mono-node HDFS on a server First configure your IP adress in the [inventory file](inventory/static) Then run the script [ansible-launch.sh](ansible-launch.sh) : @@ -79,12 +79,12 @@ Then run the script [ansible-launch.sh](ansible-launch.sh) : /bin/bash ansible-launch.sh ``` # Deploy a HDFS cluster -## [Deploy cluster HDFS with multiple VMs:](#vagrant-cluster) +## Deploy cluster HDFS with multiple VMs 1. Set your nodes' IP address in [VagrantFile](vagrant/cluster/Vagrantfile) 2. Declare those IP for ansible provision in [vars](playbook/roles/hosts-file/vars/main.yml) 3. in cli : start your multiple VM from this [directory : vagrant/cluster](vagrant/cluster) : ```shell vagrant up ``` -## [Deploy cluster HDFS on servers:](#vagrant-ansible) +## Deploy cluster HDFS on servers work in progress \ No newline at end of file -- GitLab