How to take part in discussions on other sites? (e.g. the LiveJournal)
How do I shutdown Jetty?
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What is interesting here?
• Duels
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Сообщества
• Talxy Chat
• Horoscope
• Online
 
Register!

QAIX > Java Programming > How do I shutdown Jetty? 31 December 2009 00:31:44

  Top users: 
  Recent blog posts: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Модератор:

How do I shutdown Jetty?

Rodrigo Reyes 30 May 2003 20:25:51
 Hi all
I am new to Jetty, so this may be a typical newbie question. I got Jetty
running and my first Servlet executed. Still, I haven't been able to find an
elegant way to stop my server. So far, I kill the process, but it seems to
me this shouldn't be the way to shutdown it. Is there any other way to
handle this? Thanx...

Rodrigo



-------------------­----- Yahoo! Groups Sponsor -------------------­--~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yah­oo.com/Lj3uPC/Me7FAA­/ySSFAA/CefplB/TM
-------------------­--------------------­--------------------­----------~->

For the latest information about Jetty, please see http://jetty.mortba­y.org

To alter your subscription to this list goto http://groups.yahoo­.com/group/jetty-dis­cuss

Your use of Yahoo! Groups is subject to http://docs.yahoo.c­om/info/terms/



Add comment
Guest 30 May 2003 21:11:47 permanent link ]
 On Fri, 30 May 2003, Rodrigo Reyes wrote:> I am new to Jetty, so this may be a typical newbie question. I got Jetty> running and my first Servlet executed. Still, I haven't been able to find an> elegant way to stop my server. So far, I kill the process, but it seems to> me this shouldn't be the way to shutdown it. Is there any other way to> handle this? Thanx...

If you are on JDK 1.3 or later, the shutdown hook should be registered, so
that Jetty can shut down cleanly upon a signal.

That's how Jetty works out of the box, and is the best way we've found so
far... we used to use the admin servlet but that stopped working 100% of
the time somewhere between 4.0 and 4.1.

Jeff


-------------------­----- Yahoo! Groups Sponsor -------------------­--~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yah­oo.com/Lj3uPC/Me7FAA­/ySSFAA/CefplB/TM
-------------------­--------------------­--------------------­----------~->

For the latest information about Jetty, please see http://jetty.mortba­y.org

To alter your subscription to this list goto http://groups.yahoo­.com/group/jetty-dis­cuss

Your use of Yahoo! Groups is subject to http://docs.yahoo.c­om/info/terms/



Add comment
Rodrigo Reyes 30 May 2003 22:25:52 permanent link ]
 Jeff
How do I send this signal?

Rodrigo
----- Original Message -----
From: jeff@i33.com
To: jetty-discuss@yahoo­groups.com
Sent: Friday, May 30, 2003 1:11 PM
Subject: Re: [jetty-discuss] How do I shutdown Jetty?


On Fri, 30 May 2003, Rodrigo Reyes wrote: > I am new to Jetty, so this may be a typical newbie question. I got Jetty > running and my first Servlet executed. Still, I haven't been able to find an > elegant way to stop my server. So far, I kill the process, but it seems to > me this shouldn't be the way to shutdown it. Is there any other way to > handle this? Thanx...

If you are on JDK 1.3 or later, the shutdown hook should be registered, so
that Jetty can shut down cleanly upon a signal.

That's how Jetty works out of the box, and is the best way we've found so
far... we used to use the admin servlet but that stopped working 100% of
the time somewhere between 4.0 and 4.1.

Jeff


Yahoo! Groups Sponsor
ADVERTISEMENT




For the latest information about Jetty, please see http://jetty.mortba­y.org

To alter your subscription to this list goto http://groups.yahoo­.com/group/jetty-dis­cuss

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

Add comment
Guest 31 May 2003 01:54:41 permanent link ]
 On Un*x, you'd do something like "kill `cat jetty.pid`" (assuming the
startup script leaves the background PID in jetty.pid; mine does and the
script in the distribution does).

On Windows, I have no idea whatsoever how to signal a Java process.

Jeff

On Fri, 30 May 2003, Rodrigo Reyes wrote:> How do I send this signal?>
Rodrigo> ----- Original Message ----- > From: jeff@i33.com > To: jetty-discuss@yahoo­groups.com > Sent: Friday, May 30, 2003 1:11 PM> Subject: Re: [jetty-discuss] How do I shutdown Jetty?>
On Fri, 30 May 2003, Rodrigo Reyes wrote:> > I am new to Jetty, so this may be a typical newbie question. I got Jetty> > running and my first Servlet executed. Still, I haven't been able to find an> > elegant way to stop my server. So far, I kill the process, but it seems to> > me this shouldn't be the way to shutdown it. Is there any other way to> > handle this? Thanx...>
If you are on JDK 1.3 or later, the shutdown hook should be registered, so > that Jetty can shut down cleanly upon a signal.>
That's how Jetty works out of the box, and is the best way we've found so > far... we used to use the admin servlet but that stopped working 100% of > the time somewhere between 4.0 and 4.1.>
Jeff>
Yahoo! Groups Sponsor > ADVERTISEMENT>
For the latest information about Jetty, please see http://jetty.mortba­y.org>
To alter your subscription to this list goto http://groups.yahoo­.com/group/jetty-dis­cuss >
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. >


-------------------­----- Yahoo! Groups Sponsor -------------------­--~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yah­oo.com/Lj3uPC/Me7FAA­/ySSFAA/CefplB/TM
-------------------­--------------------­--------------------­----------~->

For the latest information about Jetty, please see http://jetty.mortba­y.org

To alter your subscription to this list goto http://groups.yahoo­.com/group/jetty-dis­cuss

Your use of Yahoo! Groups is subject to http://docs.yahoo.c­om/info/terms/



Add comment
Rodrigo Reyes 31 May 2003 02:06:26 permanent link ]
 Jeff
I am on Windows :)­ Thanx anyway...

Rodrigo
----- Original Message -----
From: jeff@i33.com
To: jetty-discuss@yahoo­groups.com
Sent: Friday, May 30, 2003 5:54 PM
Subject: Re: [jetty-discuss] How do I shutdown Jetty?


On Un*x, you'd do something like "kill `cat jetty.pid`" (assuming the
startup script leaves the background PID in jetty.pid; mine does and the
script in the distribution does).

On Windows, I have no idea whatsoever how to signal a Java process.

Jeff

On Fri, 30 May 2003, Rodrigo Reyes wrote: > How do I send this signal? >
Rodrigo > ----- Original Message ----- > From: jeff@i33.com > To: jetty-discuss@yahoo­groups.com > Sent: Friday, May 30, 2003 1:11 PM > Subject: Re: [jetty-discuss] How do I shutdown Jetty? >
On Fri, 30 May 2003, Rodrigo Reyes wrote: > > I am new to Jetty, so this may be a typical newbie question. I got Jetty > > running and my first Servlet executed. Still, I haven't been able to find an > > elegant way to stop my server. So far, I kill the process, but it seems to > > me this shouldn't be the way to shutdown it. Is there any other way to > > handle this? Thanx... >
If you are on JDK 1.3 or later, the shutdown hook should be registered, so > that Jetty can shut down cleanly upon a signal. >
That's how Jetty works out of the box, and is the best way we've found so > far... we used to use the admin servlet but that stopped working 100% of > the time somewhere between 4.0 and 4.1. >
Jeff >
Yahoo! Groups Sponsor > ADVERTISEMENT >
For the latest information about Jetty, please see http://jetty.mortba­y.org >
To alter your subscription to this list goto http://groups.yahoo­.com/group/jetty-dis­cuss >
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. >


Yahoo! Groups Sponsor



For the latest information about Jetty, please see http://jetty.mortba­y.org

To alter your subscription to this list goto http://groups.yahoo­.com/group/jetty-dis­cuss

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

Add comment
Kent Johnson 2 June 2003 16:15:29 permanent link ]
 On Windows if you are running Jetty from the command prompt just
ctrl-C or close the command window or shut down the computer, any of
these will cause orderly shutdown of Jetty as you can see in the
console log.

Kent
Jeff> I am on Windows :)­ Thanx anyway...>
Rodrigo>
----- Original Message ----->From: <mailto:jeff@i33.co­m>jeff@i33.com>To: <mailto:jetty-discu­ss@yahoogroups.com>j­etty-discuss@yahoogr­oups.com>Sent: Friday, May 30, 2003 5:54 PM>Subject: Re: [jetty-discuss] How do I shutdown Jetty?>
On Un*x, you'd do something like "kill `cat jetty.pid`" (assuming the>startup script leaves the background PID in jetty.pid; mine does and the>script in the distribution does).>
On Windows, I have no idea whatsoever how to signal a Java process.>
Jeff>
On Fri, 30 May 2003, Rodrigo Reyes wrote:>> How do I send this signal?>>
Rodrigo>> ----- Original Message ----->> From: jeff@i33.com>> To: jetty-discuss@yahoo­groups.com>> Sent: Friday, May 30, 2003 1:11 PM>> Subject: Re: [jetty-discuss] How do I shutdown Jetty?>>
On Fri, 30 May 2003, Rodrigo Reyes wrote:>> > I am new to Jetty, so this may be a typical newbie >>question. I got Jetty>> > running and my first Servlet executed. Still, I haven't been >>able to find an>> > elegant way to stop my server. So far, I kill the process, but >>it seems to>> > me this shouldn't be the way to shutdown it. Is there any other way to>> > handle this? Thanx...>>
If you are on JDK 1.3 or later, the shutdown hook should be registered, so>> that Jetty can shut down cleanly upon a signal.>>
That's how Jetty works out of the box, and is the best way we've found so>> far... we used to use the admin servlet but that stopped working 100% of>> the time somewhere between 4.0 and 4.1.>>
Jeff>>
Yahoo! Groups Sponsor>> ADVERTISEMENT>>
For the latest information about Jetty, please see >><http://jetty.mor­tbay.org>http://jett­y.mortbay.org>>
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.>>
For the latest information about Jetty, please see ><http://jetty.mort­bay.org>http://jetty­.mortbay.org>
Your use of Yahoo! Groups is subject to the ><http://docs.yahoo­.com/info/terms/>Yah­oo! Terms of Service.>
For the latest information about Jetty, please see ><http://jetty.mort­bay.org>http://jetty­.mortbay.org>
Your use of Yahoo! Groups is subject to the ><http://docs.yahoo­.com/info/terms/>Yah­oo! Terms of Service.


-------------------­----- Yahoo! Groups Sponsor -------------------­--~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yah­oo.com/Lj3uPC/Me7FAA­/ySSFAA/CefplB/TM
-------------------­--------------------­--------------------­----------~->

For the latest information about Jetty, please see http://jetty.mortba­y.org

To alter your subscription to this list goto http://groups.yahoo­.com/group/jetty-dis­cuss

Your use of Yahoo! Groups is subject to http://docs.yahoo.c­om/info/terms/



Add comment
Greg Wilkins 2 June 2003 19:53:49 permanent link ]
 
Or try the new WONDER stop.jar in Jetty 4.2.10pre1

cheers


Kent Johnson wrote:> On Windows if you are running Jetty from the command prompt just > ctrl-C or close the command window or shut down the computer, any of > these will cause orderly shutdown of Jetty as you can see in the > console log.>
Kent>
Jeff>> I am on Windows :)­ Thanx anyway...>>
Rodrigo>>
----- Original Message ----->>From: <mailto:jeff@i33.co­m>jeff@i33.com>>To: <mailto:jetty-discu­ss@yahoogroups.com>j­etty-discuss@yahoogr­oups.com>>Sent: Friday, May 30, 2003 5:54 PM>>Subject: Re: [jetty-discuss] How do I shutdown Jetty?>>
On Un*x, you'd do something like "kill `cat jetty.pid`" (assuming the>>startup script leaves the background PID in jetty.pid; mine does and the>>script in the distribution does).>>
On Windows, I have no idea whatsoever how to signal a Java process.>>
Jeff>>
On Fri, 30 May 2003, Rodrigo Reyes wrote:>>
How do I send this signal?>>>
Rodrigo>>> ----- Original Message ----->>> From: jeff@i33.com>>> To: jetty-discuss@yahoo­groups.com>>> Sent: Friday, May 30, 2003 1:11 PM>>> Subject: Re: [jetty-discuss] How do I shutdown Jetty?>>>
On Fri, 30 May 2003, Rodrigo Reyes wrote:>>> > I am new to Jetty, so this may be a typical newbie >>>question. I got Jetty>>> > running and my first Servlet executed. Still, I haven't been >>>able to find an>>> > elegant way to stop my server. So far, I kill the process, but >>>it seems to>>> > me this shouldn't be the way to shutdown it. Is there any other way to>>> > handle this? Thanx...>>>
If you are on JDK 1.3 or later, the shutdown hook should be registered, so>>> that Jetty can shut down cleanly upon a signal.>>>
That's how Jetty works out of the box, and is the best way we've found so>>> far... we used to use the admin servlet but that stopped working 100% of>>> the time somewhere between 4.0 and 4.1.>>>
Jeff>>>
Yahoo! Groups Sponsor>>> ADVERTISEMENT>>>
For the latest information about Jetty, please see >>><http://jetty.mo­rtbay.org>http://jet­ty.mortbay.org>>>
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.>>>
For the latest information about Jetty, please see >><http://jetty.mor­tbay.org>http://jett­y.mortbay.org>>
Your use of Yahoo! Groups is subject to the >><http://docs.yaho­o.com/info/terms/>Ya­hoo! Terms of Service.>>
For the latest information about Jetty, please see >><http://jetty.mor­tbay.org>http://jett­y.mortbay.org>>
Your use of Yahoo! Groups is subject to the >><http://docs.yaho­o.com/info/terms/>Ya­hoo! Terms of Service.>
For the latest information about Jetty, please see http://jetty.mortba­y.org>
To alter your subscription to this list goto http://groups.yahoo­.com/group/jetty-dis­cuss >
Your use of Yahoo! Groups is subject to http://docs.yahoo.c­om/info/terms/ >


--
Greg Wilkins<gregw@mortb­ay.com> Phone/fax: +44 7092063462
Mort Bay Consulting Australia and UK. http://www.mortbay.­com


-------------------­----- Yahoo! Groups Sponsor -------------------­--~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yah­oo.com/Lj3uPC/Me7FAA­/ySSFAA/CefplB/TM
-------------------­--------------------­--------------------­----------~->

For the latest information about Jetty, please see http://jetty.mortba­y.org

To alter your subscription to this list goto http://groups.yahoo­.com/group/jetty-dis­cuss

Your use of Yahoo! Groups is subject to http://docs.yahoo.c­om/info/terms/



Add comment
Peng Tuck Kwok 3 June 2003 04:34:40 permanent link ]
 Does this use a shutdown port like tomcat ?


--- Greg Wilkins <gregw@mortbay.com>­ wrote:>
Or try the new WONDER stop.jar in Jetty 4.2.10pre1>
cheers>
Kent Johnson wrote:> > On Windows if you are running Jetty from the> command prompt just > > ctrl-C or close the command window or shut down> the computer, any of > > these will cause orderly shutdown of Jetty as you> can see in the > > console log.> >
Kent> >
Jeff> >> I am on Windows :)­ Thanx anyway...> >>
Rodrigo> >>
----- Original Message -----> >>From: <mailto:jeff@i33.co­m>jeff@i33.com> >>To:>
<mailto:jetty-discu­ss@yahoogroups.com>j­etty-discuss@yahoogr­oups.com> >>Sent: Friday, May 30, 2003 5:54 PM> >>Subject: Re: [jetty-discuss] How do I shutdown> Jetty?> >>
On Un*x, you'd do something like "kill `cat> jetty.pid`" (assuming the> >>startup script leaves the background PID in> jetty.pid; mine does and the> >>script in the distribution does).> >>
On Windows, I have no idea whatsoever how to> signal a Java process.> >>
Jeff> >>
On Fri, 30 May 2003, Rodrigo Reyes wrote:> >>
How do I send this signal?> >>>
Rodrigo> >>> ----- Original Message -----> >>> From: jeff@i33.com> >>> To: jetty-discuss@yahoo­groups.com> >>> Sent: Friday, May 30, 2003 1:11 PM> >>> Subject: Re: [jetty-discuss] How do I shutdown> Jetty?> >>>
On Fri, 30 May 2003, Rodrigo Reyes wrote:> >>> > I am new to Jetty, so this may be a> typical newbie > >>>question. I got Jetty> >>> > running and my first Servlet executed.> Still, I haven't been > >>>able to find an> >>> > elegant way to stop my server. So far, I> kill the process, but > >>>it seems to> >>> > me this shouldn't be the way to shutdown it.> Is there any other way to> >>> > handle this? Thanx...> >>>
If you are on JDK 1.3 or later, the shutdown> hook should be registered, so> >>> that Jetty can shut down cleanly upon a> signal.> >>>
That's how Jetty works out of the box, and is> the best way we've found so> >>> far... we used to use the admin servlet but> that stopped working 100% of> >>> the time somewhere between 4.0 and 4.1.> >>>
Jeff> >>>
Yahoo! Groups Sponsor> >>> ADVERTISEMENT> >>>
For the latest information about Jetty, please> see >
To alter your subscription to this list goto >
Your use of Yahoo! Groups is subject to the> Yahoo! Terms of Service.> >>>
For the latest information about Jetty, please see>
To alter your subscription to this list goto >
Your use of Yahoo! Groups is subject to the > >><http://docs.yaho­o.com/info/terms/>Ya­hoo! Terms of> Service.> >>
Yahoo! Groups Sponsor> >>ADVERTISEMENT>
For the latest information about Jetty, please see>
To alter your subscription to this list goto >
Your use of Yahoo! Groups is subject to the > >><http://docs.yaho­o.com/info/terms/>Ya­hoo! Terms of> Service.> >
For the latest information about Jetty, please see> http://jetty.mortba­y.org> >
To alter your subscription to this list goto> http://groups.yahoo­.com/group/jetty-dis­cuss > >
Your use of Yahoo! Groups is subject to> http://docs.yahoo.c­om/info/terms/ > >
-- > Greg Wilkins<gregw@mortb­ay.com> > Phone/fax: +44 7092063462> Mort Bay Consulting Australia and UK. > http://www.mortbay.­com>


___________________­_______________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yah­oo.com

-------------------­----- Yahoo! Groups Sponsor -------------------­--~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yah­oo.com/Lj3uPC/Me7FAA­/ySSFAA/CefplB/TM
-------------------­--------------------­--------------------­----------~->

For the latest information about Jetty, please see http://jetty.mortba­y.org

To alter your subscription to this list goto http://groups.yahoo­.com/group/jetty-dis­cuss

Your use of Yahoo! Groups is subject to http://docs.yahoo.c­om/info/terms/



Add comment
Greg Wilkins 3 June 2003 11:19:13 permanent link ]
 

Peng Tuck Kwok wrote:> Does this use a shutdown port like tomcat ?

yep - it's in the readme


--- Greg Wilkins <gregw@mortbay.com>­ wrote:>
Or try the new WONDER stop.jar in Jetty 4.2.10pre1>>
cheers>>
Kent Johnson wrote:>>
On Windows if you are running Jetty from the>>
command prompt just >>
ctrl-C or close the command window or shut down>>
the computer, any of >>
these will cause orderly shutdown of Jetty as you>>
can see in the >>
console log.>>>
Kent>>>
Jeff>>>> I am on Windows :)­ Thanx anyway...>>>>
Rodrigo>>>>
----- Original Message ----->>>>From: <mailto:jeff@i33.co­m>jeff@i33.com>>>>To­:>>
<mailto:jetty-discu­ss@yahoogroups.com>j­etty-discuss@yahoogr­oups.com>
Sent: Friday, May 30, 2003 5:54 PM>>>>Subject: Re: [jetty-discuss] How do I shutdown>>
Jetty?>>
On Un*x, you'd do something like "kill `cat>>
jetty.pid`" (assuming the>>
startup script leaves the background PID in>>
jetty.pid; mine does and the>>
script in the distribution does).>>>>
On Windows, I have no idea whatsoever how to>>
signal a Java process.>>
Jeff>>>>
On Fri, 30 May 2003, Rodrigo Reyes wrote:>>>>
How do I send this signal?>>>>>
Rodrigo>>>>> ----- Original Message ----->>>>> From: jeff@i33.com>>>>> To: jetty-discuss@yahoo­groups.com>>>>> Sent: Friday, May 30, 2003 1:11 PM>>>>> Subject: Re: [jetty-discuss] How do I shutdown>>
Jetty?>>
On Fri, 30 May 2003, Rodrigo Reyes wrote:>>>>> > I am new to Jetty, so this may be a>>
typical newbie >>
question. I got Jetty>>>>> > running and my first Servlet executed.>>
Still, I haven't been >>
able to find an>>>>> > elegant way to stop my server. So far, I>>
kill the process, but >>
it seems to>>>>> > me this shouldn't be the way to shutdown it.>>
Is there any other way to>>
handle this? Thanx...>>>>>
If you are on JDK 1.3 or later, the shutdown>>
hook should be registered, so>>
that Jetty can shut down cleanly upon a>>
signal.>>
That's how Jetty works out of the box, and is>>
the best way we've found so>>
far... we used to use the admin servlet but>>
that stopped working 100% of>>
the time somewhere between 4.0 and 4.1.>>>>>
Jeff>>>>>
Yahoo! Groups Sponsor>>>>> ADVERTISEMENT>>>>>
For the latest information about Jetty, please>>
see >>
To alter your subscription to this list goto >>
Your use of Yahoo! Groups is subject to the>>
Yahoo! Terms of Service.>>
For the latest information about Jetty, please see>>
To alter your subscription to this list goto >>
Your use of Yahoo! Groups is subject to the >>>><http://docs.ya­hoo.com/info/terms/>­Yahoo! Terms of>>
Service.>>
Yahoo! Groups Sponsor>>>>ADVERTIS­EMENT>>
For the latest information about Jetty, please see>>
To alter your subscription to this list goto >>
Your use of Yahoo! Groups is subject to the >>>><http://docs.ya­hoo.com/info/terms/>­Yahoo! Terms of>>
Service.>>
For the latest information about Jetty, please see>>
To alter your subscription to this list goto>>
Your use of Yahoo! Groups is subject to>>
-- >>Greg Wilkins<gregw@mortb­ay.com> >>Phone/fax: +44 7092063462>>Mort Bay Consulting Australia and UK. >>http://www.mortba­y.com>>
___________________­_______________> Do you Yahoo!?> Yahoo! Calendar - Free online calendar with sync to Outlook(TM).> http://calendar.yah­oo.com>
For the latest information about Jetty, please see http://jetty.mortba­y.org>
To alter your subscription to this list goto http://groups.yahoo­.com/group/jetty-dis­cuss >
Your use of Yahoo! Groups is subject to http://docs.yahoo.c­om/info/terms/ >


--
Greg Wilkins<gregw@mortb­ay.com> Phone/fax: +44 7092063462
Mort Bay Consulting Australia and UK. http://www.mortbay.­com


-------------------­----- Yahoo! Groups Sponsor -------------------­--~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yah­oo.com/Lj3uPC/Me7FAA­/ySSFAA/CefplB/TM
-------------------­--------------------­--------------------­----------~->

For the latest information about Jetty, please see http://jetty.mortba­y.org

To alter your subscription to this list goto http://groups.yahoo­.com/group/jetty-dis­cuss

Your use of Yahoo! Groups is subject to http://docs.yahoo.c­om/info/terms/



Add comment
Guest 31 December 2009 00:14:35 permanent link ]
 Uhh, no it's not
Nothing in it about terminating, closeing or killing Jetty.
As far as Jetty 7 is concerned anyway.
Add comment
Guest 31 December 2009 00:31:44 permanent link ]
 Jetty 6+ has a folder called bin in side of the main jetty folder, you will find for *nix systems an SH file, it has various commands
such as {start|stop|run|res­tart|check|supervise­}.

There is also a windows service program.
In windows you can stop a service by it's name via:
net start service_name
net stop service_name
net pause service_name
(net stop sends term signal for clean shutdown.)

Cheers!
Add comment
 

Add new comment

As:
Login:  Password:  
 
 
  
 
Пожалуйста, относитесь к собеседникам уважительно, не используйте нецензурные слова, не злоупотребляйте заглавными буквами, не публикуйте рекламу и объявления о купле/продаже, а также материалы нарушающие сетевой этикет или законы РФ. Ваш ip-адрес записывается.


QAIX > Java Programming > How do I shutdown Jetty? 31 December 2009 00:31:44

see also:
Re: [broken_builds] [!]…
Kudos on the Xmas Edition of the…
Public packages in core.jar
pass tests:
Do you know women?
Trix
see also:
How to convert M4V to MOV for QuickTime…
Talk about converting to flash
How to convert MKV to AVI, WMV, MP4…

  Copyright © 2001—2010 QAIX
Идея: Монашёв Михаил.
Авторами текстов, изображений и видео, размещённых на этой странице, являются пользователи сайта.
See Help and FAQ in the community support.qaix.com.
Write in the community about the bugs you have noticedbugs.qaix.com.
Write your offers and comments in the communities suggest.qaix.com.
Information for parents.
Пишите нам на .
If you would like to report an abuse of our service, such as a spam message, please .
Если Вы хотите пожаловаться на содержимое этой страницы, пожалуйста .