Knowledge base

1000 FAQs, 500 tutorials and instructional videos. Here, there are only solutions!

Using Crontab on Cloud Server

This guide details the use of Crontab (crons via SSH), available only on Cloud Server, by default (there is also a task scheduler for all hosting).

 

Prerequisites

  • The script files called by the cron must be executable (CHMOD).

 

Full path

Cron tasks do not know the absolute path (path). Calling PHP without specifying the full paths to the executable makes it impossible to execute the task. You must specify

/opt/phpX.X/bin/php

by replacing X.X with the desired PHP version (/opt/php7.1/bin/php for example).

 

Other operations

  • List the crons of the SSH user in question:

    crontab -l -u NomUtilisateurSSH
  • Edit the crons:

    crontab -e -u NomUtilisateurSSH
  • Be notified by email of the result of your cron tasks (to be added at the beginning of the file):

    MAILTO=e-mail@domain.xyz

 

Restore a backup

Infomaniak backs up the crons of the last 7 days (once a day). In case of accidental deletion, contact Infomaniak support to request a restoration specifying the time and date of the deletion.


Has this FAQ been helpful?