Jun 6, 2006 #1 dbasan Technical User Joined Jun 6, 2006 Messages 1 Location 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 Joined Dec 6, 2004 Messages 1,359 Location 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 Joined Nov 17, 2000 Messages 307 Location US KHz, Don't you mean: Code: /etc/init.d/cron stop /etc/init.d/cron start Regards, Chuck Upvote 0 Downvote