Friday, February 26, 2016

Install "crontab" on CentOS 6

Install the package and dependencies

#yum install vixie-cron

Enable the package on boot and start
# /sbin/chkconfig crond on

# /etc/init.d/crond start 
 
 # service crond start
# chkconfig crond on
 
 
# crontab -e
# crontab -l
 
Eksekusi script backup setiap jam 1 Siang
0 13 * * *  /bin/bash /root/backup.sh
 
Eksekusi script setiap 10 Menit
*/10 * * * * /root/script.sh
 
Eksekusi script setiap hari minggu Pukul 5 pagi
0 5 * * 0 /root/script.sh
 
----------------//--------------- 
 
 
 
 
 
 

No comments:

Post a Comment