- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- How to start VNC for other users?
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
Discussions
Discussions
Discussions
Forums
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
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-23-2007 04:54 PM
тАО05-23-2007 04:54 PM
Last week our client has restarted one of the linux server(VNC server is running on that server).After restarting we found users are not able to connect through vnc.users should telnet to the server and run vnc_start for starting there vnc .pls let me know how to start vnc for a particular port?.becaz some users doesnt hv telnet connectivity.
rgds
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2007 05:57 PM
тАО05-23-2007 05:57 PM
Re: How to start VNC for other users?
vncserver :port
where port is a port number. First port number is 1, if it's occupied - then pick 2 and so on. After successfully executing the above command - a user can connect with either VNC client or with Internet browser, while in the URL he should type the hostname of the vncserver and a port number which is a result of 5800 + the number he typed in the mentioned above command.
So fo example: if the command was `vncserver :3`
Then the user will be able to connect to the station with
http://station_name:5803
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2007 06:55 PM
тАО05-23-2007 06:55 PM
Re: How to start VNC for other users?
thanks for the reply
but my doubt is ,i hv root privilage and my port number is 20 and how should i start vnc for another user say "test" with port number 24 from my login?
rgds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2007 07:05 PM
тАО05-23-2007 07:05 PM
Solutioncommand.
If it's something that should survive a reboot, then place a script in ~
The script should have the following entries:
#!/bin/bash
/usr/bin/vncserver :port (+ other parameters if required)
The script should be executable (chmod +x scriptname).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2007 08:46 PM
тАО05-23-2007 08:46 PM
Re: How to start VNC for other users?
it worked well,thnaks for the quick reply
rgds
suresh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2007 08:52 PM
тАО05-23-2007 08:52 PM
Re: How to start VNC for other users?
Thanks for the solution,it is working
rgds