首页 > 其他分享 >在hadoop虚拟机里面使用hadoop jar运行打包文件,出现Exception in thread "main" org.apache.hadoop.ipc.RemoteEx

在hadoop虚拟机里面使用hadoop jar运行打包文件,出现Exception in thread "main" org.apache.hadoop.ipc.RemoteEx

时间:2023-10-10 14:46:34浏览次数:32  
标签:ipc Unknown 虚拟机 hadoop apache org

问题描述

更改了JDK版本之后,再次运行又出现了这个错误:

问题解决

经过查阅相关资料,发现是自己定义的hdfs的路径不太对,本来写的是这样的:

然后自己确实不记得配置环境时配置的是多少,就看了看这个文件core.site.xml:

cat core-site.xml

然后看到这里:

使用的端口号是8020,改成跟环境设置中得一样就ok啦!

标签:ipc,Unknown,虚拟机,hadoop,apache,org
From: https://www.cnblogs.com/liuzijin/p/17754608.html

相关文章

  • 《Hadoop深度学习》高清高质量PDF 电子书 附源码
    下载:https://pan.quark.cn/s/093c4a827c79......
  • xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance(xsi:schemaLocation详解)
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"中xsi的意思是:本xml文件中要用到某些来自xsi代表的“http://www.w3.org/2001/XMLSchema-instance”这个命名空间的元素 比如用来引入无命名空间schema文件的noNamespaceSchemaLocation="XXX";以及引入自带命名空间的sch......
  • org.springframework.util.SerializationUtils
      Map<String,String>map=Maps.newHashMap();map.put("a","1");map.put("b","2");map.put("c","3");byte[]serialize=SerializationUtils.seri......
  • org.springframework.util.Base64Utils
      Stringstr="abc";Stringencode=newString(Base64Utils.encode(str.getBytes()));System.out.println("加密后:"+encode);Stringdecode=newString(Base64Utils.decode(encode.getBytes()),"utf8&......
  • org.springframework.beans.BeanUtils
     {//拷贝对象的属性Hellouser1=newHello();user1.setId(1);user1.setName("name");Hellouser2=newHello();BeanUtils.copyProperties(user1,user2);System.out.printl......
  • org.springframework.util.ClassUtils
     {//获取对象的所有接口Class<?>[]allInterfaces=ClassUtils.getAllInterfaces(ClassUtils.class);System.out.println(allInterfaces[0].getName());}{//获取某个类的包名StringpackageName=ClassUt......
  • org.apache.commons.io.IOUtils
    IO流在我们日常工作中也用得比较多,尽管java已经给我们提供了丰富的API。但我们不得不每次读取文件,或者写入文件之后,写一些重复的的代码。手动在finally代码块中关闭流,不然可能会造成内存溢出。有个好消息是:如果你使用org.apache.commons.io包下的IOUtils类,会节省大量的时间。 ......
  • org.apache.commons.lang3.BooleanUtils
      {//判断true或falseBooleanaBoolean=newBoolean(true);System.out.println(BooleanUtils.isTrue(aBoolean));System.out.println(BooleanUtils.isFalse(aBoolean));}{//判断不为true或不为false......
  • org.apache.commons.collections4.CollectionUtils
      {//集合判空List<Integer>list=newArrayList<>();list.add(2);list.add(1);list.add(3);if(CollectionUtils.isEmpty(list)){System.out.println("集合为......
  • Protobuf在Hadoop RPC中的应用
    ......