Ssh error

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Ssh error
# 1  
Old 04-27-2015
Ssh error

Code:
ssh -q <remote_server> <command>

is not working for only one remote server.

From the source, we are able to connect other servers using the above command but one. All the servers are in same network and no selinux/iptables enabled.

The verbose output has the following message -
Code:
debug1: Trying private key: /root/.ssh/id_dsa
debug1: No more authentication methods to try.
Permission denied (publickey,password).

Please help.
# 2  
Old 04-27-2015
Are you using the correct key pair?
# 3  
Old 04-27-2015
Yes. The same is being used for other servers.
# 4  
Old 04-27-2015
It may well be correct on other servers, but did you check it on that particular server?
This User Gave Thanks to RudiC For This Post:
# 5  
Old 04-27-2015
There was a typo mistake in authorized_keys. Corrected.

Thanks
Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Error with script for ssh

Hi, I'm getting error while getting output of home directories for multiple servers. Could anyone please help; (using HP-UX; shell=ksh) SERVERLIST=serverlist.txt OUTPUTLIST=output.txt for host in $(cat ${SERVERLIST}) do ssh $(host) "`hostname`;`echo $HOME`" > ${OUTPUTLIST} done... (9 Replies)
Discussion started by: sam_bd
9 Replies

2. Shell Programming and Scripting

Ssh command error

Hello, I have simple ssh command which is throwing "syntax error: `(' unexpected" error. Below is the command. Could someone please advise on whats wrong with command. #!/bin/bash ssh user@host "ENDJOB JOB(I5OSDRV)" I have tried `,'. but no luck. Thanks. (4 Replies)
Discussion started by: s_linux
4 Replies

3. Shell Programming and Scripting

Error in SSH output.

Hi All, I am using below command in a shell script. ssh -q RemoteUser@RemoteServer "/export/sctipt/test.ksh" It is executing succesfully but the below is the output getting displayed. tset: standard error: Invalid argument Can you please help me in understanding below. ... (8 Replies)
Discussion started by: Girish19
8 Replies

4. Cybersecurity

SSH syntax error

I have been asked to look at a problem with implementing SSH on an HP-UX server which a colleague has set up. Users connect through PuTTY. When I try to establish a connection I see the following message: Usage: -ssh host Options: -l user Log in using this user name. -n ... (6 Replies)
Discussion started by: j_wealleans
6 Replies

5. UNIX for Dummies Questions & Answers

ssh-keygen error

Hi, I using ssh-keygen for passwordless authenciation firstly and I am following these steps mentioned below... 1) Login to pngpcdb1 using your user/pass 2) type 'bash' (without quotes) 3) ssh-keygen #generates private and public key. 4) copy this private key to the location of your sftp... (1 Reply)
Discussion started by: karan2597
1 Replies

6. UNIX for Advanced & Expert Users

ssh error

Hi, I'm executing the set of commands in remote machine via ssh command. But the control is not even going inside the if statement (not echo-ing anything). /usr/bin/ssh ${2}@${1} <<EOF >/var/tmp/housekeeping_${1}_${2}_`date +%Y%m%d%H%M%S`.log if ; then echo -e "File system is 100%... (15 Replies)
Discussion started by: apsprabhu
15 Replies

7. Ubuntu

ssh error in Ubuntu 9.10

I 'm getting following error when i do #ssh localhost or # ssh ip ssh: cannot connect to localhost at port 22: Address family not supported by protocol. what could be the reason for this .. i 'm new to ubuntu and having hard time getting the VM online on network (4 Replies)
Discussion started by: fugitive
4 Replies

8. UNIX for Advanced & Expert Users

ssh error: Error reading response length from authentication socket

Hi - I am getting the error `Error reading response length from authentication socket' when I ssh from my cluster to another cluster, and then back to my cluster. It doesn't seem to affect anything, but it's just annoying that it always pops up and tends to confuse new users of the cluster. I... (1 Reply)
Discussion started by: cpp6f
1 Replies

9. Linux

SSH upload error

I am trying to upload a file using SSH . it gives me error "Encounteted 1 errors during the transfer" WHere do I see the error ? why am i getting it ? thanks :) (1 Reply)
Discussion started by: upirate
1 Replies

10. UNIX for Advanced & Expert Users

ssh connection error

I am trying to get my CVS client to connect to the repository over ssh. ssh works - I can quite happily log on but when I use the client - which incidentally is eclipse 2.1.3 on Windows using plink/puTTY as an external connection method - I get the following error in /var/log/secure: error:... (2 Replies)
Discussion started by: Jdogg
2 Replies
Login or Register to Ask a Question