문제

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?

도움이 되었습니까?

해결책

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
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top