diff --git a/jetty-documentation/src/main/asciidoc/administration/jmx/using-jmx.adoc b/jetty-documentation/src/main/asciidoc/administration/jmx/using-jmx.adoc index f6dee27e93d..dd70504da8c 100644 --- a/jetty-documentation/src/main/asciidoc/administration/jmx/using-jmx.adoc +++ b/jetty-documentation/src/main/asciidoc/administration/jmx/using-jmx.adoc @@ -179,7 +179,7 @@ This is especially important when binding the RMI server host to the loopback ad ===== Enabling JMX Remote Access in Standalone Jetty Server -Similarly to <>, you enable the `jmx-remote` module: +Similarly to link:#jmx-standalone-jetty[enabling JMX in a standalone Jetty server], you enable the `jmx-remote` module: [source, screen, subs="{sub-order}"] ---- @@ -350,7 +350,7 @@ Then you setup the local port forwarding with the SSH tunnel: $ ssh -L 1099:localhost:1099 @ ---- -Now you can use JConsole or JMC to connect to `localhost:1099` on your local computer. +Now you can use JConsole or JMC to connect to `localhost:1099` on your local computer. The traffic will be forwarded to `machine_host` and when there, SSH will forward the traffic to `localhost:1099`, which is exactly where the `ConnectorServer` listens. When you configure `ConnectorServer` in this way, you must set the system property `-Djava.rmi.server.hostname=localhost`, on the server. diff --git a/jetty-documentation/src/main/asciidoc/administration/startup/start-jar.adoc b/jetty-documentation/src/main/asciidoc/administration/startup/start-jar.adoc index 6d66e389cbd..a06b4bee58c 100644 --- a/jetty-documentation/src/main/asciidoc/administration/startup/start-jar.adoc +++ b/jetty-documentation/src/main/asciidoc/administration/startup/start-jar.adoc @@ -103,7 +103,7 @@ Instructs `start.jar` to use each line of the specified file as arguments on the Enables debugging output of the startup procedure. + *Note*: This does not set up debug logging for Jetty itself. -For information on logging, please see the section on <> +For information on logging, please see the section on link:#configuring-jetty-logging[Configuring Jetty Logging.]] --start-log-file=:: Sends all startup output to the filename specified. Filename is relative to `${jetty.base}`. diff --git a/jetty-documentation/src/main/asciidoc/administration/startup/startup-overview.adoc b/jetty-documentation/src/main/asciidoc/administration/startup/startup-overview.adoc index 9581094741a..b2a1276a6ba 100644 --- a/jetty-documentation/src/main/asciidoc/administration/startup/startup-overview.adoc +++ b/jetty-documentation/src/main/asciidoc/administration/startup/startup-overview.adoc @@ -59,7 +59,7 @@ Modules:: Modules also use their dependencies to control the ordering of libraries and XML files. There are several module files included with the Jetty distribution that cover the most common server features, such as HTTP, HTTPS, SSL, Logging, Annotations...etc. These module files should *only* be edited if you are making structural changes to the way the feature will perform. - For more information, refer to the section on <> later in this chapter. + For more information, refer to the section on link:#startup-modules[managing startup modules] later in this chapter. XML Files:: XML files in either Jetty IoC or Spring format instantiate the actual POJO components of the server. This includes all major components such as connectors, keystores, session managers, and data sources. diff --git a/jetty-documentation/src/main/asciidoc/administration/startup/startup-unix-service.adoc b/jetty-documentation/src/main/asciidoc/administration/startup/startup-unix-service.adoc index 1f7b701123b..b24a224766d 100644 --- a/jetty-documentation/src/main/asciidoc/administration/startup/startup-unix-service.adoc +++ b/jetty-documentation/src/main/asciidoc/administration/startup/startup-unix-service.adoc @@ -137,7 +137,7 @@ jetty-distribution-{VERSION}/ It might seem strange or undesirable to unpack the first portion of the jetty-distribution directory name too. But starting with Jetty 9 the split between `${jetty.home}` and `${jetty.base}` allows for easier upgrades of Jetty itself while isolating your webapp specific configuration. -For more information on the Jetty home and base concepts see the section on managing a Jetty installation <> +For more information on the Jetty home and base concepts see the section on managing a Jetty installation link:#startup-base-and-home[earlier in this Chapter.] The `/opt/jetty/temp` directory is created as a durable place for Jetty to use for temp and working directories. Many Unix systems will periodically clean out the /tmp directory, this behavior is undesired in a Servlet container and has been known to cause problems.