How to fix out of memory errors by increasing available memory

Still need help?

The Atlassian Community is here for you.

Ask the community

Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Purpose

Java applications like JIRA, Crowd and Confluence run in a "Java virtual machine" (JVM), instead of directly within an operating system. When started, the Java virtual machine is allocated a certain amount of memory, which it makes available to applications like Confluence. By default, Java virtual machines are allocated 64Mb of memory, no matter how many gigabytes of memory your server may actually have available. 64Mb is inadequate for most Confluence installations, and so this needs to be increased.

Diagnosis

Click here to expand...

Determine type of error message

Look in the atlassian-confluence.log to see which type of OutOfMemory Error you're receiving. There are three common messages:

  1. Heap Space
  2. Perm Gen Space
  3. GC Overhead
tip/resting Created with Sketch.

This document discusses increasing memory to address PermGen and Heap space errors. Follow the links above to assess root causes for each issue.

For GC Overhead, refer to Confluence Crashes Due to 'java.lang.OutOfMemoryError GC overhead limit exceeded'.

Determine Confluence's usage patterns

In Confluence, go to Confluence Administration > System Information, and look at the memory graph during times of peak usage:

This server has been allocated a maximum of 650Mb and a minimum of 256m. You can see the minimum displayed here; if you're trying to see whether your settings are being picked up, this is where to look.

Determine available system memory

On Windows

From the Close Programs Dialogue (Press ctrl-alt-delete), select the Performance tab:

The amount marked Available is the amount in kilobytes you have free to allocate to Confluence. On this server we should allocate at most 214Mb.

On Linux

Run

cat /proc/meminfo 

to view the memory usage.

Setting the -Xmx above the available amount on the server runs the risk of OutOfMemoryErrors due to lack of physical memory. If that occurs the system will use swap space, which greatly decreases performance.

Guidance

The default values supplied with Confluence stand-alone are sufficient for most installations. Please refer to Managing Application Server Memory Settings and Server Hardware Requirements Guide for a discussion.

Solution

Step 1: Increase Available Memory

We aren't really able to give a concrete recommendation for the amount of memory to allocate, because that will depend greatly on your server setup, the size of your user base, and their behavior. You will need to find a value that works for you, i.e. no noticeable GC pauses, and no OutOfMemory errors.

For reference, the 3 most common parameters used to change the memory (heap) allocation are:

  • Xms - the minimum size of the heap
  • Xmx - the maximum size of the heap
  • -XX:MaxPermSize - the maximum size of PermGen (this is not used in Java 8 and above)

    In case you need advice regarding how much memory you should use please check this page for some examples of hardware specifications.

If you do decide to increase the memory settings, there are a few general guidelines to follow:

  • Increase Xmx in small increments (eg 512mb at a time), until you no longer experience the OutOfMemory error. This is because increasing the heap beyond the capabilities of your server to adequately Garbage Collect can cause other problems (eg performance/freezing)
  • If your error is java . lang . OutOfMemoryError : PermGen space, increase the -XX:MaxPermSize parameter in 256mb increments until the error stops occurring.

  • If your error does not reference PermGen, there is no need to increase it. In a simplistic explanation, PermGen is used to store classes, and is generally quite static in size, and has been removed in Java 8. More info here.
  • Consider setting Xms and Xmx to the same value, as this can decrease the time GC takes to occur, as it will not attempt to resize the heap down on each collection.
tip/resting Created with Sketch.

See our Garbage Collection (GC) Tuning Guide for more detailed information.

  • It is possible to set the Xms and Xms values in either a gigabyte or megabyte format.

When setting these values in megabytes, set the value by multiplying the desired memory level by 1024. For example, to set the memory at 2 gigabytes, configure the Xms and Xmx to 2048m (2GB x 1024MB):

-Xms2048m -Xmx2048m

For the same example using gigabytes, simply use the following:

-Xms2g -Xmx2g

(warning) When setting the value in gigabytes, do not use .5 increments as this will cause the JVM to not start properly.

Linux


Click here to expand...

To increase heap or perm gen space memory in Linux installations,

  1. Shutdown Confluence
  2. Edit <confluence-install>/bin/setenv.sh
  3. Find the section
  • CATALINA_OPTS="-Xms1024m -Xmx1024m ${CATALINA_OPTS}" in Confluence 7.12 or above
  • CATALINA_OPTS="-Xms1024m -Xmx1024m -XX:+UseG1GC $CATALINA_OPTS" in Confluence 5.8 or above
  • CATALINA_OPTS="$CATALINA_OPTS -Xms1024m -Xmx1024m -XX:MaxPermSize=256m -XX:+UseG1GC" in Confluence 5.6 or 5.7
  • JAVA_OPTS="-Xms256m -Xmx512m -XX:MaxPermSize=256m in previous versions
  1. See Diagnosis above and enter the appropriate values. Xmx is maximum, Xms is minimum, and MaxPermSize is PermGen.
  2. Start Confluence


Windows (starting from .bat file)


Click here to expand...

If you start Confluence as a Service on Windows, then you should not use these instructions. Instead, refer to the "Windows Service" section below.

You should only follow these instructions if you are starting Confluence via the batch file. The batch file is not used when Confluence is started as a Service.

To Configure System Properties in Windows Installations When Starting from the .bat File,

  1. Shutdown Confluence
  2. Edit <confluence-install>\bin\setenv.bat
  3. Find the section
    • CATALINA_OPTS=-Xms1024m -Xmx1024m %CATALINA_OPTS% in Confluence 7.12 or above
    • CATALINA_OPTS=-Xms1024m -Xmx1024m -XX:+UseG1GC %CATALINA_OPTS% in Confluence 5.8 or above
    • CATALINA_OPTS=-Xms1024m -Xmx1024m -XX:MaxPermSize=256m -XX:+UseG1GC %CATALINA_OPTS% in Confluence 5.6 or 5.7
    • JAVA_OPTS=-Xms256m -Xmx512m -XX:MaxPermSize=256m in previous versions
  4. See Diagnosis above and enter the appropriate values. Xmx is maximum, Xms is minimum, and MaxPermSize is PermGen.
  5. Start Confluence


Windows Service


Click here to expand...

There are two ways to configure system properties if you Start Confluence Automatically on Windows as a Service - either via command line or in the Windows Registry

Setting Properties for Windows Services via Command Line

Setting Properties for Windows Services via Command Line

  1. Identify the name of the service that Confluence is installed as in Windows ( Control Panel > Administrative Tools > Services ):

    (info) In the above example, the SERVICENAME is: JIRA030908110721 (this is a JIRA screenshot, but the same applies to Confluence)
  2. Open the command window from Start >> Run >> type in 'cmd' >> Enter
  3. cd to the bin directory of your Confluence instance
  4. Run (for Tomcat 9, change as necessary for earlier versions):

    tomcat9w //ES//<Your_Service_Name>
    

    .
    (info) If you are under confluence 5.5, it would be tomcat6w //ES//JIRA030908110721 instead of tomcat8w (this is a JIRA screenshot, but the same applies to Confluence)

  5. Click on the Java tab to see the list of current start-up options:
  6. Set the maximum memory allocation here 
  7. Restart the service

Setting Properties for Windows Services via the Windows Registry

In some versions of Windows, there is no option to add Java variables to the service. In these cases, you must add the properties by viewing the option list in the registry.

To Set Properties for Windows Services via the Windows Registry,

  1. Go to Start >> Run, and run "regedit32.exe"
  2. Find the Services entry:
    32-bit: HKEY_LOCAL_MACHINE >> SOFTWARE >> Apache Software Foundation >> Procrun 2.0 >> Confluence
    64-bit: HKEY_LOCAL_MACHINE >> SOFTWARE >> Wow6432Node >> Apache Software Foundation >> Procrun 2.0 >> Confluence
  3. To change existing properties, especially increasing Xmx memory, double-click the appropriate value.
  4. To change additional properties, double-click options. Note: Make sure to add only one argument per line.
  5. Modify the memory allocations here (i.e. -XX:MaxPermSize=512m).


Step 2: Verify Your Settings

To verify what settings are in place, check Viewing System Information. You should see a section called "Java Runtime Arguments".

Look for Xmx (maximum) and Xms (minimum) settings.


Alternatively, on Linux, run

ps -aux | grep java

to see the environment parameters.

Last modified on Jul 19, 2023

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.