- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Getting a error in my /var/log/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
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-04-2006 11:23 AM
08-04-2006 11:23 AM
I check the sshd daemon it is still running without any problems. I looked at the sshd_config file and line ListenAddress is commented.
What can be the problem why I am getting the error messages?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2006 06:02 PM
08-04-2006 06:02 PM
Re: Getting a error in my /var/log/messages
alias ipv6 off in /etc/modprobe.conf file.
If ipv6 is enable, when you do sshd debugging, it will test binding to ipv6 address first, follow by ipv4 address, is because only can bind port no to one ip address only. If ipv6 is disable, you will never get this error anymore.
If ip6 is enable, when you netstat -na, you will see "tcp 0 :::22 :::* LISTEN", if you ipv6 is diable you will see "tcp 0 0.0.0.0:22 0.0.0.0:* LISTEN".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2006 08:41 PM
08-06-2006 08:41 PM
Re: Getting a error in my /var/log/messages
once sshd is started by inetd and second time with /etc/rc.d/rc.sshd
so you can comment line with sshd in /etc/inetd.conf
or make /etc/rc.d/rc.sshd not executable...
chmod -x /etc/rc.d/rc.sshd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2006 11:00 PM
08-06-2006 11:00 PM
SolutionTo permanently remove this problem, edit the file "/etc/ssh/sshd_config" and make sure that you have got the following entries at the starting point in file itself ---
Port 22
Protocol 2,1
ListenAddress 0.0.0.0:22
And after saving the contents, restart the service using the command --
# service sshd restart
----
Atul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2006 05:10 AM
08-07-2006 05:10 AM
Re: Getting a error in my /var/log/messages
Thanks to everyone that repsonded.
Juan Gonzalez