- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- Re: cant login on ssh server
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
08-14-2005 11:27 PM
08-14-2005 11:27 PM
cant login on ssh server
ive installed ssh on my tru64.created a user.but when i login, no success. my logs tell me that hostbased authentication fails.can you give me a sample config?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2005 02:38 AM
08-15-2005 02:38 AM
Re: cant login on ssh server
By default, you shouldn't have to change anything in the ssh configuration files.
What type of access are you using ?
password, hostkey, publickey ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2005 06:43 AM
08-15-2005 06:43 AM
Re: cant login on ssh server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2005 03:33 PM
08-15-2005 03:33 PM
Re: cant login on ssh server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2005 03:59 PM
08-15-2005 03:59 PM
Re: cant login on ssh server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2005 04:16 PM
08-15-2005 04:16 PM
Re: cant login on ssh server
Heres the things i did.
#ssh -v
metaconfig parsing at line3
unable to open //.ssh2/sshd2_config
warning:you didnt specify hostname
#ssh admin@
admin password:
Disconnected, no more authentication methods available
tail -f auth.log
hostbased authentication failed
password authentication failed
What seems to be the problem ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2005 01:12 AM
08-16-2005 01:12 AM
Re: cant login on ssh server
ssh -v admin@
Also, run it from the localhost first, there can be problems using openssh and Tru64 sshd.
ssh -v admin@localhost
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2005 02:09 AM
08-16-2005 02:09 AM
Re: cant login on ssh server
ssh -v:
It did not look for the local servers' file which is /etc/ssh2/sshd2_config but for the local users client configuration file which is $HOME/.ssh2/ssh2_config. This is an optional file. If not found it will use the default file on /etc/ssh2/ssh2_config.
ssh admin@localhost:
Failed as there is no admin account on the system. There is an adm account but no admin.
Try something simple....like ssh localhost. This will connect back to the account from which you are currently logged in. Or ssh target_system_name.
Ssh assumes you want to connect to the same account from which you are originating the connection unless you give it a specific username with the user@hostname format or use the -l username form.