java.io.IOException: Could not locate executable null\bin\winutils.exe in the Hadoop binaries.
官网解决方案
https://cwiki.apache.org/confluence/display/HADOOP2/WindowsProblems
Problems running Hadoop on Windows
Hadoop requires native libraries on Windows to work properly -that includes to access the file://
filesystem, where Hadoop uses some Windows APIs to implement posix-like file access permissions.
This is implemented in HADOOP.DLL
and WINUTILS.EXE
.
In particular, %HADOOP_HOME%\BIN\WINUTILS.EXE
must be locatable.
If it is not, Hadoop or an application built on top of Hadoop will fail.
How to fix a missing WINUTILS.EXE
You can fix this problem in two ways
- Install a full native windows Hadoop version. The ASF does not currently (September 2015) release such a version; releases are available externally.
- Or: get the
WINUTILS.EXE
binary from a Hadoop redistribution. There is a repository of this for some Hadoop versions on github.
Then
- Set the environment variable
%HADOOP_HOME%
to point to the directory above theBIN
dir containingWINUTILS.EXE
. - Or: run the Java process with the system property
hadoop.home.dir
set to the home directory.
我选择的第一种配置,直接下载hadoop的完整包,然后解压,解压后再将下载好的WINUTILS.EXE(这里下载github)放到hadoop的bin目录里面,最后配置一个HADOOP_HOME(hadoop的bin文件夹所在的文件夹目录)就可以了
配置好后重启idea或者电脑生效