*/5 * * * * my command
This entry works but every 5 minutes it gets executed twice, why?
In /var/log/cron it shows:
/var/log/cron
I had the same problem once, in my case was that I initialize the cron service twice by mistake. After I stopped cron # /etc/init.d/crond stop and started it again # /etc/init.d/crond start, it worked perfectly.
# /etc/init.d/crond stop
# /etc/init.d/crond start
I hope this can help anybody.