- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- OPEN SSH syslog messages
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
тАО10-19-2005 05:57 AM
тАО10-19-2005 05:57 AM
OPEN SSH syslog messages
Oct 19 13:46:41 hsgccu03 sshd[7928]: fatal: Cannot bind any address.
Oct 19 13:46:41 hsgccu03 sshd[7930]: error: Bind to port 1575 on 0.0.0.0 failed: Address already in use.
Oct 19 13:46:41 hsgccu03 sshd[7930]: fatal: Cannot bind any address.
-----------------
This is a test server and there are no users logged in or trying to telnet using that port.
Any idea what these messages are telling me or how to stop them from reoccuring ?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-19-2005 06:36 AM
тАО10-19-2005 06:36 AM
Re: OPEN SSH syslog messages
and comment out ListenAddress 0.0.0.0 line.
Then restart the sshd using
#/sbin/init.d/secsh stop
#/sbin/init.d/secsh start
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-19-2005 06:51 AM
тАО10-19-2005 06:51 AM
Re: OPEN SSH syslog messages
# default value.
Port 1575
#Protocol 2,1
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::
---------------------
What now?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-19-2005 07:00 AM
тАО10-19-2005 07:00 AM
Re: OPEN SSH syslog messages
to make sure try:
netstat -na | grep 1575
and
grep 1575 /etc/services
you can use comand lsof to find who is
using this port.
Try to find who is using this port and close
this program or use some other port.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-19-2005 07:06 AM
тАО10-19-2005 07:06 AM
Re: OPEN SSH syslog messages
telnet 127.0.0.1 1575
if it's OpenSSH listening on that port, you'll see the ver string returned.
Otherwise get lsof and see what's listening on that port if you're not sure.
lsof -i :1575
hope this helps,
-denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-19-2005 07:49 AM
тАО10-19-2005 07:49 AM
Re: OPEN SSH syslog messages
Here is output from all the recommended commands:
netstat -na |grep 1575
results in:
tcp 0 0 *.1575 *.* LISTEN
showing me it's in use.
There is no entry in /etc/services for 1575
_________________________-
telnet 127.0.0.1 1575 hung up trying to connect to 1575:
Trying...Connected to 127.0.0.1.
Escape character is '^]
SSH-1.99-OpenSSH_4.1
lsof -i:1575 caused a memory dump:
# lsof -i:1575
Memory fault(coredump)
______________________________
I am going to change port # and test it again.
I will post the results as soon as I am done,
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-19-2005 10:54 PM
тАО10-19-2005 10:54 PM
Re: OPEN SSH syslog messages
-denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-20-2005 01:49 AM
тАО10-20-2005 01:49 AM
Re: OPEN SSH syslog messages
I took the following action to fix it:
I found port# 1575 being used by some other unix server, so changed the port #
Made an entry to /etc/services pointing sshd to the new port (tcp):
sshd 1585/tcp # Opensshd daemon
Forced the sshd to read the updated configuration file:
sshd -f /usr/etc/sshd_config
Restarted the sshd
sshd is now accepting connections for the new port.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-20-2005 01:56 AM
тАО10-20-2005 01:56 AM
Re: OPEN SSH syslog messages
Try to assign points to all who ever helped you in ITRC,
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-20-2005 02:33 AM
тАО10-20-2005 02:33 AM
Re: OPEN SSH syslog messages
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-20-2005 02:40 AM
тАО10-20-2005 02:40 AM
Re: OPEN SSH syslog messages
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-24-2006 05:19 AM
тАО02-24-2006 05:19 AM
Re: OPEN SSH syslog messages
I'm having a similar problem... how do 'u find the other server that was attached to that port? Where can i get isof?
Regards,