- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SSH publickey disabled
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
09-13-2002 01:31 PM
09-13-2002 01:31 PM
SSH publickey disabled
debug: Ssh2AuthClient/sshauthc.c:315: Method 'publickey' disabled.
Any help would be greatly appreciated.
Ben Palmer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 05:58 PM
09-13-2002 05:58 PM
Re: SSH publickey disabled
HP's DEPOT build can be found here:
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=T1471AA
You can, and I have gotten the 3.4+ here:
http://hpux.cs.utah.edu/hppd/hpux/Networking/Admin/openssh-3.4p1/
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2002 11:36 PM
09-15-2002 11:36 PM
Re: SSH publickey disabled
Next restart the sshd daemon on the faulty machine and try again using "ssh -v
You also need to check that you have correctly copied the ".pub" file from your $HOME/.ssh directory to "authorized_keys" (or "authorized_keys2") on the remote system.
Finally check that the ownerships and permissions are correct on all the files (see the man pages).
Incidentally, you should always disable direct root login via SSH, and use "su" instead. This means that you still have the added protection of the second password, but it is encrypted so nobody can eavesdrop to get it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2002 01:31 AM
09-16-2002 01:31 AM
Re: SSH publickey disabled
1. Check permission of .ssh in root account of both machine. SSH is very paranoid and if you have, as example, group writable, it block the pubkey authentication.
2. Be sure you put the public key of each account in the authorize_key file of the other machine.
3. Try with -v and check. Add many -v as required for more verbose. Check in firsts line (environment setup).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2002 07:23 AM
09-17-2002 07:23 AM
Re: SSH publickey disabled
Thanks again...