Drupal Web Developer
Drupal 7 Run Elysia cron on every Minute using crontab* * * * * wget -O - -q -t 1 http://your-site-name/sites/all/modules/contrib/elysia_cron/cron.php?cron_key=
Refer: How to Install Crontab in CentOS/RHEL 7/6/5http://tecadmin.net/install-crontab-in-linuxhttp://tecadmin.net/crontab-in-linux-with-20-examples-of-cron-schedule/
[Minute] [hour] [Day_of_the_Month] [Month_of_the_Year] [Day_of_the_Week] [command]
Edit/List Jobs in Crontab# crontab -e# crontab -l# crontab -u -l
# crontab -u (username) -l
Drupal 7 Run Elysia cron on every Minute using crontab
ReplyDelete* * * * * wget -O - -q -t 1 http://your-site-name/sites/all/modules/contrib/elysia_cron/cron.php?cron_key=
Refer: How to Install Crontab in CentOS/RHEL 7/6/5
ReplyDeletehttp://tecadmin.net/install-crontab-in-linux
http://tecadmin.net/crontab-in-linux-with-20-examples-of-cron-schedule/
[Minute] [hour] [Day_of_the_Month] [Month_of_the_Year] [Day_of_the_Week] [command]
ReplyDeleteEdit/List Jobs in Crontab
ReplyDelete# crontab -e
# crontab -l
# crontab -u -l
# crontab -u (username) -l
Delete