Skip to main content

Things you need to know about cron

cron is a Linux utility which schedules a command or script on your server to run automatically at a specified time and date. 
They're most commonly used for automating system maintenance or administration. However, they are also relevant to web application development. 

Why use cron? 

Server admins have been using cron jobs for a long time.  
  • You can expire and erase cached data files in a certain interval.
  • You can auto-check your website content for broken links and have a report e-mailed to yourself regularly.
  • Can update your database from external api 
Here is a simple cron job:
1
10 * * * * /usr/bin/php /www/virtual/username/cron.php > /dev/null 2>&1
It consists of five parts:
  1. minute
  2. hour
  3. day of month
  4. month
  5. day of week

Can generate the sequence from  crontab guru,   https://crontab.guru/every-30-minutes


Running this command will launch vi (text editor) and will let you edit the contents of the crontab:
1
crontab -e

If you would just like to see the existing crontab without editing it, you can run this command:
1
crontab -l
To delete the contents of the crontab:
1
crontab -r

For more details attached the reference link  below. 

Reference : 

Comments

Popular posts from this blog

Download Files From Remote to local via command line

To download Files From Remote to local via command line  normally we use scp. To copy all from  Local Location  to  Remote Location  (Upload) scp - r / path / from / destination username@hostname :/ path / to / destination Copy on current directory from  Remote to Local scp - r username@hostname :/ path / from / file . To download a single file the command will be: scp user@your . server . example . com :/ path / to / foo/file.name / home / user / Desktop / To download a single file the command will be:  scp - r user@your . server . example . com :/ path / to / foo / home / user / Desktop / Help: -r  Recursively copy all directories and files Always use full location from  / , Get full location by  pwd scp  will replace all existing files hostname  will be hostname or IP address if custom port is needed (besides port 22) use  -P portnumber . (dot)  - it means current working directory...

Git Repair Permissions

Git Push Error: insufficient permission for adding an object to repository database When you try to push to a shared git remote, you get the following error:  insufficient permission for adding an object to repository database After you have identified and fixed the underlying cause (see below), you’ll want to repair the permissions: cd /path/to/repo.git chgrp -R groupname . chmod -R g+rwX . find . -type d -exec chmod g+s '{}' + Underlying Causes The error could be caused by one of the following: The repository isn’t configured to be a shared repository (see  core.sharedRepository  in  git help config ). If the output of: git config core.sharedRepository is not  group  or  true  or  1  or some mask, try running: git config core.sharedRepository group and then re-run the recursive  chmod  and  chgrp  (see “Repair Permissions” above). The operating system doesn’t interpret a setgid bit o...