PineRidge said:
Where does Telnet come into the cron? I was told that removing a cron from a server does not disable it. One must Telnet a terminate command, is this correct?
Mike,
Cron just starts up a program at a given time. The program that was started will just keep running until its reason for ending occurs. If there is no reason to end, it will just keep running. And if you do kill it and if the crontab file is not modified, the program will start again at the specified time.
To kill a process/program/job, in UNIX you "kill" the process.
For instance if the program was named "RunForever", you could run the following command from a shell, ps -ef | grep RunForever".
This would show you a bunch of information like this,
root 26896 31616 0 20:46:52 pts/4 0:02 ....RunForever....
Now all you really care about is the first number which is the process id. If you type "kill 26896" the process/program should go away. If not you "kill -9 26896" will kill the process. I have not had to reboot a UNIX system in years to stop a program.
Now to do the grep and kill you need to be able to access a shell. To do that you run a program like ssh, telnet, rlogin. etc. This will get you a session into the system and present you with a shell so you can type in your commands. There are a number of different shells, ksh, csh, bsh, bash, etc. But they will all allow you to ps, grep and kill.
At this point your eyes have turned glassey, your eye lids are heavy, your mind is numb from such bizzare words like ps, grep, csh, cron, bash and kill so you quit reading TBN and fall asleep!

Later,
Dan