Set Up Cron Scheduler for LINUX

  1. Open a LINUX terminal.
  2. Enter
    crontab-e
    to enter editor mode. For example:

    ADDITIONAL INFORMATION

    root@PrestashopQA4:/etc# crontab -e
    Editor mode displays and look similar to the editor mode shown in the image below.
  3. Enter the command to set the timing for the cron job. For example, this command sets the cron job to run every 15th minute of every hour, every day, every week, and every month:

    ADDITIONAL INFORMATION

    15 * * * * curl https://www.dev.prestahop.cybsplugin.com/mps1760/module/mybank/paymentReport
  4. Enter
    Ctrl + X
    to close the editor.
  5. Enter the
    crontab -l
    command to check the scheduled cron job. For example:

    ADDITIONAL INFORMATION

    root@PrestashopQA4:/etc# crontab -l
    The scheduled cron job should display on the screen. For example:
    15 * * * * curl https://www.dev.prestahop.cybsplugin.com/mps1760/module/mybank/paymentReport