Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to Hudson and trying to set up a build job that will build a Maven project from a remote Mercurial server.

I have Hudson 2.0.1 with the Maven 2.0.1 plugin deployed in Glassfish and Mercurial 1.3.1 installed on both the build (local Hudson) and our repository server (remote Merucurial). I have a "hudson" user set up on both servers.

I have set up the job Repository URL with and without a username with the same results:

ssh://hgserver:22//opt/hg/MyProject

and

ssh://hudson@hgserver:22//opt/hg/MyProject

Based on a number of posts/articles I've found searching, I did the following to try to allow my hudson user on the Hudson server to be able to clone the project from the repo server:

  1. As the hudson user, ran ssh-keygen -t rsa on the Hudson server
  2. Copied the ~hudson/.ssh/id_rsa.pub from the Hudson server to the repo server as ~hudson/.ssh/authorized_keys

However, when I run the build in Hudson, I get this error:

See <http://hudsonserver:8080/hudson-2.0.1/job/MyProject/3/>

------------------------------------------
Started by user anonymous
$ /usr/bin/hg clone --rev default ssh://hgserver:22//opt/hg/MyProject <http://hudsonserver:8080/hudson-2.0.1/job/MyProject/ws/>
remote: ssh_askpass: exec(/usr/libexec/openssh/ssh-askpass): No such file or directory
remote: Permission denied, please try again.
remote: ssh_askpass: exec(/usr/libexec/openssh/ssh-askpass): No such file or directory
remote: Permission denied, please try again.
remote: ssh_askpass: exec(/usr/libexec/openssh/ssh-askpass): No such file or directory
remote: Permission denied (publickey,gssapi-with-mic,password).
abort: no suitable response from remote hg!
ERROR: Failed to clone ssh://hgserver:22//opt/hg/MyProject
[workspace] $ /usr/bin/hg log --rev . --template {node}
java.io.IOException: Cannot run program "/usr/bin/hg" (in directory "<http://hudsonserver:8080/hudson-2.0.1/job/MyProject/ws/")>: java.io.IOException: error=2, No such file or directory
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:475)
    at hudson.Proc$LocalProc.<init>(Proc.java:192)
    at hudson.Proc$LocalProc.<init>(Proc.java:164)
    at hudson.Launcher$LocalLauncher.launch(Launcher.java:639)
    at hudson.Launcher$ProcStarter.start(Launcher.java:274)
    at hudson.Launcher$ProcStarter.join(Launcher.java:281)
    at hudson.plugins.mercurial.MercurialSCM.joinWithPossibleTimeout(MercurialSCM.java:298)
    at hudson.plugins.mercurial.HgExe.popen(HgExe.java:191)
    at hudson.plugins.mercurial.HgExe.tip(HgExe.java:171)
    at hudson.plugins.mercurial.MercurialSCM.calcRevisionsFromBuild(MercurialSCM.java:254)
    at hudson.scm.SCM._calcRevisionsFromBuild(SCM.java:304)
    at hudson.model.AbstractProject.calcPollingBaseline(AbstractProject.java:1223)
    at hudson.model.AbstractProject.checkout(AbstractProject.java:1212)
    at hudson.model.AbstractBuild$AbstractRunner.checkout(AbstractBuild.java:508)
    at hudson.model.AbstractBuild$AbstractRunner.run(AbstractBuild.java:424)
    at hudson.model.Run.run(Run.java:1363)
    at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)
    at hudson.model.ResourceController.execute(ResourceController.java:88)
    at hudson.model.Executor.run(Executor.java:145)
Caused by: java.io.IOException: java.io.IOException: error=2, No such file or directory
    at java.lang.UNIXProcess.<init>(UNIXProcess.java:164)
    at java.lang.ProcessImpl.start(ProcessImpl.java:81)
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:468)
    ... 18 more

/usr/bin/hg is the correct path on the Hudson server.

Can somebody tell me what else needs to be done so that Hudson can clone/build this project?

TIA

share|improve this question
Well, today it's working without any (known) changes being made. Strange... – sdoca Sep 16 '11 at 20:33
Great that it works now — though it would have been interesting to know why :-) I've added a vote to close the question as "too localized" since we're unlikely to figure it out now. – Martin Geisler Jan 30 '12 at 14:51
Had a similar problem today: I had to add the hg server to the list of known hosts (in ~/.ssh/known_hosts) for the ssh protocol to work without asking something interactively. Cloning your repository once from a terminal will do the trick. – Stefan Haberl Aug 2 '12 at 11:01

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.