Jun 6, 2006 #1 dbasan Technical User Jun 6, 2006 1 US I am a new to unix env, how to know the cron deamon is running? Is there any commands to check the running status, stop and start the services for cron. thanks!
I am a new to unix env, how to know the cron deamon is running? Is there any commands to check the running status, stop and start the services for cron. thanks!
Jun 6, 2006 #2 kHz MIS Dec 6, 2004 1,359 US ps -ef | grep cron Examples: /etc/init.d/xntpd stop /etc/init.d/xntpd start For Solaris 10 they added the Service Management Facility. man svcadm for SMF. Upvote 0 Downvote
ps -ef | grep cron Examples: /etc/init.d/xntpd stop /etc/init.d/xntpd start For Solaris 10 they added the Service Management Facility. man svcadm for SMF.
Jun 7, 2006 #3 cspilman MIS Nov 17, 2000 307 US KHz, Don't you mean: Code: /etc/init.d/cron stop /etc/init.d/cron start Regards, Chuck Upvote 0 Downvote