Answers for "start cron service"

2

restart crontab

sudo service cron reload
Posted by: Guest on August-22-2020
1

Failed to start cron.service: Unit not found. in centos7

systemctl enable crond && systemctl restart crond
Posted by: Guest on July-26-2020
0

restart service linux crontab

# service crond start
Posted by: Guest on May-28-2020
3

create cron job from command line

#write out current crontab
crontab -l > mycron
#echo new cron into cron file
echo "00 09 * * 1-5 echo hello" >> mycron
#install new cron file
crontab mycron
rm mycron
Posted by: Guest on January-28-2021
-1

restart service linux crontab

# /etc/init.d/crond start
Posted by: Guest on May-28-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language