08-01-2008
Solaris does NOT use the MAILTO variable. You can use the mail command to send E-mail output of cron jobs. For example, to mail the output of a script to a user, you can format the cron command similarly to the following (keeping everything on a single line in your crontab).
* * * * * /path-to/yourscript | /bin/mail
someone@mydomain.com
or write a to run your job and send an email, see the example in my below comment.
===========================================
SUPERVISOR="root, you@somewhere"
....
mail ${SUPERVISOR} < $LOGFILE
make your crontable looks like:
5 * * * * /path-to/yourscript >/dev/null 2>&1
ave a look at this nice cron FAQ:
Unix FAQ - Cron
10 More Discussions You Might Find Interesting
1. UNIX for Dummies Questions & Answers
Hey all,
I'm running Mandrake 7.2 with several of the development/server tools loaded and operating. One problem I'm having is that I keep getting emails from the "Cron Daemon". They all say:
touch: /var/log/news/nntpsend.log: Permission denied
chmod: same as above
/usr/bin/nntpsend: ... (2 Replies)
Discussion started by: ober5861
2 Replies
2. UNIX for Dummies Questions & Answers
I ve a problem with the cron daemon.
i ve a process that sends many mail, and full my /var FS
i don t want to write a script that would clean its mails
i want to know if it would be possible to stop the cron daemon sending mails only for that specific process.
Thanks !:D (3 Replies)
Discussion started by: karine
3 Replies
3. UNIX for Dummies Questions & Answers
I am looking for information on how to process mail using a cron job. The email server is a hosted ISP, so I simply have a POP connection to the mailbox.
Specifically, I want to fire a cron job at {x} time and have pine, mail, mailx, or some other suitable mail client utility process the... (1 Reply)
Discussion started by: EOD
1 Replies
4. SCO
Hi
We are running SCO ver 5. Recently the cron daemon stopped running on its own. How do I find out why? How do I restart/stop it?
I typed cron but it didn't work. Will rebooting it do the trick or can I manually start and stop the cron daemon?
Please help.
Thanks & Regards. (0 Replies)
Discussion started by: othman
0 Replies
5. HP-UX
during boot, the mail daeman stalls as much as 20 minutes between busy and OK, where do I look to fix this problem? (1 Reply)
Discussion started by: dave_m
1 Replies
6. UNIX for Dummies Questions & Answers
hi,
i need to execute/visit a site to check if the site is up or not i have a server that have cron shedule that can execute a php file now how can i execute/visite a site using the same way as i execute a file?
thanks a lot for your help :) (1 Reply)
Discussion started by: jasonx22
1 Replies
7. Solaris
Hi All,
My current version is 5.10 Generic_127127-11,
I'm not getting mails after cron for single os user
where as for others users im getting mail after cron.
i've not found any mail file in /var/mail for that particular user, and i have created a new mail file. but no luck
please... (1 Reply)
Discussion started by: adeel_dba
1 Replies
8. Shell Programming and Scripting
Hi,
I am new to this mail concept and cran jobs,i have given with a task to send a mail for every one hour from unix to my outlook by checking some sanitry checks kindly look the below queires and help me in this
1.)How to send a mail from unix box to outlook.
2.)I assigned to check a... (4 Replies)
Discussion started by: thelakbe
4 Replies
9. UNIX for Dummies Questions & Answers
I am not system admin on Unix or Linux server. I am Oracle DBA to work on these operating systems. On our Oracle Linux 5.8 box, it always pump up the alert message like this:
Cron Daemon
/bin/sh: /opt/oracle/product/middleware/agent11g/ccr/bin/emCCR: No such file or directory
Please help... (2 Replies)
Discussion started by: duke0001
2 Replies
10. Fedora
Hi All,
Please tell me which daemon is responsible for start and stop the crontab.
Please tell me the location where it resides in Linux platform.
Sindu. (2 Replies)
Discussion started by: indira_s
2 Replies
LEARN ABOUT OPENDARWIN
queuedefs
queuedefs(4) File Formats queuedefs(4)
NAME
queuedefs - queue description file for at, batch, and cron
SYNOPSIS
/etc/cron.d/queuedefs
DESCRIPTION
The queuedefs file describes the characteristics of the queues managed by cron(1M). Each non-comment line in this file describes one queue.
The format of the lines are as follows:
q.[njobj][nicen][nwaitw]
The fields in this line are:
q The name of the queue. a is the default queue for jobs started by at(1); b is the default queue for jobs started by batch (see
at(1)); c is the default queue for jobs run from a crontab(1) file.
njob The maximum number of jobs that can be run simultaneously in that queue; if more than njob jobs are ready to run, only the first
njob jobs will be run, and the others will be run as jobs that are currently running terminate. The default value is 100.
nice The nice(1) value to give to all jobs in that queue that are not run with a user ID of super-user. The default value is 2.
nwait The number of seconds to wait before rescheduling a job that was deferred because more than njob jobs were running in that job's
queue, or because the system-wide limit of jobs executing has been reached. The default value is 60.
Lines beginning with # are comments, and are ignored.
EXAMPLES
Example 1: A sample file.
#
#
a.4j1n
b.2j2n90w
This file specifies that the a queue, for at jobs, can have up to 4 jobs running simultaneously; those jobs will be run with a nice value
of 1. As no nwait value was given, if a job cannot be run because too many other jobs are running cron will wait 60 seconds before trying
again to run it.
The b queue, for batch(1) jobs, can have up to 2 jobs running simultaneously; those jobs will be run with a nice(1) value of 2. If a job
cannot be run because too many other jobs are running, cron(1M) will wait 90 seconds before trying again to run it. All other queues can
have up to 100 jobs running simultaneously; they will be run with a nice value of 2, and if a job cannot be run because too many other jobs
are running cron will wait 60 seconds before trying again to run it.
FILES
/etc/cron.d/queuedefs queue description file for at, batch, and cron.
SEE ALSO
at(1), crontab(1), nice(1), cron(1M)
SunOS 5.10 1 Mar 1994 queuedefs(4)