1.Stop Graphlytic
Graphlytic was started as a console application so we need to find its process number:
$ ps -ef | grep javaFind the corresponding process number and kill the process
$ kill <number_of_process>Check if processing was ended:
$ ps -ef | grep java