- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: VNC problem on HPUNIX
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-2003 06:03 AM
05-28-2003 06:03 AM
VNC problem on HPUNIX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2003 05:42 AM
05-28-2003 05:42 AM
Re: VNC problem on HPUNIX
First check if your script is executable.
Could you post the name you use in /sbin/rc3.d S???vnc
And if possible add your startup script.
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2003 05:46 AM
05-28-2003 05:46 AM
Re: VNC problem on HPUNIX
It is a well known issue. When your script is started by the rc, there is no pb, but as soon as the script finished, the shell vanished, and your vncserver receive a beautifull kill signal. If you want to avoid this you should start your vncserver by using the nohup command:
nohup vncserver -option_you_want > /var/adm/vncserver.log 2>&1 &
Cheers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2003 05:55 AM
05-28-2003 05:55 AM
Re: VNC problem on HPUNIX
Yes, My script is excutable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2003 06:16 AM
05-28-2003 06:16 AM
Re: VNC problem on HPUNIX
You probably are having a problem with the environment in your script running at boot time. Try putting in the explicit path you need for your VNC software. Are there any clues in your /etc/rc.log file?
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 06:55 AM
05-29-2003 06:55 AM
Re: VNC problem on HPUNIX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2003 07:26 AM
05-29-2003 07:26 AM
Re: VNC problem on HPUNIX
Are your users sharing the same $HOME dirs at all ? OR logging in via remote X sessions multiple times ..... if so this would explain what you are seeing .... they are encountering problems sharing their $HOME/.ICEauthority
files
or is NIS involved ?
ll $HOME/.ICE*
you can work around this by ...
creating a file /etc/dt/config/Xsession.d/1000
.ICEauthority with the following
#!/usr/bin/ksh
ICEAUTHORITY=$HOME/.${USER}ICEauthority export ICEAUTHORITY
chmod 755 /etc/dt/config/Xsession.d/1000.ICEauthority
restart X/CDE