Commit 0c09a702 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Minor tweaks.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3718 b35dd754-fafc-0310-a699-88a17e54d16e
parent 86814abb
...@@ -159,12 +159,17 @@ as described above to control the server rather than the graphical launcher.</p> ...@@ -159,12 +159,17 @@ as described above to control the server rather than the graphical launcher.</p>
<h3>Custom Parameters</h3> <h3>Custom Parameters</h3>
<p>Advanced users may wish to pass in parameters to the Java virtual machine (VM) to customize the runtime environment of Wildfire. You can do this by creating vmoptions files in the bin/ directory of your Wildfire installation. For the Windows service, you'd create a new text file called wildfire-service.exe.vmoptions. Each parameter to the VM should be on a new line of the file. For example, to set the minimum and max VM heap size to 256 MB, you'd use: <p>Advanced users may wish to pass in parameters to the Java virtual machine (VM) to customize
the runtime environment of Wildfire. You can do this by creating vmoptions files in the bin/
directory of your Wildfire installation. For the Windows service, you'd create a new text
file called wildfire-service.vmoptions. Each parameter to the VM should be on a new line of
the file. For example, to set the minimum heap size to 512 MB and max VM heap size to 1024 MB, you'd use:
<pre>-Xms256m <pre>-Xms512m
-Xmx256m</pre> -Xmx1024m</pre>
To create parameters for the normal launcher, create a file called wildfired.exe.vmoptions (since the wildfire.exe launcher invokes the wildfired.exe executable to actually start the server).</p> To create parameters for the normal launcher, create a file called wildfired.vmoptions (since
the wildfire.exe launcher invokes the wildfired.exe executable to actually start the server).</p>
<h2><a name="unix">Running Wildfire in Linux/Unix</a></h2> <h2><a name="unix">Running Wildfire in Linux/Unix</a></h2>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment