Search code examples
javaphpjobscron

How to stop the CRON's set using SSH access


How to stop the CRON's set using SSH access. These CRON's are not displayed in my control panel as they are set using SSH access. I do have a ROOT access as its a virtual server.

Please help me.

Regards Gourav.


Solution

  • When you are at the command prompt, you can use:

    crontab -l      // list crontab entries
    crontab -e      // edit crontab entries
    crontab -r      // remove all crontab entries
    

    All of the current user of course (can be root).