- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- background start of Xwin app
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2002 03:41 AM
08-08-2002 03:41 AM
I have an Xwindow application and want to start in as a background process. The problem is that the application requires an X server to run to display its output.
So, the application stops as it detects that no DISPLAY is set, or set to unexistent Xserver.
I want to start my application and don't need access to it interactively.
Do anybody know how to manage this problem?
May be software exists that emulate Xserver...
Any solution
Thanks in advance
Victor
PS. the application is Lotus Notes client 4.6.7 on HPUX 11.00
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2002 04:05 AM
08-08-2002 04:05 AM
SolutionYou need xvfb
Yes it is supported. On either platform add the latest X server patch for
11.00 that is PHSS_25277, and for 11i PHSS_25263. Start at "man Xserver" and
dig down for information. You will notice that HP now ships two complete X
servers, the HP proprietry one and an HP customised version of XFree86 in
addition to Xvfb. You should also note that prior to adding separate
binaries for Xvfb and Xf86 a virtual frame buffer mode was added to the
existing proprietry implementation Xhp, so also look at "man Xhp" and search
for "XVFB". Most of the above is very new so it probably a case of playing
with what is supplied and seeing what works best for you, VFB in the HP X
server arrived around June last year and the XFree86 and separate Xvfb
things have only been available for a couple of months.
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2002 04:08 AM
08-08-2002 04:08 AM
Re: background start of Xwin app
1. Leave an HP workstation logged into X and xhost + run so our app could talk to it for logging (No-one allowed to use the workstation)
2. Then we bought an X Display card for our 800 (K class) and again logged into X when it boots and run xhost + so our app can talk to it.
3. Now were thinking of replacing it with a dumb linux PC which we stick in a corner, log into X on it, run xhost + so our app can talk to that!
We never found a way to trick X so that our app would run without actually talking to an X display running somewhere.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2002 04:10 AM
08-08-2002 04:10 AM
Re: background start of Xwin app
Once you have an Xwindow server running on your display system, use telnet to login to the application box, then set the DISPLAY variable to your display system's IP address followed by :0 as in:
export DISPLAY=12.34.56.78:0
Then run Lotus. Start by running Lotus in the foreground (don't use & at the end) so you can check how the program is doing. Once it is working, you can terminate the program and restart it with something like:
export DISPLAY=12.34.56.78:0
lotus-program &
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 01:32 AM
08-13-2002 01:32 AM
Re: background start of Xwin app
Try export DISPLAY=127.0.0.1
Thsi may trick xwindows but maybe not!