- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- sshd error in syslog
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-29-2003 08:14 AM
01-29-2003 08:14 AM
sshd error in syslog
i noticed that the following message is filling up my syslogs and i want to clean it up.
ssh seems to work fine, i have it configured in inetd. this is the line: (launched by tcp wrappers)
ssh stream tcp nowait root /usr/lbin/tcpd /opt/ssh/sbin/sshd -i
but i keep getting this message in syslog:
Jan 29 08:47:57 xnnm000 inetd[650]: ssh/tcp: bind: Address already in use
Jan 29 08:47:57 xnnm000 inetd[650]: ssh/tcp: Service enabled
Jan 29 08:57:57 xnnm000 inetd[650]: ssh/tcp: bind: Address already in use
Jan 29 08:57:57 xnnm000 inetd[650]: ssh/tcp: Service enabled
Jan 29 09:07:57 xnnm000 inetd[650]: ssh/tcp: bind: Address already in use
Jan 29 09:07:57 xnnm000 inetd[650]: ssh/tcp: Service enabled
any ideas?
thanks in advance...
Aaron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2003 09:43 AM
01-29-2003 09:43 AM
Re: sshd error in syslog
Do you have a standalone sshd running already by any chance?. That's the only case that I can think of if you are getting "Address already in use" errors.
Or try running it straight from inetd instead through tcp_wrappers.
If your idea is to run sshd with tcp_wrappers, you don't need to put it in inetd.conf. If sshd is compiled with tcp_wrappers option, then a standalone sshd can read hosts.allow and hosts.deny without any help from tcpd.
And it is recommended to run sshd in standalone mode.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2003 09:48 AM
01-29-2003 09:48 AM
Re: sshd error in syslog
why is it recommended to run stand alone rather than inetd?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2003 09:50 AM
01-29-2003 09:50 AM
Re: sshd error in syslog
//start
-i Specifies that sshd is being run from inetd. sshd is normally
not run from inetd because it needs to generate the server key
before it can respond to the client, and this may take tens of
seconds. Clients would have to wait too long if the key was
regenerated every time. However, with small key sizes (e.g.,
512) using sshd from inetd may be feasible.
//End
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2003 09:56 AM
01-29-2003 09:56 AM
Re: sshd error in syslog
maybe i will change it.
P.S. i tried adding the -q switch to sshd and it still logs.