From 94bfeacba5851f8dfd541b22bdfc6bd818d055fb Mon Sep 17 00:00:00 2001 From: WalkerWatch Date: Wed, 31 Oct 2018 16:56:25 -0400 Subject: [PATCH] Added note on stopping the server. Resolves #3033 --- .../asciidoc/quick-start/getting-started/jetty-running.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jetty-documentation/src/main/asciidoc/quick-start/getting-started/jetty-running.adoc b/jetty-documentation/src/main/asciidoc/quick-start/getting-started/jetty-running.adoc index 4e497fe43fc..de8808a3193 100644 --- a/jetty-documentation/src/main/asciidoc/quick-start/getting-started/jetty-running.adoc +++ b/jetty-documentation/src/main/asciidoc/quick-start/getting-started/jetty-running.adoc @@ -38,6 +38,8 @@ $ java -jar start.jar You can point a browser at this server at link:http://localhost:8080[]. However, as there are no webapps deployed in the `$JETTY_HOME` directory, you will see a 404 error page served by Jetty. +To stop the server, press `CTRL` + `c` or `CTRL` + `z` in your terminal. + *Note* the `HomeBaseWarning` - it is *not* recommended to run Jetty from the `$JETTY_HOME` directory. Instead, see how to link:#creating-jetty-base[create a Jetty Base] below.