Enable & disable cronjob


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Enable & disable cronjob
# 1  
Old 09-12-2007
Enable & disable cronjob

Hi All,

I am new to cronjob and need some guidance on this.

1) How do i enable a cronjob ?
Can it be done by "crontab mycronfile" or "crontab -e mycronfile"

2) How can i disable the cronjob?
Can deleting of the "mycronfile" disable the cron or do i need to perform "crontab -r mycronfile" ?
# 2  
Old 09-12-2007
1) yes, yes

2) crontab -r
# 3  
Old 09-13-2007
Hi,

Is there any way that i can check whether the cron has been disabled or enabled ?
# 4  
Old 09-13-2007
If you mean the cron subsystem then do a check of the process list and see if cron is running. Otherwise it depends on your operating system.


If you mean your tasks, then do "crontab -l", if nothing is listed that does not start with # then you have nothing scheduled.
# 5  
Old 09-19-2007
Hi ,

I can't disable my cron. Can you help ?
Below is the error msg

$ crontab -r cronline
crontab: you are not a valid user (no entry in /etc/passwd).
# 6  
Old 09-19-2007
1. What about

echo >empty
crontab ./empty

2. Are you listed in /etc/passwd ?

3. What are the rights to the /etc/passwd file? eg "ls -ld /etc/passwd"

4. What is the result of "id"?
# 7  
Old 09-19-2007
Does "crontab -r" remove all cronjobs regardless of which user id u are using ?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Infrastructure Monitoring

OID to disable/enable printing

Hi @ all, we are a non-profit educational organisation. Now my company wants to disable printers, when a room is not used. I do a lot monitoring, using snmp. So I had the idea of disabling and enabling the printers by using snmp. After searching for hours, I only found some status-objects (ro)... (1 Reply)
Discussion started by: karls0
1 Replies

2. AIX

how to Enable VxDMP & Disable MPIO?

Hello people. I am new to AIX & dealing with VxDMP. The server has AIX 7.1, storage is Hitachi. I have 4 paths from my server to the array. However, the vxdmp shows only single path. I went through some discussions & realized that it is because of MPIO. Then, I did following - *... (0 Replies)
Discussion started by: nkiran
0 Replies

3. HP-UX

FTP service Enable/Disable

hi everybody, I can easily enable /disable the FTP service from SAM, how can I do this via command line? using inetd? how? cheers, messi (1 Reply)
Discussion started by: messi777
1 Replies

4. UNIX for Dummies Questions & Answers

Enable and disable the auto mount

How to enable and disable the auto mount option for USB devices.? (3 Replies)
Discussion started by: ungalnanban
3 Replies

5. UNIX for Dummies Questions & Answers

crontab: disable/enable

since i don't have root access, i have been doing: crontab -l > /tmp/username.crontab crontab -r vi /tmp/username.crontab and copy page crontab -e, and paste sometimes, /tmp/username.crontab has more than 1 page, so i have to copy twice. how do i copy all contents from... (2 Replies)
Discussion started by: tjmannonline
2 Replies

6. Shell Programming and Scripting

How to disable Enable/Disable Tab Key

Hi All, I have bash script, so what is sintax script in bash for Enable and Disable Tab Key. Thanks for your help.:( Thanks, Rico (1 Reply)
Discussion started by: carnegiex
1 Replies

7. Solaris

SSH enable, Telnet disable ...

Hi... How do I enable SSH and disable telnet.. Also - is there anything special I need to do to ensure that a new user can use ssh and su but not telnet? Adel (15 Replies)
Discussion started by: ArabOracle.com
15 Replies

8. UNIX for Advanced & Expert Users

Disable and Enable Backspace or Ctrl^H in vi

Could anybody tell me how I can disable or enable the backspace key in vi editor. I would like to feel the essence of the commands of vi editor but as I have the latest version and it is supporting the backspace key. I do it on promp using the command stty erase - This command stops the... (5 Replies)
Discussion started by: mobile01
5 Replies

9. Solaris

Enable/Disable rlogin and rcopy

How can i disable rlogin or rcopy from being running as a services in my system ? is there a way ? and is it gonna affect other remote services like ssh and telnet ? (3 Replies)
Discussion started by: XP_2600
3 Replies

10. Linux

Enable and disable ttyS0

I have a modem connect it to ttyS0 , in unix sco i know i can disable and enable the port , how can i do this , is there a command that will allow me to do this. **** I'm running Redhat 9 *****External Usrobotics 56k Thanks a lot guys (1 Reply)
Discussion started by: josramon
1 Replies
Login or Register to Ask a Question