I am trying to use thumbnails, and I get the message: "This Confluence installation can not generate thumbnails: no image support in Java runtime"
On some Java installations (i.e. Unix without X11), you need to pass an additional parameter to Java when you are starting up to tell it how to use its image-manipulation libraries - to run in a headless mode, thus appending -Djava.awt.headless=true option. Getting thumbnail support working in this configuration depends on your application server. You can learn more about Headless Mode here.
As a Windows Service:
Confluence install\bin directory
tomcat5 //US//Confluence ++JvmOptions="-Djava.awt.headless=true"On Windows:
Confluence install\bin\setenv.bat
set JAVA_OPTS line by appending -Djava.awt.headless=true, for example set JAVA_OPTS=%JAVA_OPTS% -Xms128m -Xmx256m -Djava.awt.headless=trueOn Linux:
Confluence install\bin\setenv.sh and add the '-Djava.awt.headless=true' parameter. For example JAVA_OPTS="-Xms128m -Xmx256m $JAVA_OPTS -Djava.awt.headless=true "
xorg-x11-deprecated-libs package. (See: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=130239)For other application servers, you will need to append the java.awt.headless=true parameter to the JAVA_OPTS. If you need help with a particular server, please lodge a support request.