Re: stop shell doesn't kill all java process !
Gerald <[email protected]>
| Newsgroups | gmane.comp.cms.jahia.install |
|---|---|
| Message-ID | <[email protected]> |
On Mon, 21 Jun 2004, ghislain.cussonneau wrote: > kill -9 XXXX > to kill the process ! I think we are all trying to find the proper way to make that Tomcat process be killed with the rest of the java processes when the shutdown script is run. I would suggest avoiding kill -9 if simply kill (which sends TERM or 15 to the process) Kill -9 can leave memory allocated and other resources unintentionally and should always be last resort. Gerald