- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- unable to open DISPLAY, xhost+
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
01-13-2008 11:55 PM
01-13-2008 11:55 PM
unable to open DISPLAY, xhost+
I want to run Oracle. For which I've to the Display Variable. Tried Giving
1. export DISPLAY=:0.0; xhost +
2. export DISPLAY=IP addr:0.0; xhost +
nothing worked for me?? Is there anything that need to be configured.
Also, Not able to login from Humming bird .
thanks,
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2008 12:41 AM
01-14-2008 12:41 AM
Re: unable to open DISPLAY, xhost+
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2008 02:27 AM
01-14-2008 02:27 AM
Re: unable to open DISPLAY, xhost+
->Start Humming bird software.
->Telnet to the HPUX box and login.
->export DISPLAY=
Regards,
Asif Sharif
Asif Sharif
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2008 04:43 PM
01-14-2008 04:43 PM
Re: unable to open DISPLAY, xhost+
which Xserver are you using?is that Xvfb?Could you post the /etc/rc.config.d/xvfb
is your application as well as the Xserver configured on the same host?
Could u check how your system responds to
#export DISPLAY=hostname:15.0
#xset -q
#xhost +
Also post "netstat -an|grep LISTEN|grep :60"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2008 08:44 PM
01-14-2008 08:44 PM
Re: unable to open DISPLAY, xhost+
Check the file permissions of below mentioned files
/etc/resolv.conf
/etc/nsswitch.conf
/etc/hosts
and
use below mentioned script to start xvfb.
#!/usr/bin/ksh
XPath=/usr/bin/X11
XVFB=/usr/bin/X11/Xvfb
export XPath XVFB
case $1 in
'start')
DISPLAY=`hostname`:5.0;export DISPLAY
nohup $XVFB :5 -screen 0 1024x768x8 &
nohup $XPath/xhost + &
nohup $XPath/mwm &
;;
'stop')
XVFBPid=`ps -ef |grep $XVFB|grep -v grep|awk '{print $2}'`
# echo $XVFBPid
if [ "X$XVFBPid" != "X" ]; then
echo "Killing $XVFBPid"
/bin/kill $XVFBPid
fi
;;
*)
echo "usage: $0 {start|stop}"
exit 1
;;
esac
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2008 03:11 AM
01-15-2008 03:11 AM