configure ssh


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users configure ssh
# 1  
Old 03-15-2004
configure ssh

Hi,
I'm trying to configure ssh for an application Unix account to remotely execute a command without a password but I've been getting a 'No xauth' warning message each time a remote command is executed.

[em1]$ exec /usr/bin/ssh-agent $SHELL
[em1]$ /usr/bin/ssh-add
Enter passphrase for /home/emapp/.ssh/id_rsa: <enter password>

[em1]$ ssh em2 hostname
Warning: No xauth; using fake authentication data for X11 forwarding.
em2

'ssh em2 hostname' returned the name of the remote host but it also displayed a warning message.

Any idea how I can get rid of the warning message?

OS: Solaris 8

Thanks in advance!

geraldine
# 2  
Old 03-15-2004
Try the -q option for ssh -
quiet mode - causes all warning and diag messages to be suppressed.

See the man page for ssh for more info.
# 3  
Old 03-15-2004
Thanks for the reply.

Unfortunately the ssh is issued by a vendor's software during an installation and I could not make any modification to it. The installation failed because of the warning message.

Are there any configuration changes that I need to do to prevent the warning message from appearing?

thanks.
# 4  
Old 03-15-2004
Smilie Your examples aren't vendor code - you might have stated the true problem in the original post.

Your two options -
Have the vendor fix their code (Good luck)
or
try setting up an alias for ssh to be equal to ssh -q which may take care of the situation.

The warning isn't a bad thing - but the fact that the vendor didn't realize it could happen and code for the possiblities seems to show how well their software may be. Or, there may be a difference in the versions of ssh you are using which is causing your error (and has nothing to do with the vendor's code). And I've found in the past that vendor code can be changed (if it's a script) to get around these types of errors. If it is a script, is it downloaded to your UNIX server already or on cd?

I didn't find anything with a search that supplies an answer to changing your ssh configuration to get rid of the warning. You might want to post the exact scenerio - what type of servers involved, OS/version, ....
# 5  
Old 03-16-2004
Thanks for your suggestion. The alias actually took care of the problem.

Thanks!
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Find active SSH servers w/ ssh keys on LAN

Hi, I am trying to complete my bash script in order to find which SSH servers on LAN are still active with the ssh keys, but i am frozen at this step: #!/bin/bash # LAN SSH KEYS DISCOVERY SCRIPT </etc/passwd \ grep /bin/bash | cut -d: -f6 | sudo xargs -i -- sh -c ' && cat... (11 Replies)
Discussion started by: syrius
11 Replies

2. UNIX for Beginners Questions & Answers

Ssh script to validate ssh connection to multiple serves with status

Hi, I want to validate ssh connection one after one for multiple servers..... password less keys already setup but now i want to validate if ssh is working fine or not... I have .sh script like below and i have servers.txt contains all the list of servers #/bin/bash for host in $(cat... (3 Replies)
Discussion started by: sreeram4
3 Replies

3. Shell Programming and Scripting

Check if file exists via ssh in ssh (nested)

I'm using redhat and have an odd issue with a nested ssh call. ssh -i ~/.ssh/transfer-key -q transfer@fserver1 ] && ssh -i ~/.ssh/transfer-key transfer@fserver1 "ssh -i ~/.ssh/sftp-key sftpin@10.0.0.1 ]" && ssh -i ~/.ssh/transfer-key transfer@fserver1 "scp -i ~/.ssh/sftp-key /home/S/outbox/*... (2 Replies)
Discussion started by: say170
2 Replies

4. Shell Programming and Scripting

Ssh = ssh expect and keep everything not change include parameter postion

I have write a script which contains ssh -p 12345 dcplatform@10.125.42.50 ssh 127.0.0.1 -p 5555 "$CMD" ssh root@$GUEST_IP "$CMD" before I use public key, it works well, now I want to change to "expect", BUT I don't want to change above code and "parameter position" I can post a... (1 Reply)
Discussion started by: yanglei_fage
1 Replies

5. UNIX for Dummies Questions & Answers

SSH SSH encountered 1 errors during the transfer

This issue was resolved due to using the correct user transferring the file over to the desktop. (1 Reply)
Discussion started by: Computergal2104
1 Replies

6. AIX

How to configure SSH in AIX?

Hi I want to configure SSH in AIX, what are the command and step... Please let me know....... (1 Reply)
Discussion started by: dearsumon
1 Replies

7. Shell Programming and Scripting

Using ssh to add register key on ssh server

Hi, I want to use ssh to add a register key on remote ssh server. Since there are space characters in my register key string, it always failed. If there is no space characters in the string, it worked fine. The following is what I have tried. It seems that "ssh" command doesn't care about double... (9 Replies)
Discussion started by: leaftree
9 Replies

8. Shell Programming and Scripting

could not send commands SSH session with Net::SSH::Expect

I am using Net::SSH::Expect to connect to the device(iLO) with SSH. After the $ssh->login() I'm able to view the prompt, but not able to send any coommands. With the putty I can connect to the device and execute the commands without any issues. Here is the sample script my $ssh =... (0 Replies)
Discussion started by: hansini
0 Replies

9. Solaris

How to configure ssh for root user....???

Hi Friends, I would like to configure ssh for root user. Note : I am able to use the ssh for other user. Can someone suggest me what needs to be done....??? Thanks & Regards, jumadhiya. (8 Replies)
Discussion started by: jumadhiya
8 Replies
Login or Register to Ask a Question