I need to run couple of java jars in the fedora. When I execute the java -jar application.jar for each jar, it will run with same process name("java"). Lets say I need to kill these processes at a totally different time and from a different location.
It would be easier to do these, if I can run each jar with a customized process name.Can somebody tell me that something like java -jar application.jar -process_name exists?
Or is there any way to run Subprocess.Popen() with a given process name?
Because I am using python to run these jars. Thanks