Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] setting PID with embedded jetty

Well what I am trying to accomplish is automate this.

So if the server reboots, it will start the embedded jetty jar, and know the pid so it can kill the process.

My devops skills are a little lacking :)

On Thu, Apr 12, 2012 at 10:29 AM, Peter Ondruška <peter.ondruska+jetty@xxxxxxxx> wrote:
$$ in Unix shell should tell you last process PID

Something like:
java -jar ..
echo $$ > /tmp/myjavapid
kill ` cat /tmp/myjavapid `

On Thu, Apr 12, 2012 at 4:14 PM, S Ahmed <sahmed1020@xxxxxxxxx> wrote:
> when using embedded jetty, you start the process using;
>
> java -jar ....
>
> Is it possible to set a PID so you can kill the process?
>
> _______________________________________________
> jetty-users mailing list
> jetty-users@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/jetty-users
>
_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/jetty-users


Back to the top