- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: problem in opening reflection X
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
05-28-2005 09:13 PM
05-28-2005 09:13 PM
problem in opening reflection X
i have a problem that is very strange, i used to connect with reflection X to my HPUX machine, lately i strted to get this error mesg, can someone tell me what to check and how to solve this ?
i also noticed that when i copy the .profile file from any normal user and put it for the root the problem is resolved but few couple of logins and i start getting the same error again
please help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2005 09:45 PM
05-28-2005 09:45 PM
Re: problem in opening reflection X
It do not seems to be corelated to .profile. Morover it seems to be a networking/name resolution issue.What are you using for name resolution DNS/NIS ?? Can you attach /etc/resolv.conf.
Also do you find any differences in the two .profiles.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2005 09:55 PM
05-28-2005 09:55 PM
Re: problem in opening reflection X
and i cannot find a resolv.conf file on my machine, is this right ?
thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2005 07:45 AM
05-29-2005 07:45 AM
Re: problem in opening reflection X
Are you connected to the HPUX server with a pc ?
Is it running dhcp? Could it be that your pc ip is changed?
Check if your HP server can find both name and ip of your pc.
# nslookup ip_address_pc
# nslookup host_name_pc
Hope this helps,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2005 10:03 AM
05-29-2005 10:03 AM
Re: problem in opening reflection X
i discovered this, i try to run a script on the machine listed below, when i stopped this script restarted the X server things worked fine, can someone help me tell me what is this script doing to my X server and why it makes me unable to login and get this error, and how to modify the script to avoid this.
thanks in advance
#!/sbin/sh -p
# run ovw on the background for jovw access
# List of maps to open
maps="default" #mapnames are default and ncbservers
#exec > /tmp/tmp.log 2>&1
export DISPLAY=:12
# Start Xvfb on $DISPLAY
/usr/bin/X11/Xvfb $DISPLAY &
xvfb=$!
sleep 2
# Start ovw in readonly mode
for i in $maps
do
/opt/OV/bin/ovw -ro -map $i &
echo $i
ovw="$! $ovw"
done
trap "kill -9 $ovw;sleep 3;kill -9 $xvfb" 2
trap "kill -9 $ovw;sleep 3;kill -9 $xvfb" 15
#trap
#echo xvfb=$xvfb, ovw=$ovw
wait $xvfb