Hadoop on Windows. YARN fails to start with java.lang.UnsatisfiedLinkError

前端 未结 6 1489
无人及你
无人及你 2020-12-11 08:37

I have installed/configured Hadoop on windows hadoop-2.7.0

I could successfully start \"sbin\\start-dfs\" run command. DataNode and NameNode started. I could create

6条回答
  •  醉酒成梦
    2020-12-11 09:03

    In my case I have the 3.1.1 Hadoop version and I changed bin folder with another one from the following address https://github.com/s911415/apache-hadoop-3.1.0-winutils. I managed to start yarn with this dll and one node (Yarn cluster with one node). You can find the settings which I followed here. Also you have to set-up the hdfs-site.xml like this:

    
    
     
        dfs.replication
        1
     
    
     
        dfs.namenode.name.dir 
        /hadoop-3.1.1/data/namenode
    
    
     
        dfs.datanode.data.dir 
        /hadoop-3.1.1/data/datanode
    
    
    
    

提交回复
热议问题