Download ubuntu_vagrant folder above and vagrant up
ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
cd /usr/local/hadoop/bin
hadoop namenode -format
- Start daemons:
cd /usr/local/hadoop/sbin
./start-all.sh
- Launch hive and test if it works by creating a table:
create table example( i int, v varchar(10) );
