- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- sshd errors
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
тАО08-11-2003 04:56 PM
тАО08-11-2003 04:56 PM
I installed OpenSSH via depot from http://hpux.cs.utah.edu/ along with all the other dependencies... I generated my keys and tried to start the daemon when I receive the following:
# ./sshd
Privilege separation user sshd does not exist
#
I'm not sure what the means or how to work around it... did I miss a step?
Thanks!
J.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-11-2003 05:21 PM
тАО08-11-2003 05:21 PM
Solutionhttp://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=T1471AA
It will create the appropriate startup files as well. You can start them as /sbin/init.d/sshd.rc start. The authorized key file will need to be copied to the remote system, from the identity file on the server initiating the request.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-11-2003 08:49 PM
тАО08-11-2003 08:49 PM
Re: sshd errors
The error means you have enable privelege separation in sshd_config. To disable it edit sshd_config and modify this line.
UsePrivilegeSeparation no
save the file and start sshd again.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-11-2003 09:09 PM
тАО08-11-2003 09:09 PM
Re: sshd errors
If my memory serves me correctly (I also once stumbled over PS) it is already set during compile time through a certain configure switch that builds the appropiate makefile.
Anyway, look for the README and INSTALL files that came with the package.
There it should be outlined what needs to be done to enable PS.
I think it was that you had to create a certain user under whose uid the sshd process runs, and which is very limited in its privileges (similar to nobody or www for a webserver).
Then you will also have to create a certain directory for this sshd proc where it can cd into and chroot (usually somewhere under /var).
It has to be owned by the sshd uid and only serves as a sandbox, i.e. no file space is needed (except what the inodes require).
As said, it should say what to do in the README.
Generally I think PS is a good idea, as it increases security and minimizes the vulnerability of the sshd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-12-2003 04:49 AM
тАО08-12-2003 04:49 AM
Re: sshd errors
I installed HP's version of SSH and it works like a charm!
I tried making the other changes suggested to the openssh configuration, but that still didn't work...
J.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-12-2003 09:55 PM
тАО08-12-2003 09:55 PM
Re: sshd errors
All you had to do was to create a user account "sshd" and everything would have worked. I'm glad your up and running now though :)
Interestingly I am always arguing in these forumns against simply installing the default version, and this proves the point nicely. Had you simply downloaded and installed from the depot, then you would never have been aware of this feature, or even of any possible security benefits.
I apologise if I sound like a "smart-ass", but in security "complexity and ignorance" can be even greater enemies than hackers.