这里分别是我的工作流程和错误日志。 shell文件内容:
#!/bin/bash
echo
echo
echo "testing"
echo
export HIVE_CONF_DIR=
echo "hive job got started"
cd /opt/mapr/hive/hive-2.1/bin
echo /cygdrive/c/Projects/JLR/embedded_software/main_unit/arm
hive -e "use ozzie_test; create table if not exists test_edh1(name string, id int);"
result=0
if [ -ne 0 ]; then
echo "Hive error number is: "
exit 1
else
echo "hive job got completed successfully"
fi
错误消息:
getting the errorcode as 127
Hive error number is: 127
./testScript.sh: line 11: cd: /opt/mapr/hive/hive-2.1/bin: No such file or directory
./testScript.sh: line 13: **hive: command not found**
答案 0 :(得分:0)
这是' /opt/mapr/hive/hive-2.1/bin '一个hdfs路径?如果是的话,您正试图使用' cd'命令在hdfs路径上,而shell检查本地目录中的该路径,因此错误。