Linux システムに Linux ユーティリティ curl がインストールされていません。
oozie コールバック コマンドを curl から wget に変更するにはどうすればよいですか?
1 に答える
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 サーバーを再起動するだけです。
于 2013-07-08T04:41:18.603 に答える