Hi I would like to run Knime workflow with the following commands it only opens the Knime application but not opening and refreshing my workflow.
Please help to find the issue. Thanks in advance
Welcome to the KNIME forum. Your post was back in February and somehow it seems to have got missed. Did you resolve your problem? If not, did you try exporting your KNIME preferences to a file (in Classic UI that’s on File-Export Prerences) and then including this on your command line:
Adding my two cents too. I struggled running Knime in Batch mode first, too. I creataed a bash script and scheduled it via cron on an AWS Linux Workspaace like so:
#!/bin/bash
cd /ptah/to/knime-app-directory
./knime -consoleLog -nosplash -application org.knime.product.KNIME_BATCH_APPLICATION -reset -nosave --launcher.suppressErrors -workflowDir=/path-to-workflow-to-execute-wiith-spaces-escped/like\ so
A commaand examaple from @mlauber71 on Windows looks like this: