1

I am attempting to run a Windows batch script nightly to pull a fresh copy of data to my local hard drive from a Mercurial repository, overwriting any data I have locally. The server on which the repository is located has many repos, so is located in a sub-directory on the server. I have set up PuTTY to use an RSA key so when I log onto the server with PuTTY, I need only enter my username.

The batch script has a command:

hg pull ssh://myusername@mydomain.com/targetrepo/

...but this only opens a prompt for me to enter my password. Normally, this would be fine but because the pull will be executed from a batch script, I need the RSA key authentication to work.

How do I allow a batch script in a subdirectory on the server that contains a Mercurial repository to execute without requiring entry of a password?

Mat Kelly
  • 2,327
  • 7
  • 29
  • 51

1 Answers1

2

You said it yourself -- you need the RSA key authentication to work. So you'll need to debug why that isn't working. The easiest way would be to see the sshd logs on the server side. It'll probably be one of

  • Your key isn't on the server
  • The ~/.ssh directory or its contents' permissions on the server are wrong
  • The SSH daemon on the server doesn't allow passwordless access
  • It's not actually asking for a password at all; it's asking for a passphrase for your key
sfink
  • 1,726
  • 1
  • 17
  • 22
  • It's a shared hosting server, so I don't have access to the syslog. Using PuTTY I am able to use this key by only entering my username, so I'm sure it works and that the authorized_keys is present. I manually enter the password and I am allowed in, so I'm positive it is looking for the password. Any other suggestions on how to debug this issue? Should I have a separate ~/targetrepo/.ssh folder? – Mat Kelly Nov 30 '10 at 20:39