Hop Server setup #4684
Unanswered
marvinhorst
asked this question in
Q&A
Replies: 2 comments
-
Sorry the XML config got messed up. <hop-server-config>
<hop-server>
<name>biapp-8081</name>
<hostname>localhost</hostname>
<port>8081</port>
</hop-server>
<metadata_folder>/opt/hopdata/projects</metadata_folder>
</hop-server-config> |
Beta Was this translation helpful? Give feedback.
0 replies
-
I suggest reading this discussion, it covers the steps needed to launch a pipeline via the Rest API. I am not sure where you got that endpoint from it's not listed in https://hop.apache.org/manual/latest/hop-server/rest-api.html and as far as I know does not exist |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have several Hop projects where I'm running workflows and pipelines via CLI with cron. This is all working great. I need to execute a few workflows in different projects remotely via REST calls. I've successfully gotten Hop Server running but am apparently a little thick headed because I can't seem to get any workflows or pipelines to execute on Hop Server. I'm probably missing something simple. Here's an an example REST call that just returns a 404 .
curl --location --request GET 'http://biapp-ltz-01:8081/hop/workflow/start' \ --header 'Content-Type: application/json' \ --header 'Authorization: ••••••' \ --data '{ "projectName": "corporate_dw", "environmentName": "corporate_dw-PROD", "workflowName": "TimeEntries", "workflowFilename": "paylocity/TimeEntries.hwf", "runConfiguration": "default", "parameters": { } }'
This is my hop_server_config.xml
biapp-8081
localhost
8081
<metadata_folder>/opt/hopdata/projects/</metadata_folder>
Do I need to configure something in my workflows and pipelines in order for them to work?
Beta Was this translation helpful? Give feedback.
All reactions