One of our operation was running a application hosted in Unix
But sometime, operation has to some settings and in order to reflect the new setting, the cron job has to be kill and relaunch. There's no GUI interface for this and operation has to log a ticket to the helpdesk
This is what I had came with for that operation, for them to DIY
These are the processes that required.
Process that required to kill a task in unix.
Step one: List the process and get the process ID
ps -ef|grep <username>
Step two: kill the process
kill <Process ID>
It is that simple!.
Permanent Link