1.Stop Graphlytic

Graphlytic was started as a console application so we need to find its process number:

$ ps -ef | grep java

Find the corresponding process number and kill the process

$ kill <number_of_process>

Check if processing was ended:

$ ps -ef | grep java