在Windows7EnterpriseN上安装hadoop时出现问题

whhtz7ly  于 2021-05-30  发布在  Hadoop
关注(0)|答案(1)|浏览(371)

目前我正在尝试在Windows7企业计算机上安装Hadoop2.6.0。我用了下面的指南http://www.srccodes.com/p/article/38/build-install-configure-run-apache-hadoop-2.2.0-microsoft-windows-os
我已经通过安装协议缓冲区的正确版本修复了以前的一些问题。但现在遇到了一个新问题。

> [ERROR] Failed to execute goal
> org.codehaus.mojo:exec-maven-plugin:1.2:exec (compile-ms-winutils) on
> project hadoop-common: Command execution failed. Process exited with
> an error: 1(Exit value: 1) -> [Help 1]

我搜索了internet,发现可能是我的msbuild导致了此问题,但我检查了我的路径,它包含指向正确位置的msbuild路径。我正在使用.net framework 4.0
我试着运行“mvn clean install”,从测试中我得到了以下错误。

> ------------------------------------------------------------------------------- Test set:
> org.apache.hadoop.security.authentication.client.TestKerberosAuthenticator
> ------------------------------------------------------------------------------- Tests run: 14, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 33.35
> sec <<< FAILURE! - in
> org.apache.hadoop.security.authentication.client.TestKerberosAuthenticator
> testAuthenticationHttpClientPost[0](org.apache.hadoop.security.authentication.client.TestKerberosAuthenticator)
> Time elapsed: 2.201 sec  <<< ERROR!
> org.apache.http.client.ClientProtocolException: null
>                 at org.apache.http.impl.client.DefaultRequestDirector.tryExecute(DefaultRequestDirector.java:693)
>                 at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:520)
>                 at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:906)
>                 at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:805)
>                 at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:784)
>                 at org.apache.hadoop.security.authentication.client.AuthenticatorTestCase.doHttpClientRequest(AuthenticatorTestCase.java:265)
>                 at org.apache.hadoop.security.authentication.client.AuthenticatorTestCase._testAuthenticationHttpClient(AuthenticatorTestCase.java:291)
>                 at org.apache.hadoop.security.authentication.client.TestKerberosAuthenticator$4.call(TestKerberosAuthenticator.java:160)
>                 at org.apache.hadoop.security.authentication.client.TestKerberosAuthenticator$4.call(TestKerberosAuthenticator.java:157)
>                 at org.apache.hadoop.security.authentication.KerberosTestUtils$1.run(KerberosTestUtils.java:102)
>                 at java.security.AccessController.doPrivileged(Native Method)
>                 at javax.security.auth.Subject.doAs(Subject.java:415)
>                 at org.apache.hadoop.security.authentication.KerberosTestUtils.doAs(KerberosTestUtils.java:99)
>                 at org.apache.hadoop.security.authentication.KerberosTestUtils.doAsClient(KerberosTestUtils.java:115)
>                 at org.apache.hadoop.security.authentication.client.TestKerberosAuthenticator.testAuthenticationHttpClientPost(TestKerberosAuthenticator.java:157)
> 
> testAuthenticationHttpClientPost[1](org.apache.hadoop.security.authentication.client.TestKerberosAuthenticator)
> Time elapsed: 1.914 sec  <<< ERROR!
> org.apache.http.client.ClientProtocolException: null
>                 at org.apache.http.impl.client.DefaultRequestDirector.tryExecute(DefaultRequestDirector.java:693)
>                 at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:520)
>                 at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:906)
>                 at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:805)
>                 at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:784)
>                 at org.apache.hadoop.security.authentication.client.AuthenticatorTestCase.doHttpClientRequest(AuthenticatorTestCase.java:265)
>                 at org.apache.hadoop.security.authentication.client.AuthenticatorTestCase._testAuthenticationHttpClient(AuthenticatorTestCase.java:291)
>                 at org.apache.hadoop.security.authentication.client.TestKerberosAuthenticator$4.call(TestKerberosAuthenticator.java:160)
>                 at org.apache.hadoop.security.authentication.client.TestKerberosAuthenticator$4.call(TestKerberosAuthenticator.java:157)
>                 at org.apache.hadoop.security.authentication.KerberosTestUtils$1.run(KerberosTestUtils.java:102)
>                 at java.security.AccessController.doPrivileged(Native Method)
>                 at javax.security.auth.Subject.doAs(Subject.java:415)
>                 at org.apache.hadoop.security.authentication.KerberosTestUtils.doAs(KerberosTestUtils.java:99)
>                 at org.apache.hadoop.security.authentication.KerberosTestUtils.doAsClient(KerberosTestUtils.java:115)
>                 at org.apache.hadoop.security.authentication.client.TestKerberosAuthenticator.testAuthenticationHttpClientPost(TestKerberosAuthenticator.java:157)

我再次尝试在互联网上查找有关此错误的信息,但找不到解决方法。
你知道我可能遗漏了什么,或者如何解决这个错误吗?
非常感谢。
丹尼尔

js4nwp54

js4nwp541#

当我尝试用win7构建时,我不得不删除.java文件注解部分中的双**。不知道为什么,但出于某种原因,Maven不喜欢这些。例如,在第693行附近的defaultrequestdirector.java中检查这一点。如果第693行出现在注解中,那么这就是问题所在。只需将注解开头的**改为*。

相关问题