I'd like to install Hadoop on an EC2 instance running Ubuntu 16.04 (for learning purposes). I'm trying to follow the instructions on https://hadoop.apache.org/docs/r1.2.1/single_node_setup.html. I'm at the step
In the distribution, edit the file
conf/hadoop-env.sh
to define at leastJAVA_HOME
to be the root of your Java installation.
I've downloaded the 3.0.0-beta1 version as a binary (using wget http://www.apache.org/dyn/closer.cgi/hadoop/common/hadoop-3.0.0-beta1/hadoop-3.0.0-beta1.tar.gz
followed by a tar xzf
of that file). However, I don't see any conf
directory in the directory thus extracted:
ubuntu@ip-172-31-83-170:~/hadoop-3.0.0-beta1$ ls
bin include libexec NOTICE.txt sbin
etc lib LICENSE.txt README.txt share
Did I do something wrong?