红联Linux门户
Linux帮助

Hadoop-2.2.0在Unbuntu ADM64中需要重新编译Native Lib

发布时间:2015-04-20 11:18:13来源:CSDN作者:tokendeng

通过:cat /etc/issue 查看当前系统版本:
 
Ubuntu 12.04.3

通过:uname -ar 查看更想起信息:
 
Linux ubuntu-236 3.8.0-29-generic #42~precise1-Ubuntu SMP Wed Aug 14 16:19:23 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
 
确定需要重新编译Hadoop-2.2.0
 
编译过程可能会报错,需要修改下面文件:
 
由于源码有问题,需要进行修改,修改 hadoop-common-project/hadoop-auth/pom.xml 文件,添加如下内容:
 
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-util</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<scope>test</scope>
</dependency>