Return-Path: Delivered-To: apmail-ant-user-archive@www.apache.org Received: (qmail 85830 invoked from network); 18 Jul 2006 15:10:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 18 Jul 2006 15:10:33 -0000 Received: (qmail 85459 invoked by uid 500); 18 Jul 2006 15:10:27 -0000 Delivered-To: apmail-ant-user-archive@ant.apache.org Received: (qmail 85421 invoked by uid 500); 18 Jul 2006 15:10:27 -0000 Mailing-List: contact user-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Users List" Reply-To: "Ant Users List" Delivered-To: mailing list user@ant.apache.org Received: (qmail 85407 invoked by uid 99); 18 Jul 2006 15:10:26 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jul 2006 08:10:26 -0700 X-ASF-Spam-Status: No, hits=2.8 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_POST,DNS_FROM_RFC_WHOIS,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [209.191.87.71] (HELO web37503.mail.mud.yahoo.com) (209.191.87.71) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 18 Jul 2006 08:10:25 -0700 Received: (qmail 38116 invoked by uid 60001); 18 Jul 2006 15:10:04 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=h/Xh80cs6X4e8j/E7DuWhK8/d+A+9BpgXPc+Xrx5VlZnKD6mVroIl4FNiPIrgKTzXJmfRJkUtD0SCv406Yw77burXCO5IP5HEzrqoyfMlmknDNXibdaTxQeFEI6NdXXDwSPuATsqhTNdbAU0FfUetJJe9wSdQhF9MfknlY97DAw= ; Message-ID: <20060718151004.38114.qmail@web37503.mail.mud.yahoo.com> Received: from [82.76.17.224] by web37503.mail.mud.yahoo.com via HTTP; Tue, 18 Jul 2006 08:10:04 PDT Date: Tue, 18 Jul 2006 08:10:04 -0700 (PDT) From: Arminio Andrei Subject: Re: RE: SCP Auth Faild To: Ant Users List In-Reply-To: <20060718115754.127720@gmx.net> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="0-594512089-1153235404=:20126" Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --0-594512089-1153235404=:20126 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Markus I think u should use ssh keys is more secure. Look at this script that do the hard work for u :) /bin/sh # This script generates an ssl key for the local machine, # and copies this key to the remote server. # This allows a specific user to be granted a passwordless login # from a specific client machine. # 2003 Arthur Ketcham # RSA keys may be subject to export restrictions if [ ! -n "$1" ] then echo "Usage: `basename $0` user@server.com" exit fi if [ ! -e ~/.ssh/id_rsa.pub ] then echo "Generating RSA key" ssh-keygen -t rsa fi echo "Copying local SSH pub_key to $1" echo "Please enter password for remote account:" # Use scp to opy key to remote temp file scp ~/.ssh/id_rsa.pub $1:~/.ssh/authorized_keys.tmp # Append key to ~/.ssh/authorized_keys echo "Please enter password again to append key to remote 'authorized_keys' file" ssh $1 "cat ~/.ssh/authorized_keys.tmp >> ~/.ssh/authorized_keys; rm ~/.ssh/authorized_keys.tmp; exit" Regards, Arminio "Markus M. May" wrote: Hello, I have had a similar error message between two SuSE boxes. I reconfigured the sshd: PasswordAuthentication yes and #UsePAM yes Now it works without any problems. I believe, that there are now some security issues, and that it would be better to use public/private keys, but in our environment, this should not be a problem. R, Markus -------- Original-Nachricht -------- Datum: Mon, 17 Jul 2006 17:50:19 -0700 Von: Rich An: \'Ant Users List\' Betreff: RE: SCP Auth Faild > Also, if you're using ssh keys, make sure you use the proper permissions > on those directories containing the keys. Giving too much permission > (e.g., 0777) can cause automated login to fail. > > ->rich > > > -----Original Message----- > > From: Anderson, Rob (Global Trade) [mailto:Rob.Anderson@nike.com] > > Sent: Monday, July 17, 2006 4:31 PM > > To: Ant Users List > > Subject: RE: SCP Auth Faild > > > > > > Can you send the entire output of the build please. > > > > -Rob A > > > > > -----Original Message----- > > > From: Arminio Andrei [mailto:arminio.andrei@yahoo.com] > > > Sent: Monday, July 17, 2006 12:39 PM > > > To: Ant Users List > > > Subject: RE: SCP Auth Faild > > > > > > Thanks Bob! > > > > > > "Anderson, Rob (Global Trade)" wrote: > > > The error indicates an authentication failure. This can > > > happen for a few common reasons. > > > > > > 1. If your password has special characters and you are > > > putting the actual password in your build.xml you may get > > > this error. To fix the problem, put the password in a > > > properties file and use a property in your build.xml. > > > > > > My password don't have special characters and dosen't work > > > evean if I put it in a properties file. > > > > > > 2. If your password is not correct, you will get this error. > > > > > > And I'm sure it is correct. > > > > > > I recommend using ssh keys to authenticate because you will > > > not have to put your password in plain text into a build.xml > > > or properties file. > > > > > > I've make a bash script that can do this job using ssh keys > > > to authenticate and I guess will be a peace of cake to use > > > scp ant task, but this tomorrow > > > > > > -Rob A > > > > > > > > > > > > > -----Original Message----- > > > > From: Arminio Andrei [mailto:arminio.andrei@yahoo.com] > > > > Sent: Friday, July 14, 2006 11:37 PM > > > > To: user@ant.apache.org > > > > Subject: SCP Auth Faild > > > > > > > > Hi all, > > > > > > > > I try to copy a bunch of files from my local machine > > > (Fedora Core 5) > > > > to the jboss server that running on a SuSe Enterprise 9. I > > > write this > > > > ant task: > > > > > > > > > > > > > > > > > > > > I'm geting this error: > > > > BUILD FAILED > > > > /usr/local/cruisecontrol/projects/CNAS-SIUI/build/tst.xml:60: > > > > com.jcraft.jsch.JSchException: Auth fail at > > > > > > org.apache.tools.ant.taskdefs.optional.ssh.Scp.execute(Scp.java:187) > > > > at > > > > > > org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275) > > > > at org.apache.tools.ant.Task.perform(Task.java:364) > > > > at org.apache.tools.ant.Target.execute(Target.java:341) > > > > at org.apache.tools.ant.Target.performTasks(Target.java:369) > > > > > > > > > ...................................................................... > > > > > > > > If I use scp everything works fine but from ant ...... > > > > > > > > I try to use diffrent kind of jsch.jar libraries but I > > get the same > > > > error. > > > > > > > > Does anyoane of u know what happends? > > > > > > > > Thx for help, > > > > Arminio > > > > > > > > > > > > --------------------------------- > > > > Do you Yahoo!? > > > > Next-gen email? Have it all with the all-new Yahoo! Mail Beta. > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For > > > additional commands, e-mail: user-help@ant.apache.org > > > > > > > > > > > > > > > > > > --------------------------------- > > > Do you Yahoo!? > > > Next-gen email? Have it all with the all-new Yahoo! Mail Beta. > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org > > For additional commands, e-mail: user-help@ant.apache.org > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org > For additional commands, e-mail: user-help@ant.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For additional commands, e-mail: user-help@ant.apache.org --------------------------------- Do you Yahoo!? Everyone is raving about the all-new Yahoo! Mail Beta. --0-594512089-1153235404=:20126--