执行流程时出现以下错误。
Error submitting flow bar. azkaban.executor.ExecutorManagerException: org.apache.http.conn.HttpHostConnectException: Connect to localhost:10000 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused (Connection refused)我在azkaban.properties中更改了一些行。
default.timezone.id=Asia/Tokyo
jetty.port=8081
executor.port=10000azkaban使用azkaban-solo-server。
发布于 2018-05-25 22:04:06
看起来azkaban-web-server无法联系azkaban-exec-server。azkaban executor是一个独立于azkaban web界面的进程,并使用单独的配置。首先,确认executor正在运行并在正确的端口上侦听。例如:对于非windows环境:
$ ps -elf | grep azkaban-exec-server如果它没有运行,则需要启动它。如果它正在运行,那么您需要确保executor的侦听端口与azkaban-web服务器azkaban.properties中配置的executor端口相同。为此,您可以检查正在运行的azkaban-exec-server进程的-Dexecutorport参数,或者检查azkaban-exec-server azkaban.properties中的executor.port值。如果此值与azkaban-web- azkaban.properties中的executor.port 值不同,则需要确保这些值匹配(通过修改azkaban-web-azkaban.properties或azkaban-exec-server azkaban.properties中的executor.port),并确保在任何配置更改后重新启动相关服务。
https://stackoverflow.com/questions/50483954
复制相似问题