![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| SUN Solaris The Solaris Operating System, usually known simply as Solaris, is a free Unix-based operating system introduced by Sun Microsystems . |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Check the process | ust | UNIX for Dummies Questions & Answers | 1 | 03-01-2006 10:44 AM |
| check the process | ust | Shell Programming and Scripting | 2 | 02-02-2006 02:07 PM |
| Check the process | ust | UNIX for Advanced & Expert Users | 2 | 09-27-2005 12:16 PM |
| process check | k@ssidy | UNIX for Dummies Questions & Answers | 13 | 06-17-2005 04:43 PM |
| Process mail using cron | EOD | UNIX for Dummies Questions & Answers | 1 | 11-27-2004 09:34 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
How to find what are the cron jobs which are running at any instant on a Solaris server ??? The job can be scheduled from any id but still would like to list all the cron jobs which are running on the server ???
|
|
||||
|
Process 201 is cron. cron is started in the S75cron file in /etc/rc2.d. The sole purpose of this file is the graceful starting and stopping of cron. It checks for the file /etc/cron.d/FIFO and the process cron in the process table, and if cron is already running, will not execute an additional process. If cron is not running, it executes rm to remove /etc/cron.d/FIFO from the file system in case it exists, and executes a new cron process. Standard arguments apply.
Check to see if the 'cron' daemon is running. ps -ef | grep cron There should be a process: /usr/sbin/cron that started at the same time as the system booted (check with who -b). You can 'bounce' the cron daemon, if you want, with: /etc/init.d/cron stop /etc/init.d/cron start |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|