[java] Getting a HeadlessException: No X11 DISPLAY variable was set

Problem statement – Getting java.awt.HeadlessException while trying to initialize java.awt.Component from the application as the tomcat environment does not have any head(terminal).

Issue – The linux virtual environment was setup without a virtual display terminal. Tried to install virtual display – Xvfb, but Xvfb has been taken off by the redhat community.

Solution – Installed β€˜xorg-x11-drv-vmware.x86_64’ using yum install xorg-x11-drv-vmware.x86_64 and executed startx. Finally set the display to :0.0 using export DISPLAY=:0.0 and then executed xhost +

Examples related to java

β€’ Under what circumstances can I call findViewById with an Options Menu / Action Bar item? β€’ How much should a function trust another function β€’ How to implement a simple scenario the OO way β€’ Two constructors β€’ How do I get some variable from another class in Java? β€’ this in equals method β€’ How to split a string in two and store it in a field β€’ How to do perspective fixing? β€’ String index out of range: 4 β€’ My eclipse won't open, i download the bundle pack it keeps saying error log

Examples related to swing

β€’ Calling another method java GUI β€’ Read input from a JOptionPane.showInputDialog box β€’ Call japplet from jframe β€’ Java JTable getting the data of the selected row β€’ What does .pack() do? β€’ How to add row of data to Jtable from values received from jtextfield and comboboxes β€’ How can I check that JButton is pressed? If the isEnable() is not work? β€’ Load arrayList data into JTable β€’ How to draw a circle with given X and Y coordinates as the middle spot of the circle? β€’ Simplest way to set image as JPanel background

Examples related to awt

β€’ How can I check that JButton is pressed? If the isEnable() is not work? β€’ How to Change Font Size in drawString Java β€’ Font.createFont(..) set color and size (java.awt.Font) β€’ Triangle Draw Method β€’ How to use KeyListener β€’ Drawing in Java using Canvas β€’ Java GUI frameworks. What to choose? Swing, SWT, AWT, SwingX, JGoodies, JavaFX, Apache Pivot? β€’ Create GUI using Eclipse (Java) β€’ Getting a HeadlessException: No X11 DISPLAY variable was set β€’ Setting background color for a JFrame