- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ssh problem
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-2005 01:02 AM
01-13-2005 01:02 AM
I just installed openssh3.9p1 depot on HP-UX box Ver 11.11
whene i try to bring the demon up i get the result :
Privilege separation user sshd dose not exist
EXIT CODE:255
can someone help me pleas ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 01:06 AM
01-13-2005 01:06 AM
SolutionSolutions :
. Create user sshd
. Set UsePrivilegeSeparation to no
Regards,
Fred
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 01:18 AM
01-13-2005 01:18 AM
Re: ssh problem
that work fine, but now when i tride to open session white : ssh
i asking for password.
how can i run ssh whith out asking for password ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 01:22 AM
01-13-2005 01:22 AM
Re: ssh problem
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 01:40 AM
01-13-2005 01:40 AM
Re: ssh problem
You just need to create a private/public pair of RSA keys, and distribute the public keys to a file called authorized_keys in a subdirectory .ssh beneath the home directory of users on all hosts where you wish to log in.
Not to be asked for a passphrase you either have to create those keys with an empty passphrase (or revoke an existing one from an existing pair), or you need to start up an ssh-agent.
Usually the first method is a baerable compromise as far as security is concerned.
You can create the keys by ssh-keygen.
e.g.
Login as the account you connect from.
Then you could issue (find out the path of ssh-keygen if it's not in your PATH) something like
ssh-keygen -t rsa -b 1024 -N "" -f $HOME/.ssh/id_rsa
to generate an RSA key pair
(see manpage of ssh-kegen for details)
You can repeat this for other crypto systems like DSA, or RSA1 if you connect to protocol 1 servers.
The most "dangerous" part is the appending of your public key (denoted by the suffix .pub) to the aforemetioned authorized_keys file
(caveat "man-in-the-middle")
But usually ssh and remote cat \>\> will suffice if you know you can trust the route between client and server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 02:48 AM
01-13-2005 02:48 AM
Re: ssh problem
Try this link to setup ssh without password between different version of ssh/sshd.
http://bumblebee.lcs.mit.edu/ssh2/
Hope this helps.
Regds