start process at assidned date and time


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers start process at assidned date and time
# 1  
Old 01-18-2008
start process at assidned date and time

How can I start FTP at assigned DATE and TIME?
# 2  
Old 01-18-2008
if it is a one time job, check the at command
if it is a repeated task, schedule a cron job for it
# 3  
Old 01-18-2008
Quote:
Originally Posted by Yogesh Sawant
if it is a one time job, check the at command
if it is a repeated task, schedule a cron job for it
those are not working.
I have to have admin access to get that.
# 4  
Old 01-18-2008
you mean the at daemon and cron daemon are not running?
# 5  
Old 01-18-2008
Quote:
Originally Posted by Yogesh Sawant
you mean the at daemon and cron daemon are not running?
when I tried "AT" I've got answer that I'm not authorised use this command.
# 6  
Old 01-18-2008
from the manuals:
Code:
 The superuser may use these commands in any case.  For other users,
permission to use at is determined by the files /etc/at.allow and /etc/at.deny.

If the file /etc/at.allow exists, only usernames mentioned in it are allowed to use at.

If /etc/at.allow does not exist, /etc/at.deny is checked, every username not
mentioned in it is then allowed to useat.

If neither exists, only the superuser is allowed use of at.

An empty /etc/at.deny means that every user is allowed use these commands,
this is the default configuration.

# 7  
Old 01-21-2008
cron and crontab
We have hundreds of threads involving cron and crontab. Rather than creating a post with dozens of links, I thought I'd just write up a tutorial with only a few selected links.

The Basics

cron is a daemon that runs periodic tasks. crontab is name of textfile that is used to control cron. And crontab is also the name of program used to modify the file called crontab. Every user could conceivably have a crontab file. These are often stored in /var/spool/cron/crontabs/. If my user name is perderabo, then my real crontab is /var/spool/cron/crontabs/perderabo. When cron was first written there was a single crontab called /etc/crontab and only root could modify it. Now that everyone can use cron, each crontab gets the name of the user who owns it. Because there are so many possible crontabs, cron can't monitor them all for changes. That's why you must use the crontab program. In addition to modifying the crontab file, it also lets cron know about the change. If you simply edit the file in /var/spool/cron/crontabs/, cron will not notice the change.

The crontab command

root can always use the crontab command. Other users may be locked out. A file, usually at /usr/lib/cron/cron.deny contains a list of users who are prohibited from using cron. If that file doesn't exist, /usr/lib/cron/cron.allow may list users who can use cron. If neither file exists, only root can use cron. To let everyone use cron, create an empty cron.deny file.

But be careful with that crontab command! We must have a dozen threads from folks who accidently did a "crontab -r" which removes your crontab completely. There is no easy way to recover from that. Rather than simply using "crontab -e" to edit your file, some of our members suggest
crontab -l > mycrontab
vi mycrontab
crontab < mycrontab

The Format of a crontab entry

A typically crontab entry might be:
15 18 * * 1-5 /some/script
This says to run /some/script at 18:15 on Monday through Friday.

The first five fields are:
minute (0-59)
hour (0-23)
day of the month(1-31)
month of the year (1-12)
day of the week (0-6 with 0 = Sunday)

Each field can be an asterisk meaning all values, or a single integer, several integers separated by commas, or two integers separated by a hypen to indicate a range.

With some versions of cron, day of the week is 1-7 with 7 = Sunday. Many versions of cron accept either 0 or 7 as Sunday.

Crontab entry for the first Friday of a Month, or every other Tuesday, or Last Saturday of the Month

Consider this entry:
0 0 1-7 * 5 /some/script
You might hope that will run /some/script during the first minute of the first Friday of the month. Unfortunately, it will run the script on each day of the first week of the month and on every Friday. See this thread to see a solution to this problem.
crontab entry to run every last day of the month


It works from the command line but not in crontab

This is perhaps our number one complaint with cron. When you login to Unix, startup scripts setup your environment. You can see your environment with the commands "printenv" or "env". On the other hand, cron sets up only a sparse environment (See Problem with crontab for the details.)

I think that the best solution is to write shell scripts that set up their own environment and run these via cron. That's what worked in not running in cron.

In ping from cron, the user used an absolute path rather than redefining the PATH environment variable.

In this thread: Cron problem?, the user sourced the .profile file to set up the environment and it worked. But that technique caused a problem in stty: tcgetattr: Not a typewriter And I also think that it sets you up for a mysterious problem. Change .profile and your cronjobs may suddenly fail.

A final reason is using the per cent sign in a crontab command as in this post.

More cron Tutorials

And finally, Need tut on Cron info and Cron Jobs have some links to other cron tutorials.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to calculate time difference between start and end time of a process!

Hello All, I have a problem calculating the time difference between start and end timings...! the timings are given by 24hr format.. Start Date : 08/05/10 12:55 End Date : 08/09/10 06:50 above values are in mm/dd/yy hh:mm format. Now the thing is, 7th(08/07/10) and... (16 Replies)
Discussion started by: smarty86
16 Replies

2. UNIX for Dummies Questions & Answers

how to get start time of a running process

I am trying to see if a process is running what was its start time. here is the code that I am using if then echo 'Gateway output processing started.' else VAR=$(ps -ef | grep batch_output_x ) ... fi now the problem i see is when the process is running i get two... (3 Replies)
Discussion started by: akabir77
3 Replies

3. Shell Programming and Scripting

ps showing inconsistent process start time

Not sure if it makes a difference but "foo" is a java process. The start time reported by various flavors of ps seems to be flopping back and forth by a minute. I have many (a few hundred) "foo" like processes which tend to be somewhat unstable and get restarted somewhat frequently, I wrote a... (2 Replies)
Discussion started by: jstrangfeld
2 Replies

4. Linux

Process start time not showing correct time

Process start time is not showing the correct time: I had started a process on Jun 17th at 23:30:00. Next day morning when I run the command "ps -ef | grep mq", the process is showing the start date of Jun 17th but the start time is 00:16:41 Day/Date is setup correctly on the server. It... (2 Replies)
Discussion started by: hemangjani
2 Replies

5. Solaris

How to get process start date and time in SOLARIS?

how can I get the process start date and time? using ps command i can get the timstamp for a process, which are started today. and only date (MMM DD) for others. i need to get both for all the running process. please help. Regards, Jagadeeswaran.K (7 Replies)
Discussion started by: Jagadeeswaran.K
7 Replies

6. HP-UX

HP UX start process at boot time

When I get start program at boot I read which run level /sbin/rcx.d runlevel=0.....x only read directory which directory name has UpperCase 'S' is not enough someone says that I need to reference another file which file I need to reference 1)/etc/rc.config.d/all file which parameter... (4 Replies)
Discussion started by: alert0919
4 Replies

7. UNIX for Advanced & Expert Users

start time of a terminated process

Hi, I have a shell script which i am running. I want it's starting time (the time when the execution of the shell script started) in another shell script. Note that the process has already terminated when i need it's starting time.... else i could have used ps -f | cut -d" " -f5... But that's... (2 Replies)
Discussion started by: k_chaaya
2 Replies

8. UNIX for Advanced & Expert Users

to get process start date and time

what is command to get same using ps with switch. I know process id, by specify process id. It should work on solaris and hp-ux I will be happy if for both different commands. (2 Replies)
Discussion started by: naeem ahmad
2 Replies

9. Programming

get process start time

Hi all, I like to know how can I get currenlty running process start time and date , I know only porcess id in solaris and hp-ux and what is command to get same using ps with switch. Thanks Naeem (1 Reply)
Discussion started by: naeem ahmad
1 Replies

10. UNIX for Advanced & Expert Users

start a process at boot up time

Hi, I have a program that check the IP address and automatic update it to the DNS server. I would like to run this program when the computer bootup after pppd get a connection. How do I add it to the init file. Does any one have any information of how to do it. I run a Linux Mandrake as a... (1 Reply)
Discussion started by: vtran4270
1 Replies
Login or Register to Ask a Question