Scheduling NetoFuse
Scheduling NetoFuse with Cron
Schedule NetoFuse to run by creating a cron job on your Linux system. If running multiple modules, you can create a shell script that executes NetoFuse multiple times from a single cron job.
For example, to run integrations daily at 2:00am:
Make a script to contain the netofuse commands to execute if you are running more than a single module:
/usr/local/bin/netofuse-cron-run.sh
/usr/local/bin/netofuse-cron-run.sh#!/bin/sh
/usr/local/bin/netofuse run claroty
/usr/local/bin/netofuse run axoniusSet correct permissions for this script to be executable: chmod 700 /usr/local/bin/netofuse-cron-run.sh
Add the run script to cron
run crontab -e and add the following line:
0 2 * * * /usr/local/bin/netofuse-cron-run.sh
A handy website for finding the right cron syntax:
Last updated