Skip to content

Commit

Permalink
Install hadoop
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienPeloton committed Nov 22, 2024
1 parent 046f200 commit cd73c33
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
7 changes: 7 additions & 0 deletions install/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Hadoop installation

Execute the script to install it under `/opt`:

```bash
./install_hadoop.sh
```
8 changes: 8 additions & 0 deletions install/install_hadoop.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

HADOOP_VERSION=3.3.6

cd /opt
wget https://dlcdn.apache.org/hadoop/common/hadoop-$HADOOP_VERSION/hadoop-$HADOOP_VERSION.tar.gz
tar -xf hadoop-$HADOOP_VERSION.tar.gz
rm hadoop-$HADOOP_VERSION.tar.gz

0 comments on commit cd73c33

Please sign in to comment.