I successfully installed Hadoop 2.8.1 on Windows 10. Now I'm trying to install Hive version 2.1. When I try to start hive I receive the following error:
"Missing hadoop installation: C:\hadoop-2.8.1\bin must be set"**
I have HADOOP_HOME
set to D:\Hadoop-2.8.1\bin
in the environment variables and added to the path system variable. Do I have to specify this path in a hive file?
hive-env.bat
– OneCricketeerHADOOP_HOME
toD:\Hadoop-2.8.1
-- and optionally updatingPATH
withD:\Hadoop-2.8.1\bin
at the end? (Windows has no equivalent toLD_LIBRARY_PATH
, the dynamic libs are searched in the genericPATH
) – Samson Scharfrichtersh
file. It would be a.bat
, but I've not ran Hive on Windows before, so I could be wrong – OneCricketeer