- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2011 09:19 PM
Hi all experts.
What will be the cron_entry for running eem every 5 mins
thanks
Solved! Go to Solution.
- Labels:
-
Network Management
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2011 10:21 PM
You could use watchdog rather than cron. For example:
event timer watchdog time 300
But if you want to do it with cron:
*/5 * * * *
Or:
0,5,10,15,20,25,30,35,40,45,50,55 * * * *

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2011 10:21 PM
You could use watchdog rather than cron. For example:
event timer watchdog time 300
But if you want to do it with cron:
*/5 * * * *
Or:
0,5,10,15,20,25,30,35,40,45,50,55 * * * *
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2011 10:50 PM
Thanks alot
