vote up 3 vote down star
2

I have a Java program using AWT which I would like to run on a headless system. The display for the program does nothing other than display stats. When the program finishes, it exits. There is no user interaction on the display. The program creates an output file which I use in my build system.

Is there a way to get the Java program to run without an X11 display configured? Can I force Java to run the program without trying to display anything? I do not have access to the source code (it is just .jar file), so I can't make modifications to the source.

Any thoughts on how I could get this to work?

flag

6 Answers

vote up 7 vote down check

Xvfb can do what you ask for. I've not used it myself, but here is a link to wikipedia: http://en.wikipedia.org/wiki/Xvfb

link|flag
I used it once to run a headless openoffice, it works like a charm – Olivier Jan 30 at 11:03
Hhhm, the java -Djava.awt.headless=true solution proposed below makes far more sense than installing some 3rd party software. – stephen mulcahy Jan 30 at 11:40
Yeah, if that works it seems like a much better idea. – Peter B. Bock Jan 30 at 15:22
Xvfb is hardly 3rd party software - it's part of a standard X11 distribution. – unknown (google) Jan 31 at 2:26
vote up 3 vote down

Could also run Xvnc in a low resolution and color depth.

link|flag
Stupid downvote. Xvnc works out to be approximagely equal to Xvfb only you can connect to it if you finally end up needing to for debugging. – Joshua Jan 30 at 4:39
vote up 7 vote down

You can use a vncserver.

vncserver -display :1001 export DISPLAY=localhost:1001 java..

The added advantages is that you can actually view the gui using vncserver 'just in case'

link|flag
vote up 14 vote down

The underlying question here is how to run Java applications without an X server; providing a "fake" X server is only one option. In Java 1.4 and up, you can do the following:

java -Djava.awt.headless=true

This allows applications which use AWT to run on headless systems even without an X server.

link|flag
This looks like the best solution – hhafez Jan 31 at 2:13
vote up 0 vote down

I've used with great success in the past the PJA libraries, they don't seem to be maintained anymore, but then again, just just want to run...

link|flag
vote up 0 vote down

As mentioned by Charles Duffy the traditional method is to tell Java to go headless.

Note that you can always mount the jar in Eclipse and use jad+jadclipse to see what it actually does, and perhaps even override a class if you need to by putting another class-file in "front" of it in the classpath.

A facility that might be relevant if the program uses Java2D is that newer Java versions use optimizations in the X11 server to render faster. This alone might be a reason to devote an X11 server attached to a high performance graphics card to your graphics processing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.