Hadoop tasks: “execvp: permission denied”

前端 未结 3 1581
借酒劲吻你
借酒劲吻你 2021-01-07 07:32

In a small Hadoop cluster set up on a number of developer workstations (i.e., they have different local configurations), I have one TaskTracker of 6 that is being problemati

3条回答
  •  伪装坚强ぢ
    2021-01-07 08:08

    We have same problem. we fix it by adding 'execute' to below file.

    $JAVA_HOME/jre/bin/java
    

    Because hadoop use $JAVA_HOME/jre/bin/java to spawn task program instead of $JAVA_HOME/bin/java.

    If you still have this issue after change the file mode, suggest you use remote debug to find the shell cmd which spawning the task, see debugging hadoop task

提交回复
热议问题