From 926a02af3879c231aff7547727426832a6c31da6 Mon Sep 17 00:00:00 2001 From: Axel Sanguinetti Date: Fri, 20 Sep 2024 12:51:35 -0300 Subject: [PATCH 1/5] W-16722425: Updating section about modifying wrapper properties --- .../ROOT/pages/runtime-installation-task.adoc | 25 +++++-------------- 1 file changed, 6 insertions(+), 19 deletions(-) diff --git a/modules/ROOT/pages/runtime-installation-task.adoc b/modules/ROOT/pages/runtime-installation-task.adoc index 6d44609068..0f7f70fb69 100644 --- a/modules/ROOT/pages/runtime-installation-task.adoc +++ b/modules/ROOT/pages/runtime-installation-task.adoc @@ -84,28 +84,15 @@ $ $MULE_HOME/bin/mule install == Configure Properties in the wrapper.conf File -After installing Mule as a Windows service, you can override the properties defined in the `wrapper.conf` file by declaring new properties in the `wrapper.additional.conf` file. +After installing Mule as a service/daemon, you can modify the properties defined in the `wrapper.conf` file. -The configuration steps change depending on the Mule edition you are using: +Consult https://wrapper.tanukisoftware.com/doc/english/properties.html for details about what you can do with the configuration file. -* Mule Community Edition -+ -. After adding a new property, reinstall or restart the Windows service. -. Add the property, ensuring that its index is higher than the highest index in the `wrapper-additional.conf` file so that your property cannot be overridden. -+ -For example, imagine that `wrapper-additional.conf` has the following property: -+ -`wrapper.java.additional.n=-Dproperty=value` -+ -If `n` is the highest index, you would add your property in the `wrapper.conf` file and increment the index, as follows: -+ -`wrapper.java.additional.n+1=-DyourProperty=valueOfYourProperty` +After making modifications to the `wrapper.conf` file, restart Mule to allow the changes to take effect. -* Mule Enterprise Edition -+ -After you install Mule as a service, configure up to 20 additional properties using the following command-line argument: -+ -`-additionalJavaProperties=numberOfExtraProperties` +NOTE: When adding new properties, make sure there are no other properties using the same sequence number already (you do not need to worry about the ones in `wrapper-additional.conf`, those will be adjusted upon restart). + +NOTE: Do not modify the `wrapper-additional.conf` file. That file is automatically generated by Mule. == Configure CPU Affinity From 930e0cc0e55f41a9bcf174b1f725774da247253e Mon Sep 17 00:00:00 2001 From: Axel Sanguinetti Date: Fri, 20 Sep 2024 16:26:24 -0300 Subject: [PATCH 2/5] Apply suggestions from code review Co-authored-by: Daniela Merlo <97902112+dmerlob@users.noreply.github.com> --- modules/ROOT/pages/runtime-installation-task.adoc | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/modules/ROOT/pages/runtime-installation-task.adoc b/modules/ROOT/pages/runtime-installation-task.adoc index 0f7f70fb69..6f1a258187 100644 --- a/modules/ROOT/pages/runtime-installation-task.adoc +++ b/modules/ROOT/pages/runtime-installation-task.adoc @@ -86,13 +86,16 @@ $ $MULE_HOME/bin/mule install After installing Mule as a service/daemon, you can modify the properties defined in the `wrapper.conf` file. -Consult https://wrapper.tanukisoftware.com/doc/english/properties.html for details about what you can do with the configuration file. +For details on what you can do with the configuration file, see https://wrapper.tanukisoftware.com/doc/english/properties.html. -After making modifications to the `wrapper.conf` file, restart Mule to allow the changes to take effect. +After modifying the `wrapper.conf` file, restart your Mule instance to enable the changes. -NOTE: When adding new properties, make sure there are no other properties using the same sequence number already (you do not need to worry about the ones in `wrapper-additional.conf`, those will be adjusted upon restart). +[NOTE] +==== +When you add new properties, ensure that no other properties already use the same sequence number (don't worry about the ones in `wrapper-additional.conf`, as Mule adjusts those upon restart). + -NOTE: Do not modify the `wrapper-additional.conf` file. That file is automatically generated by Mule. +Don't modify the `wrapper-additional.conf` file, as Mule automatically generates this file. +==== == Configure CPU Affinity From b690b1276871e820f0edfc71730b2c2a956f23d6 Mon Sep 17 00:00:00 2001 From: Daniela Merlo <97902112+dmerlob@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:37:22 -0300 Subject: [PATCH 3/5] Update modules/ROOT/pages/runtime-installation-task.adoc --- modules/ROOT/pages/runtime-installation-task.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/runtime-installation-task.adoc b/modules/ROOT/pages/runtime-installation-task.adoc index 6f1a258187..e1dfe4ec49 100644 --- a/modules/ROOT/pages/runtime-installation-task.adoc +++ b/modules/ROOT/pages/runtime-installation-task.adoc @@ -84,7 +84,7 @@ $ $MULE_HOME/bin/mule install == Configure Properties in the wrapper.conf File -After installing Mule as a service/daemon, you can modify the properties defined in the `wrapper.conf` file. +After installing Mule as a service or as a daemon, you can modify the properties defined in the `wrapper.conf` file. For details on what you can do with the configuration file, see https://wrapper.tanukisoftware.com/doc/english/properties.html. From c269e3b36f421986b86d6eeb4a807ac7bae36866 Mon Sep 17 00:00:00 2001 From: Daniela Merlo <97902112+dmerlob@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:51:58 -0300 Subject: [PATCH 4/5] Update modules/ROOT/pages/runtime-installation-task.adoc --- modules/ROOT/pages/runtime-installation-task.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/runtime-installation-task.adoc b/modules/ROOT/pages/runtime-installation-task.adoc index e1dfe4ec49..9ddfcad8d1 100644 --- a/modules/ROOT/pages/runtime-installation-task.adoc +++ b/modules/ROOT/pages/runtime-installation-task.adoc @@ -92,7 +92,7 @@ After modifying the `wrapper.conf` file, restart your Mule instance to enable th [NOTE] ==== -When you add new properties, ensure that no other properties already use the same sequence number (don't worry about the ones in `wrapper-additional.conf`, as Mule adjusts those upon restart). + +When you add new properties, ensure that no other properties already use the same sequence number (don't worry about the ones in `wrapper-additional.conf`, as Mule adjusts those upon restart). Don't modify the `wrapper-additional.conf` file, as Mule automatically generates this file. ==== From 1d3ac409abd53443e2194f05a5337febddc43d22 Mon Sep 17 00:00:00 2001 From: Daniela Merlo <97902112+dmerlob@users.noreply.github.com> Date: Mon, 23 Sep 2024 17:14:17 -0300 Subject: [PATCH 5/5] Update modules/ROOT/pages/runtime-installation-task.adoc --- modules/ROOT/pages/runtime-installation-task.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/runtime-installation-task.adoc b/modules/ROOT/pages/runtime-installation-task.adoc index 9ddfcad8d1..c992b07427 100644 --- a/modules/ROOT/pages/runtime-installation-task.adoc +++ b/modules/ROOT/pages/runtime-installation-task.adoc @@ -86,7 +86,7 @@ $ $MULE_HOME/bin/mule install After installing Mule as a service or as a daemon, you can modify the properties defined in the `wrapper.conf` file. -For details on what you can do with the configuration file, see https://wrapper.tanukisoftware.com/doc/english/properties.html. +For details about what you can do with the configuration file, see https://wrapper.tanukisoftware.com/doc/english/properties.html[Configuration Property Overview]. After modifying the `wrapper.conf` file, restart your Mule instance to enable the changes.