xserver

XVFB on Jenkins connecting to wrong display. Display shows black screen

淺唱寂寞╮ 提交于 2020-11-29 21:33:07
问题 I am trying to execute headless chrome Selenium tests via Jenkins using XVFB on UBUNTU AWS/VM. My Jenkins XVFB config is: Pre-build Execute Shell: export DISPLAY=:98 x11vnc -xkb -noxrecord -noxfixes -noxdamage -display :98 -auth /var/run/lightdm/root/:0 -rfbport 5900 When build starts, I see: Xvfb starting$ /usr/bin/Xvfb :98 -screen 0 1024x768x24 -fbdir /var/lib/jenkins/xvfb-82-..fbdir10942188934689457655 [Jenkins-Headless] $ /bin/sh -xe /tmp/jenkins11502774511620101086.sh + export DISPLAY=

XVFB on Jenkins connecting to wrong display. Display shows black screen

↘锁芯ラ 提交于 2020-11-29 21:31:09
问题 I am trying to execute headless chrome Selenium tests via Jenkins using XVFB on UBUNTU AWS/VM. My Jenkins XVFB config is: Pre-build Execute Shell: export DISPLAY=:98 x11vnc -xkb -noxrecord -noxfixes -noxdamage -display :98 -auth /var/run/lightdm/root/:0 -rfbport 5900 When build starts, I see: Xvfb starting$ /usr/bin/Xvfb :98 -screen 0 1024x768x24 -fbdir /var/lib/jenkins/xvfb-82-..fbdir10942188934689457655 [Jenkins-Headless] $ /bin/sh -xe /tmp/jenkins11502774511620101086.sh + export DISPLAY=

XVFB on Jenkins connecting to wrong display. Display shows black screen

放肆的年华 提交于 2020-11-29 21:28:31
问题 I am trying to execute headless chrome Selenium tests via Jenkins using XVFB on UBUNTU AWS/VM. My Jenkins XVFB config is: Pre-build Execute Shell: export DISPLAY=:98 x11vnc -xkb -noxrecord -noxfixes -noxdamage -display :98 -auth /var/run/lightdm/root/:0 -rfbport 5900 When build starts, I see: Xvfb starting$ /usr/bin/Xvfb :98 -screen 0 1024x768x24 -fbdir /var/lib/jenkins/xvfb-82-..fbdir10942188934689457655 [Jenkins-Headless] $ /bin/sh -xe /tmp/jenkins11502774511620101086.sh + export DISPLAY=

A /dev/null equivilent for DISPLAY when the display is just noise

流过昼夜 提交于 2020-07-04 08:30:32
问题 I'm running a java app which creates a visual display of some of the things it is doing, while it is doing it. However, I'm want to run this in a script that won't have a display to attach to. In the current environment, there isn't even a DISPLAY environment variable set. I tried to simply set my DISPLAY to :0.0. But that doesn't exist. I don't really care about the display. I just want the app to process the files silently. Since I can't just turn the display off(not my app), I'm left with

A /dev/null equivilent for DISPLAY when the display is just noise

梦想的初衷 提交于 2020-07-04 08:30:19
问题 I'm running a java app which creates a visual display of some of the things it is doing, while it is doing it. However, I'm want to run this in a script that won't have a display to attach to. In the current environment, there isn't even a DISPLAY environment variable set. I tried to simply set my DISPLAY to :0.0. But that doesn't exist. I don't really care about the display. I just want the app to process the files silently. Since I can't just turn the display off(not my app), I'm left with