Tuesday 31 May 2016

How to kill Service instance (Particular integration like TEST) in server?


Initially we have to check, how many solutions/integrations are running on that particular machine.


ps -ef | grep 'bwengine' à this will give all running service details to us.

ps -ef | grep 'bwengine' | grep TEST à this will give TEST application details like PROCESS-ID

Otherwise in admin itself we’ll check the port (PROCESS-ID) on which the service is running

ps -ef | grep <PROCESS-ID>
Eg: ps -ef | grep 11435

Use below cmd to kill that process instance in server level,

kill -9 <PROCESS-ID>

No comments:

Post a Comment