我在HDFS /user/user
一個shell腳本sample_shell.sh
它看起來像下面:Oozie的色相:被拒絕的權限,同時運行shell腳本
source /user/user/params_new.cfg
echo "HELLO WORLD"
echo $layer
的params_new.cfg也是HDFS /user/user
目錄,其內容是:
layer="S"
我是oozie的新手,嘗試在Hue中設置一個oozie工作流,它將執行sample_shell.sh腳本。該特性如下:
<workflow-app name="shell_sample" xmlns="uri:oozie:workflow:0.4">
<start to="shell_sample"/>
<action name="shell_sample">
<shell xmlns="uri:oozie:shell-action:0.1">
<job-tracker>${jobTracker}</job-tracker>
<name-node>${nameNode}</name-node>
<exec>/user/user/sample_shell.sh</exec>
<file>/user/user/sample_shell.sh#sample_shell.sh</file>
<file>/user/user/params_new.cfg#params_new.cfg</file>
<capture-output/>
</shell>
<ok to="end"/>
<error to="kill"/>
</action>
<kill name="kill">
<message>Action failed, error message[${wf:errorMessage(wf:lastErrorNode())}]</message>
</kill>
<end name="end"/>
,但我得到了以下錯誤:
Log Length: 165
./sample_shell.sh: line 2: /user/user/params_new.cfg: Permission denied
Failing Oozie Launcher, Main class [org.apache.oozie.action.hadoop.ShellMain], exit code [1]
我不明白髮生了什麼事情錯了!如果我從sample_shell.sh代碼中刪除source /user/user/params_new.cfg
和echo $layer
行即可。
權限如下。
-rwxrwxrwx 3 user_name supergroup 1590 2015-03-19 04:01 /user/user/params_new.cfg
-rwxrwxrwx 3 user_name supergroup 139 2015-03-19 04:18 /user/user/sample_shell.sh
任何幫助將非常感謝!
您正在使用哪個版本的Hue? – Romain 2015-03-20 03:26:25
你有沒有解決這個問題? – Petro 2017-01-23 21:49:32