OopenSSH not letting me in!


 
Thread Tools Search this Thread
Operating Systems Solaris OopenSSH not letting me in!
# 1  
Old 09-01-2006
OopenSSH not letting me in!

I just installed openssh on my machine, and i keep getting the error in the log:
Any idea what is causeing this, i tried changing the IP its listening to in sshd_config, but that didnt help.. any ideas are appreciated, thanks!!


Sep 1 14:05:13 wintest sshd[2974]: Server listening on 0.0.0.0 port 22.
Sep 1 14:05:13 wintest SOE_sshd: succeeded
Sep 1 14:06:06 wintest sshd[3094]: error: Bind to port 22 on 0.0.0.0 failed: Address already in use.
Sep 1 14:06:06 wintest sshd[3094]: fatal: Cannot bind any address.
Sep 1 14:06:06 wintest SOE_sshd: succeeded
Sep 1 14:08:13 wintest sshd[2974]: Received signal 15; terminating.
# 2  
Old 09-02-2006
Check and see if you have another sshd running, and if it's not supposed to be ... kill it and make it not start automatically by removing the symbolic links in /etc/rc3.d for that instance of ssh.
# 3  
Old 09-12-2006
There is different way/steps to trouble shooting your problem..

1. check whetehr ssh process running ps -ef | grep -i sshd | grep -v grep

2. check the port listen netstat -an | grep 22 | grep LISTEN

3. Run pfiles command on your sshd services process-id and see whether the port is been mapped to local host pfiles <pid> | grep -i port

4. last from client side try accessing via debug mode .. ssh -v <remote-host-name>
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

help me out in letting me know the meaning of sh, ksh, bash

Could you please help me out in letting me know the meaning of #!/bin/sh #!/bin/ksh #!/bin/bash what the difference between all these :eek:.... Also please view the below mention script, could you please explain whats this script doing #!/bin/bash t=100 echo $t echo $tea echo... (4 Replies)
Discussion started by: jojo123
4 Replies

2. UNIX for Dummies Questions & Answers

client app not letting go of socket

Ok here's the situation We have an application that our users log into over the network to one of our unix boxes (Solaris 8). I had this situation occur the other day where an user claimed that he totally shutdown the app because it froze up and wasn't able to log back in. I performed a... (1 Reply)
Discussion started by: fusion99
1 Replies
Login or Register to Ask a Question