This is in UNIX AIX 5.3..Need to configure at scheduler..I have a script which needs to be run every 5 mins and another script which should run every minute.I have done this in cron and its working by editing crontab -e
How can I do the same through at scheduler..where can I configure it and how can I run 2 scripts through at scheduler one running ecery minute and the other every 5 mins
I have the scripts in this location
/obiee/BI/setup/bin/script1.sh every 1 minute through at scheduler
/obiee/BI/setup/bin/script2.sh every 2 minute through at scheduler
The reason I want this to be run as at scheduler is .My cron has many other scripts which it runs and for some reason crond goes down and we have to restart it every time..Please let me know as how to configure and use at scheduler as I dont want to get all the loadon cron
"at" is meant for running one-time jobs at a later time,
thus it's not suitable for your needs.
You would need something like cron to set up an at job every minute, which sounds kind of bizarre to me.
But why should cron die?
Do you see messages in errpt?
wmp