Question d’entretien chez Informatica

How you will end a process while its running on the system?

Réponse à la question d'entretien

Utilisateur anonyme

12 juil. 2018

"kill" command in unix helps us to terminate any process. We can see what processes are running by simply issuing "ps -ef" command in the terminal and then copy the process id of that particular process and use kill command followed by process id to kill that particular process. This should be handled with care as we dont want to kill any batch jobs or processes which are critical and business should not be affected by it!