这是我的工作流程和错误日志。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**
1条答案
按热度按时间pieyvz9o1#
这个'/opt/mapr/hive/hive-2.1/bin'是hdfs路径吗?如果是,您正试图在hdfs路径上使用'cd'命令,而shell将在本地目录中检查该路径,因此出现错误。