如何将oozie回调命令从curl更改为wget

时间:2013-07-08 04:32:06

标签: oozie

我的linux系统中没有安装linux实用程序curl 如何将oozie回调命令从curl更改为wget?

1 个答案:

答案 0 :(得分:0)

默认情况下,oozie使用curl作为回调命令。 可以通过覆盖oozie-site.xml

中的2个属性将回调命令更改为wget
<property>
    <name>oozie.action.ssh.http.command</name>
    <value>wget</value>
</property> 

<property>
    <name>oozie.action.ssh.http.command.post.options</name>
    <value>--post-data #stdout --header "content-type:text/plain"</value>
</property> 

只需在oozie-site.xml中更改上述属性,然后重新启动oozie服务器。