diff --git a/community/docs/modules/ROOT/nav.adoc b/community/docs/modules/ROOT/nav.adoc index 7a27763bc..1869f89a6 100644 --- a/community/docs/modules/ROOT/nav.adoc +++ b/community/docs/modules/ROOT/nav.adoc @@ -149,7 +149,6 @@ *** xref:Technical Documentation/Payara Server Documentation/Command Reference/create-node-docker.adoc[create-node-docker] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/create-node-ssh.adoc[create-node-ssh] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/create-password-alias.adoc[create-password-alias] -*** xref:Technical Documentation/Payara Server Documentation/Command Reference/create-profiler.adoc[create-profiler] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/create-protocol-filter.adoc[create-protocol-filter] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/create-protocol-finder.adoc[create-protocol-finder] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/create-protocol.adoc[create-protocol] @@ -210,7 +209,6 @@ *** xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-node-docker.adoc[delete-node-docker] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-node-ssh.adoc[delete-node-ssh] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-password-alias.adoc[delete-password-alias] -*** xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-profiler.adoc[delete-profiler] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-protocol-filter.adoc[delete-protocol-filter] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-protocol-finder.adoc[delete-protocol-finder] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-protocol.adoc[delete-protocol] diff --git a/docs/modules/ROOT/pages/Technical Documentation/Application Development/Debugging Applications.adoc b/docs/modules/ROOT/pages/Technical Documentation/Application Development/Debugging Applications.adoc index c949d4ff7..656d266e6 100644 --- a/docs/modules/ROOT/pages/Technical Documentation/Application Development/Debugging Applications.adoc +++ b/docs/modules/ROOT/pages/Technical Documentation/Application Development/Debugging Applications.adoc @@ -169,17 +169,4 @@ Apache NetBeans Profiler:: Comes bundled with Apache Netbeans, which has native Async Profiler:: A powerful lightweight profiler that can run locally or remotely and trace CPU cycles, hardware and software performance and do Java Heap allocation analysis. This profiler is currently maintained as an https://github.com/async-profiler/async-profiler[open source project]. + -NOTE: If using IntelliJ IDEA Ultimate, Async profiler is bundled by default and requires no extra installation. - -If you wish to configure to Payara Server to automatically run the profiler's agent when the server's JVM starts, you can do so by configuring the profiler as a Java agent by navigating to the Administration Console, heading to the server's instance configuration settings, selecting _JVM Settings_ option and navigate to the _Profiler_ tab. The following configuration attributes are available: - -* _Profiler Name_: A name for the profiler's "profile" you wish to configure. Any name will suffice. -* _Status_: Whether the profiler's configuration is enabled or not. -* _Classpath_: Allows the user to customize the classpath of the profiler's agent. -* _Native Library Path_: Path to the native library binaries of the profiler's agent. -* _Options_: Additional options you can use to configure the profiler. -+ -For example, the following options can be used to configure Async Profiler: -+ -** `event=cpu` -** `file=profile.html` +NOTE: If using IntelliJ IDEA Ultimate, Async profiler is bundled by default and requires no extra installation. \ No newline at end of file diff --git a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/create-jvm-option.adoc b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/create-jvm-option.adoc index 9e32cc8db..cb53335a5 100644 --- a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/create-jvm-option.adoc +++ b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/create-jvm-option.adoc @@ -10,16 +10,13 @@ Create options for the Java application launcher. ---- asadmin [asadmin-options] create-jvm-option [--help] [--target target] -[--profiler={true|false}] (assignment=jvm-option) ---- [[description]] == Description -The `create-jvm-options` subcommand creates a single command-line option that is passed to the Java application launcher when Payara Server is started. The options that this subcommand creates are in addition to the options that are preset with Payara Server. Java application launcher options are stored in the Java configuration `java—config` element or the profiler `profiler` element of the `domain.xml` file. The options are sent to the command line in the order they appear in the `java—config` element or the profiler `profiler` element in the `domain.xml` file. - -Profiler options are used to record the settings that are required to start a particular profiler. The profiler must already exist. If necessary, use the xref:Technical Documentation/Payara Server Documentation/Command Reference/create-profiler.adoc#create-profiler[`create-profiler`] subcommand to create the profiler. +The `create-jvm-options` subcommand creates a single command-line option that is passed to the Java application launcher when Payara Server is started. The options that this subcommand creates are in addition to the options that are preset with Payara Server. Java application launcher options are stored in the Java configuration `java—config` element of the `domain.xml` file. The options are sent to the command line in the order they appear in the `java—config` element in the `domain.xml` file. This subcommand can be used to create the following types of options: @@ -75,8 +72,6 @@ cluster-name;; Specifies a cluster. configuration-name;; Specifies a named configuration. -`--profiler`:: -Indicates whether the Java application launcher options are for the profiler. The profiler must exist for this option to be true. Default is false. [[operands]] == Operands @@ -122,17 +117,6 @@ Successfully added JVM option: -Xmx1024m Command create-jvm-option executed successfully. ---- -*Example 3 Setting a JVM Startup Parameter for the Profiler* - -This example sets a JVM startup parameter for the profiler. - -[source,shell] ----- -asadmin> create-jvm-option --profiler=true -XX:MaxPermSize=192m -Successfully create JVM option: -XX:MaxPermSize=192m -Command create-jvm-option executed successfully. ----- - [[exit-status]] == Exit Status @@ -145,7 +129,6 @@ error in executing the subcommand * xref:Technical Documentation/Payara Server Documentation/Command Reference/asadmin.adoc#asadmin-1m[`asadmin`], * xref:Technical Documentation/Payara Server Documentation/Command Reference/create-jvm-options.adoc#create-jvm-options[`create-jvm-options`], -* xref:Technical Documentation/Payara Server Documentation/Command Reference/create-profiler.adoc#create-profiler[`create-profiler`], * xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-jvm-options.adoc#delete-jvm-options[`delete-jvm-options`], * xref:Technical Documentation/Payara Server Documentation/Command Reference/list-jvm-options.adoc#list-jvm-options[`list-jvm-options`], * xref:Technical Documentation/Payara Server Documentation/Command Reference/restart-domain.adoc#restart-domain[`restart-domain`] diff --git a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/create-jvm-options.adoc b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/create-jvm-options.adoc index 6b931a2c0..061fa7c85 100644 --- a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/create-jvm-options.adoc +++ b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/create-jvm-options.adoc @@ -9,16 +9,14 @@ Create options for the Java application launcher. [source,shell] ---- asadmin [asadmin-options] create-jvm-options [--help] -[--target target] [--profiler={true|false}] +[--target target] (jvm-option-name=jvm-option-value) [:jvm-option-name=jvm-option-value*] ---- [[description]] == Description -The `create-jvm-options` subcommand creates command-line options that are passed to the Java application launcher when Payara Server is started. The options that this subcommand creates are in addition to the options that are preset with Payara Server. Java application launcher options are stored in the Java configuration `java—config` element or the profiler `profiler` element of the `domain.xml` file. The options are sent to the command line in the order they appear in the `java—config` element or the profiler `profiler` element in the `domain.xml` file. - -Profiler options are used to record the settings that are required to start a particular profiler. The profiler must already exist. If necessary, use the xref:Technical Documentation/Payara Server Documentation/Command Reference/create-profiler.adoc#create-profiler[`create-profiler`] subcommand to create the profiler. +The `create-jvm-options` subcommand creates command-line options that are passed to the Java application launcher when Payara Server is started. The options that this subcommand creates are in addition to the options that are preset with Payara Server. Java application launcher options are stored in the Java configuration `java—config` element of the `domain.xml` file. The options are sent to the command line in the order they appear in the `java—config` element in the `domain.xml` file. This subcommand can be used to create the following types of options: @@ -74,8 +72,6 @@ asadmin-options:: Specifies a cluster. configuration-name;; Specifies a named configuration. -`--profiler`:: - Indicates whether the Java application launcher options are for the profiler. The profiler must exist for this option to be true. Default is false. [[operands]] == Operands @@ -140,17 +136,6 @@ Command create-jvm-options executed successfully. In this case, one of the two parameters already exists, so the subcommand reports that only one option was set. -*Example 4 Setting a JVM Startup Parameter for the Profiler* - -This example sets a JVM startup parameter for the profiler. - -[source,shell] ----- -asadmin> create-jvm-options --profiler=true -XX\:MaxPermSize=192m -created 1 option(s) -Command create-jvm-options executed successfully. ----- - [[exit-status]] == Exit Status @@ -163,7 +148,6 @@ Command create-jvm-options executed successfully. * xref:Technical Documentation/Payara Server Documentation/Command Reference/asadmin.adoc#asadmin-1m[`asadmin`], * xref:Technical Documentation/Payara Server Documentation/Command Reference/create-jvm-option.adoc#create-jvm-option[`create-jvm-option`], -* xref:Technical Documentation/Payara Server Documentation/Command Reference/create-profiler.adoc#create-profiler[`create-profiler`], * xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-jvm-options.adoc#delete-jvm-options[`delete-jvm-options`], * xref:Technical Documentation/Payara Server Documentation/Command Reference/list-jvm-options.adoc#list-jvm-options[`list-jvm-options`], * xref:Technical Documentation/Payara Server Documentation/Command Reference/restart-domain.adoc#restart-domain[`restart-domain`] diff --git a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/create-profiler.adoc b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/create-profiler.adoc deleted file mode 100644 index e855323e5..000000000 --- a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/create-profiler.adoc +++ /dev/null @@ -1,90 +0,0 @@ -[[create-profiler]] -= create-profiler - -Creates the profiler element. - -[[synopsis]] -== Synopsis - -[source,shell] ----- -asadmin [asadmin-options] create-profiler [--help] -[--target target_name] -[--classpath classpath] [--nativelibpath native_library_path] [--enabled=true] -[--property(name=value)[:name=value]*] profiler_name ----- - -[[description]] -== Description - -The `create-profiler` subcommand creates the profiler element. A server instance is tied to the profiler by the profiler element in the Java configuration. Only one profiler exists at a time. -If you attempt to create a profiler while one already exists, an error message is displayed. - -For changes to take effect, the server must restarted. - -This subcommand is supported in remote mode only. - -[[options]] -== Options - -asadmin-options:: - Options for the `asadmin` utility. For information about these options, see the xref:Technical Documentation/Payara Server Documentation/Command Reference/asadmin.adoc#asadmin-1m[`asadmin`] help page. -`--help`:: -`-?`:: - Displays the help text for the subcommand. -`--target`:: - This option specifies the target on which you are creating a profiler. Valid values are + - `server`;; - Creates the profiler for the default server instance. This is the default value. - configuration_name;; - Creates the profiler for the named configuration - cluster_name;; - Creates the profiler for every server instance in the cluster - instance_name;; - Creates the profiler for a particular server instance -`--classpath`:: - Java classpath string that specifies the classes needed by the profiler. -`--nativelibpath`:: - This path is automatically constructed to be a concatenation of the - Payara Server installation relative path for its native shared libraries, standard JRE native library path, the shell environment - setting (`LD_LIBRARY_PATH` on UNIX) and any path that may be specified in the profile element. -`--enabled`:: - Profiler is enabled by default. -`--property`:: - Name/value pairs of provider-specific attributes. - -[[operands]] -== Operands - -profiler_name:: - Name of the profiler. - -[[examples]] -== Examples - -*Example 1 Creating a Profiler* - -This example creates a profiler named `sample_profiler`. - -[source,shell] ----- -asadmin> create-profiler --classpath /home/appserver/ ---nativelibpath /u/home/lib --enabled=false ---property defaultuser=admin:password=adminadmin sample_profiler -Created Profiler with id = sample_profiler ----- - -[[exit-status]] -== Exit Status - -0:: - subcommand executed successfully -1:: - error in executing the subcommand - -*See Also* - -* xref:Technical Documentation/Payara Server Documentation/Command Reference/asadmin.adoc#asadmin-1m[`asadmin`], -* xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-profiler.adoc#delete-profiler[`delete-profiler`] - - diff --git a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/delete-jvm-options.adoc b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/delete-jvm-options.adoc index 8c3ca2b5e..40cb7d822 100644 --- a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/delete-jvm-options.adoc +++ b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/delete-jvm-options.adoc @@ -9,14 +9,14 @@ Removes one or more options for the Java application launcher. [source,shell] ---- asadmin [asadmin-options] delete-jvm-options [--help] -[--target target] [--profiler={true|false}] +[--target target] (jvm-option-name[=jvm-option-value]) [:jvm-option-name[=jvm-option-name]]* ---- [[description]] == Description -The `delete-jvm-options` subcommand removes one or more command-line options for the Java application launcher. These options are removed from the Java configuration `java—config` element or the profiler `profiler` element of the `domain.xml` file. To see the Java application launcher options that can be deleted, use the xref:Technical Documentation/Payara Server Documentation/Command Reference/list-jvm-options.adoc#list-jvm-options[`list-jvm-options`] subcommand. +The `delete-jvm-options` subcommand removes one or more command-line options for the Java application launcher. These options are removed from the Java configuration `java—config` element of the `domain.xml` file. To see the Java application launcher options that can be deleted, use the xref:Technical Documentation/Payara Server Documentation/Command Reference/list-jvm-options.adoc#list-jvm-options[`list-jvm-options`] subcommand. The deletion of some options requires a server restart for changes to become effective. Other options are set immediately in the environment of the domain administration server (DAS) and do not require a restart. @@ -57,8 +57,6 @@ asadmin-options:: Specifies a cluster. configuration-name;; Specifies a named configuration. -`--profiler`:: - Indicates whether the Java application launcher options are for the profiler. The option must have been set for a profiler for this option to be true. [[operands]] == Operands @@ -84,15 +82,6 @@ asadmin> delete-jvm-options -Doption1=value1 Command delete-jvm-options executed successfully ---- -*Example 2 Deleting a Java Application Launcher Option From the Profiler* - -This example removes a Java application launcher startup parameter for the profiler. - -[source,shell] ----- -asadmin> delete-jvm-options --profiler=true -XX:MaxPermSize=192m -Command delete-jvm-options executed successfully. ----- [[exit-status]] == Exit Status diff --git a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/delete-profiler.adoc b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/delete-profiler.adoc deleted file mode 100644 index d89056528..000000000 --- a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/delete-profiler.adoc +++ /dev/null @@ -1,70 +0,0 @@ -[[delete-profiler]] -= delete-profiler - -Removes the profiler element. - -[[synopsis]] -== Synopsis - -[source,shell] ----- -asadmin [asadmin-options] delete-profiler [--help] -[--target target_name] ----- - -[[description]] -== Description - -The `delete-profiler` subcommand deletes the profiler element in the Java configuration. Only one profiler can exist at a time. If you -attempt to create a profiler while one already exists, an error message is displayed and the existing profiler must be deleted. - -For changes to take effect, the server must restarted. - -This command is supported in remote mode only. - -[[options]] -== Options - -asadmin-options:: - Options for the `asadmin` utility. For information about these options, see the xref:Technical Documentation/Payara Server Documentation/Command Reference/asadmin.adoc#asadmin-1m[`asadmin`] help page. -`--help`:: -`-?`:: - Displays the help text for the subcommand. -`--target`:: - This option specifies the target profiler element which you are deleting. Valid values are + - `server`;; - Deletes the profiler element for the default server instance `server` and is the default value. - configuration_name;; - Deletes the profiler element for the named configuration. - cluster_name;; - Deletes the profiler element for every server instance in the cluster. - instance_name;; - Deletes the profiler element for a particular server instance. - -[[examples]] -== Examples - -*Example 1 Deleting a Profile* - -This example deletes the profiler named `sample_profiler`. - -[source,shell] ----- -asadmin> delete-profiler sample_profiler -Command delete-profiler executed successfully ----- - -[[exit-status]] -== Exit Status - -0:: - subcommand executed successfully -1:: - error in executing the subcommand - -*See Also* - -* xref:Technical Documentation/Payara Server Documentation/Command Reference/asadmin.adoc#asadmin-1m[`asadmin`], -* xref:Technical Documentation/Payara Server Documentation/Command Reference/create-profiler.adoc#create-profiler[`create-profiler`] - - diff --git a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/list-commands.adoc b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/list-commands.adoc index 82e048c5c..8418dfafd 100644 --- a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/list-commands.adoc +++ b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/list-commands.adoc @@ -158,7 +158,7 @@ create-lifecycle-module list-file-users create-message-security-provider list-http-listeners create-network-listener list-iiop-listeners create-password-alias list-javamail-resources -create-profiler list-jdbc-connection-pools + list-jdbc-connection-pools create-protocol list-jdbc-resources create-resource-adapter-config list-jms-hosts create-resource-ref list-jms-resources diff --git a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/list-jvm-options.adoc b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/list-jvm-options.adoc index 31ca49cca..f7160288e 100644 --- a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/list-jvm-options.adoc +++ b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/Command Reference/list-jvm-options.adoc @@ -9,8 +9,7 @@ Lists options for the Java application launcher. [source,shell] ---- asadmin [asadmin-options] list-jvm-options [--help] -[--target target] -[--profiler={false|true}] +[--target target] ---- [[description]] @@ -41,9 +40,6 @@ asadmin-options:: Specifies a cluster. configuration-name;; Specifies a named configuration. -`--profiler`:: - Specifies whether the Java application launcher options to list are for the profiler. Set this option to true only if a profiler has been - configured. If this option is set to true and no profiler is configured, an error occurs. The default is false. [[examples]] == Examples diff --git a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/General Administration/Administering the Java Virtual Machine.adoc b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/General Administration/Administering the Java Virtual Machine.adoc index e38762e0d..bc238fd0b 100644 --- a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/General Administration/Administering the Java Virtual Machine.adoc +++ b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/General Administration/Administering the Java Virtual Machine.adoc @@ -14,8 +14,7 @@ The commands can be used to configure the JVM settings for Payara Server. [[to-create-jvm-options]] === To Create JVM Options -Use the `create-jvm-options` subcommand in remote mode to create JVM options in the Java configuration or the profiler elements of the `domain.xml` file. -If JVM options are created for a profiler, these options are used to record the settings that initiate the profiler. +Use the `create-jvm-options` subcommand in remote mode to create JVM options in the Java configuration element of the `domain.xml` file. . Ensure that the server is running. Remote subcommands require a running server. . Create JVM options by using the `create-jvm-options` subcommand. To create more than one JVM option, use a colon (:) to separate the options. @@ -79,7 +78,7 @@ You can also view the full syntax and options of the subcommand by typing `asadm [[to-delete-jvm-options]] === To Delete JVM Options -Use the `delete-jvm-options` subcommand in remote mode to delete JVM options from the Java configuration or profiler elements of the `domain.xml` file. +Use the `delete-jvm-options` subcommand in remote mode to delete JVM options from the Java configuration element of the `domain.xml` file. . Ensure that the server is running. Remote subcommands require a running server. . List JVM options by using the `list-jvm-options` subcommand. @@ -226,58 +225,4 @@ Payara\modules\web Command generate-jvm-report executed successfully. ---- -You can also view the full syntax and options of the subcommand by typing `asadmin help generate-jvm-report` at the command line. - -[[administering-the-profiler]] -== Administering the Profiler - -A profiler generates information used to analyze server performance. - -[[to-create-a-profiler]] -=== To Create a Profiler - -A server instance is tied to a particular profiler by the profiler element in the Java configuration. If JVM options are created for a profiler, the options are -used to record the settings needed to activate a particular profiler. Use the `create-profiler` subcommand in remote mode to create the profiler element in the Java -configuration. - -Only one profiler can exist. If a profiler already exists, you receive an error message that directs you to delete the existing profiler before creating a new one. - -. Ensure that the server is running. Remote subcommands require a running server. -. Create a profiler by using the `create-profiler` subcommand. Information about properties for the subcommand is included in this help page. -. To apply your changes, restart Payara Server. - -[[creating-a-profiler-example]] -==== Example 4-6 Creating a Profiler - -This example creates a profiler named `sample_profiler`. - -[source,shell] ----- -asadmin> create-profiler --classpath=/home/appserver/ --nativelibrarypath=/u/home/lib ---enabled=false --property=defaultuser=admin:password=adminadmin sample_profiler -Command create-profiler executed successfully. ----- - -You can also view the full syntax and options of the subcommand by typing `asadmin help create-profiler` at the command line. - -[[to-delete-a-profiler]] -=== To Delete a Profiler - -Use the `delete-profiler` subcommand in remote mode to delete the profiler element from the Java configuration. You can then create a new profiler. - -. Ensure that the server is running. Remote subcommands require a running server. -. Delete the profiler by using the `delete-profiler` subcommand. -. To apply your changes, restart Payara Server. - -[[deleting-a-profiler-example]] -==== *Deleting a Profiler Example* - -This example deletes the previously created profiler named `sample_profiler`. - -[source,shell] ----- -asadmin> delete-profiler -Command delete-profiler executed successfully. ----- - -You can also view the full syntax and options of the subcommand by typing `asadmin help delete-profiler` at the command line. +You can also view the full syntax and options of the subcommand by typing `asadmin help generate-jvm-report` at the command line. \ No newline at end of file diff --git a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/General Administration/Overview.adoc b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/General Administration/Overview.adoc index 14632482f..514131a2d 100644 --- a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/General Administration/Overview.adoc +++ b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/General Administration/Overview.adoc @@ -101,7 +101,7 @@ System Properties:: Domains:: The initial `domain1` is created during installation. Additional configuration tasks might include such tasks as configuring additional domains or setting up automatic restart. See xref:Technical Documentation/Payara Server Documentation/General Administration/Administering Domains.adoc#administering-domains[Administering Domains]. JVM:: - The initial tasks for configuring the JVM include creating JVM options and profilers. + The initial tasks for configuring the JVM include creating JVM options. Logging:: By default, logging is enabled, so basic logging works without additional configuration. However, you might want to change log levels, property values, or the location of log files. See xref:Technical Documentation/Payara Server Documentation/General Administration/Administering the Logging Service.adoc#administering-the-logging-service[Administering the Logging Service]. Monitoring:: diff --git a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/General Administration/Subcommands for the Asadmin CLI.adoc b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/General Administration/Subcommands for the Asadmin CLI.adoc index ad853360f..55fe09c20 100644 --- a/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/General Administration/Subcommands for the Asadmin CLI.adoc +++ b/docs/modules/ROOT/pages/Technical Documentation/Payara Server Documentation/General Administration/Subcommands for the Asadmin CLI.adoc @@ -465,16 +465,10 @@ NOTE: Online help for the `asadmin` subcommands can be invoked on the command li | Subcommands | Description | `create-jvm-options` -|Creates a JVM option in the Java configuration or profiler elements of the `domain.xml` file. Supported in remote mode only. For procedural information in this guide, see xref:Technical Documentation/Payara Server Documentation/General Administration/Administering the Java Virtual Machine.adoc#to-create-jvm-options[To Create JVM Options]. - -| `create-profiler` -| Creates a profiler element. Supported in remote mode only. For procedural information in this guide, see xref:Technical Documentation/Payara Server Documentation/General Administration/Administering the Java Virtual Machine.adoc#to-create-a-profiler[To Create a Profiler]. +|Creates a JVM option in the Java configuration element of the `domain.xml` file. Supported in remote mode only. For procedural information in this guide, see xref:Technical Documentation/Payara Server Documentation/General Administration/Administering the Java Virtual Machine.adoc#to-create-jvm-options[To Create JVM Options]. | `delete-jvm-options` -| Deletes the specified JVM option from the Java configuration or profiler elements of the `domain.xml` file. Supported in remote mode only. For procedural information in this guide, see xref:Technical Documentation/Payara Server Documentation/General Administration/Administering the Java Virtual Machine.adoc#to-delete-jvm-options[To Delete JVM Options]. - -| `delete-profiler` -| Deletes the specified profiler element. Supported in remote mode only. For procedural information in this guide, see xref:Technical Documentation/Payara Server Documentation/General Administration/Administering the Java Virtual Machine.adoc#to-delete-a-profiler[To Delete a Profiler]. +| Deletes the specified JVM option from the Java configuration element of the `domain.xml` file. Supported in remote mode only. For procedural information in this guide, see xref:Technical Documentation/Payara Server Documentation/General Administration/Administering the Java Virtual Machine.adoc#to-delete-jvm-options[To Delete JVM Options]. | `generate-jvm-report` | Generates a report showing the threads, classes, and memory for the virtual machine that runs Payara Server. For procedural information in this guide, see xref:Technical Documentation/Payara Server Documentation/General Administration/Administering the Java Virtual Machine.adoc#to-generate-a-jvm-report[To Generate a JVM Report]. diff --git a/enterprise/docs/modules/ROOT/nav.adoc b/enterprise/docs/modules/ROOT/nav.adoc index d059a8a2d..56f11d30c 100644 --- a/enterprise/docs/modules/ROOT/nav.adoc +++ b/enterprise/docs/modules/ROOT/nav.adoc @@ -150,7 +150,6 @@ *** xref:Technical Documentation/Payara Server Documentation/Command Reference/create-node-docker.adoc[create-node-docker] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/create-node-ssh.adoc[create-node-ssh] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/create-password-alias.adoc[create-password-alias] -*** xref:Technical Documentation/Payara Server Documentation/Command Reference/create-profiler.adoc[create-profiler] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/create-protocol-filter.adoc[create-protocol-filter] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/create-protocol-finder.adoc[create-protocol-finder] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/create-protocol.adoc[create-protocol] @@ -211,7 +210,6 @@ *** xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-node-docker.adoc[delete-node-docker] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-node-ssh.adoc[delete-node-ssh] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-password-alias.adoc[delete-password-alias] -*** xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-profiler.adoc[delete-profiler] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-protocol-filter.adoc[delete-protocol-filter] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-protocol-finder.adoc[delete-protocol-finder] *** xref:Technical Documentation/Payara Server Documentation/Command Reference/delete-protocol.adoc[delete-protocol]