I have two web servers namely web1 and web2. They are identical servers. Now, I have a php script that needs to run every 30 minutes. How can I run the php script in alternately every 30 minutes. Let say after 30 minutes from web1 server, the next 30 minutes will be run to web2 server.
This is wrong.
web1:
*/30 * * * * /usr/bin/php /path/to/site/cron.php
web2:
*/30 * * * * /usr/bin/php /path/to/site/cron.php
Thanks.
