Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-42856

Unable to launch Windows slaves using Microsoft OpenSSH: Unexpected termination of the channel

    • Icon: Bug Bug
    • Resolution: Done
    • Icon: Minor Minor
    • ssh-slaves-plugin
    • None
    • Windows 2012 R2 master and slaves, Jenkins 2.32.3 LTS, Win32-OpenSSH 0.0.10.0, SSH Slaves plugin 1.14

      As a first step to being able to use the VMware plugin to spawn slaves automatically, I'm trying to get ssh slave connectivity to work. Normally I use Java Web Start for permanent slaves, which works fine, but I have no way to use that with a dynamic slave (without turning off the connect security and forgoing having a secret in the JNLP command).

      I've installed the Microsoft SSH port (Win32-OpenSSH) for sshd, and Cygwin to get the "true" utility that Jenkins expects to call, but my attempts to launch the agent fail almost immediately (after copying the slave.jar file), with the following log:

      [03/16/17 14:35:26] [SSH] Opening SSH connection to myserver:22.
      [03/16/17 14:35:31] [SSH] Authentication successful.
      [03/16/17 14:35:34] [SSH] The remote users environment is:
      [03/16/17 14:35:36] [SSH] Starting sftp client.
      [03/16/17 14:35:39] [SSH] Copying latest slave.jar...
      [03/16/17 14:36:00] [SSH] Copied 717,563 bytes.
      Expanded the channel window size to 4MB
      [03/16/17 14:36:00] [SSH] Starting slave process: cd "C:\Jenkins" && "C:\Program Files\Java\jre1.8.0_121\bin\java"  -jar slave.jar
      <===[JENKINS REMOTING CAPACITY]===><===[JENKINS REMOTING CAPACITY]===>ERROR: Unexpected error in launching a slave. This is probably a bug in Jenkins.
      hudson.remoting.RequestAbortedException: java.io.IOException: Unexpected termination of the channel
      	at hudson.remoting.Request.abort(Request.java:307)
      	at hudson.remoting.Channel.terminate(Channel.java:888)
      	at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:92)
      	at ......remote call to myserver(Native Method)
      	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1537)
      	at hudson.remoting.Request.call(Request.java:172)
      	at hudson.remoting.Channel.call(Channel.java:821)
      	at hudson.slaves.SlaveComputer.setChannel(SlaveComputer.java:516)
      	at hudson.slaves.SlaveComputer.setChannel(SlaveComputer.java:389)
      	at hudson.plugins.sshslaves.SSHLauncher.startSlave(SSHLauncher.java:989)
      	at hudson.plugins.sshslaves.SSHLauncher.access$400(SSHLauncher.java:139)
      	at hudson.plugins.sshslaves.SSHLauncher$2.call(SSHLauncher.java:738)
      	at hudson.plugins.sshslaves.SSHLauncher$2.call(SSHLauncher.java:719)
      	at java.util.concurrent.FutureTask.run(Unknown Source)
      	at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
      	at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
      	at java.lang.Thread.run(Unknown Source)
      Caused by: java.io.IOException: Unexpected termination of the channel
      	at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:73)
      Caused by: java.io.EOFException
      	at java.io.ObjectInputStream$PeekInputStream.readFully(Unknown Source)
      	at java.io.ObjectInputStream$BlockDataInputStream.readShort(Unknown Source)
      	at java.io.ObjectInputStream.readStreamHeader(Unknown Source)
      	at java.io.ObjectInputStream.<init>(Unknown Source)
      	at hudson.remoting.ObjectInputStreamEx.<init>(ObjectInputStreamEx.java:48)
      	at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:34)
      	at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:59)
      [03/16/17 14:36:09] Launch failed - cleaning up connection
      ERROR: Connection terminated
      java.io.IOException: Unexpected termination of the channel
      	at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:73)
      Caused by: java.io.EOFException
      	at java.io.ObjectInputStream$PeekInputStream.readFully(Unknown Source)
      	at java.io.ObjectInputStream$BlockDataInputStream.readShort(Unknown Source)
      	at java.io.ObjectInputStream.readStreamHeader(Unknown Source)
      	at java.io.ObjectInputStream.<init>(Unknown Source)
      	at hudson.remoting.ObjectInputStreamEx.<init>(ObjectInputStreamEx.java:48)
      	at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:34)
      	at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:59)
      [03/16/17 14:36:09] [SSH] Connection closed.

      I've searched and found a number of cases of the "This is probably a bug in Jenkins." error in launching a slave, but seemingly not this exact one. It seems to be that the connection or process is being terminated on the slave side but I can't figure out by what.

      How can this be fixed or worked around?

      EDIT (March 17, 2017): Per stephenconnolly and my own testing, this appears to be n incompatibility between the Jenkins SSH Slaves plugin and a bug in the Microsoft's Win32-OpenSSH port specifically. When I switched the slave node to run Cygwin's OpenSSH, it worked perfectly.

          [JENKINS-42856] Unable to launch Windows slaves using Microsoft OpenSSH: Unexpected termination of the channel

          Nick Jones added a comment -

          I just updated to the latest version of the SSH Slaves plugin, 1.14, and tried again. The only difference is that now it correctly outputs the remote user's environment. It still fails immediately after slave.jar copying with:

          ERROR: Unexpected error in launching a slave. This is probably a bug in Jenkins.
          hudson.remoting.RequestAbortedException: java.io.IOException: Unexpected termination of the channel
          	at hudson.remoting.Request.abort(Request.java:307)
          	at hudson.remoting.Channel.terminate(Channel.java:888)

          etc.

          Nick Jones added a comment - I just updated to the latest version of the SSH Slaves plugin, 1.14, and tried again. The only difference is that now it correctly outputs the remote user's environment. It still fails immediately after slave.jar copying with: ERROR: Unexpected error in launching a slave. This is probably a bug in Jenkins. hudson.remoting.RequestAbortedException: java.io.IOException: Unexpected termination of the channel at hudson.remoting.Request.abort(Request.java:307) at hudson.remoting.Channel.terminate(Channel.java:888) etc.

          Oleg Nenashev added a comment -

          CC stephenconnolly since he likely has some context

          Oleg Nenashev added a comment - CC stephenconnolly since he likely has some context

          The Microsoft OpenSSH port has some issue that I - after 2 days fighting - was unable to get around.

          There is currently no way to make this work with Jenkins.

          It does not work even using the `use a command on the command line` option to fire a native ssh client.

          I am not sure if it is CHCP code page related mangling of the streams (though ssh -T should avoid that, and that didn't work)

          I wish I had even a reproducible test case that I could provide to Microsoft to raise the issue.

          The state of affairs results in me having to post this here: 

          Stephen Connolly added a comment - The Microsoft OpenSSH port has some issue that I - after 2 days fighting - was unable to get around. There is currently no way to make this work with Jenkins. It does not work even using the `use a command on the command line` option to fire a native ssh client. I am not sure if it is CHCP code page related mangling of the streams (though ssh -T should avoid that, and that didn't work) I wish I had even a reproducible test case that I could provide to Microsoft to raise the issue. The state of affairs results in me having to post this here: 

          Nick Jones added a comment - - edited

          Thanks stephenc. Taking a step back, is there any sshd that has been found to work with Jenkins on Windows, if not the Microsoft OpenSSH one?

          Nick Jones added a comment - - edited Thanks stephenc . Taking a step back, is there any sshd that has been found to work with Jenkins on Windows, if not the Microsoft OpenSSH one?

          Nick Jones added a comment -

          I switched to Cygwin's OpenSSH and got this working.

          Nick Jones added a comment - I switched to Cygwin's OpenSSH and got this working.

          medianick that's great news.

          Just to clarify, this is not an issue with the ssh-slaves plugin.

          There is something about the Microsoft port of OpenSSH that prevents it from working.

          If it was an issue with the ssh-slaves plugin then using a launch method such as:

          would connect the agent.

          However, one cannot get that to work with Microsoft's port of OpenSSH.

          Thus I conclude that the issue is with Microsoft's port of OpenSSH in general.

          Stephen Connolly added a comment - medianick that's great news. Just to clarify, this is not an issue with the ssh-slaves plugin. There is something about the Microsoft port of OpenSSH that prevents it from working. If it was an issue with the ssh-slaves plugin then using a launch method such as: would connect the agent. However, one cannot get that to work with Microsoft's port of OpenSSH. Thus I conclude that the issue is with Microsoft's port of OpenSSH in general.

          Nick Jones added a comment -

          As this appears to be a bug in Microsoft's OpenSSH port, I'd agree with stephenconnolly that this is not a bug in Jenkins or its SSH Slaves plugin. I'm happy to have this issue out there documenting that the Cygwin OpenSSH works instead.

          Nick Jones added a comment - As this appears to be a bug in Microsoft's OpenSSH port, I'd agree with stephenconnolly that this is not a bug in Jenkins or its SSH Slaves plugin. I'm happy to have this issue out there documenting that the Cygwin OpenSSH works instead.

          I am using cygwin sshd and I face the same issue, but only if I use "noacl" in /etc/fstab on the slave. If I remove "noacl" from the /etc/fstab file, the slave works.

          It seems to be some issue when the slave.jar tries to replace "jenkins-slave.exe" with a newer one. To sum up, neither of these mount lines work: (Default path: c:\cygwin\etc\fstab)
           
          none /cygdrive cygdrive binary,posix=0,user,noacl,exec 0 0
          none /cygdrive cygdrive binary,posix=0,user,noacl 0 0

          This one works:
          none /cygdrive cygdrive binary,posix=0,user 0 0

          Niels Kristian Jensen added a comment - I am using cygwin sshd and I face the same issue, but only if I use "noacl" in /etc/fstab on the slave. If I remove "noacl" from the /etc/fstab file, the slave works. It seems to be some issue when the slave.jar tries to replace "jenkins-slave.exe" with a newer one. To sum up, neither of these mount lines work: (Default path: c:\cygwin\etc\fstab)   none /cygdrive cygdrive binary,posix=0,user,noacl,exec 0 0 none /cygdrive cygdrive binary,posix=0,user,noacl 0 0 This one works: none /cygdrive cygdrive binary,posix=0,user 0 0

          The reported error can be re-created using "cygwin sshd" if the "fstab" file is modified. Test environment:

          master: Windows Server 2008 R2 - Jenkins ver 2.62
          slave: Windows 7, cygwin sshd -

          The slave runs the "CYGWIN sshd" service logged in as a domain user with admin rights. I've created SSH keys for password free login.

          I've shown 3 ways to modify the file c:\cygwin\etc\fstab in the comments, 2 ways that fail and 1 way that works. Perhaps this can be useful in re-creating the problem.

          Niels Kristian Jensen added a comment - The reported error can be re-created using "cygwin sshd" if the "fstab" file is modified. Test environment: master: Windows Server 2008 R2 - Jenkins ver 2.62 slave: Windows 7, cygwin sshd - The slave runs the "CYGWIN sshd" service logged in as a domain user with admin rights. I've created SSH keys for password free login. I've shown 3 ways to modify the file c:\cygwin\etc\fstab in the comments, 2 ways that fail and 1 way that works. Perhaps this can be useful in re-creating the problem.

          Lars Immisch added a comment -

          I'm also trying to use the Win32-OpenSSH implementation, because getting our build system to run via the environment of the msys2/cygwin openssh server was just too complicated.

          (The main problem was that even with MSYS2_PATH_TYPE=inherit my (quite long) path was truncated by msys2. On top of that, the build scripts needed a specific perl version etc.).

          Now, I can connect to a slave with Launch agent via execution of command on master with ssh user@foo.corp.com java -jar jenkins/slave.jar, but connecting through the ssh slave plugin fails.

          The first problem - mentioned above - is that the ssh slave plugin runs the true command, which does not natively exist on Windows. That problem can be easily worked around.

          But after that, I also get the error:

          <===[JENKINS REMOTING CAPACITY]===><===[JENKINS REMOTING CAPACITY]===>ERROR: Unexpected error in launching a slave. This is probably a bug in Jenkins.
          

          If this is a bug in the Win32-OpenSSH implementation, could you give details? I'd file a bug at https://github.com/PowerShell/Win32-OpenSSH/issues if I knew more.

          Lars Immisch added a comment - I'm also trying to use the Win32-OpenSSH implementation, because getting our build system to run via the environment of the msys2/cygwin openssh server was just too complicated. (The main problem was that even with  MSYS2_PATH_TYPE=inherit my (quite long) path was truncated by msys2. On top of that, the build scripts needed a specific perl version etc.). Now, I can connect to a slave with  Launch agent via execution of command on master with ssh user@foo.corp.com java -jar jenkins/slave.jar , but connecting through the ssh slave plugin fails. The first problem - mentioned above - is that the ssh slave plugin runs the true command, which does not natively exist on Windows. That problem can be easily worked around. But after that, I also get the error: <===[JENKINS REMOTING CAPACITY]===><===[JENKINS REMOTING CAPACITY]===>ERROR: Unexpected error in launching a slave. This is probably a bug in Jenkins. If this is a bug in the Win32-OpenSSH implementation, could you give details? I'd file a bug at https://github.com/PowerShell/Win32-OpenSSH/issues if I knew more.

          I have the same issue as the previous comment, i.e. major issues seem to be resolved in Win32-OpenSSH. It works when running the ssh command manually from the server, but not when using ssh-slaves-plugin.

          I wonder if it could be related to the channel window size ("Expanded the channel window size to 4MB") triggering a bug in Win32-OpenSSH?

          Patrick Masselink added a comment - I have the same issue as the previous comment, i.e. major issues seem to be resolved in Win32-OpenSSH. It works when running the ssh command manually from the server, but not when using ssh-slaves-plugin. I wonder if it could be related to the channel window size ("Expanded the channel window size to 4MB") triggering a bug in Win32-OpenSSH?

          It works when running the ssh command manually from the server, but not when using ssh-slaves-plugin.

          patrickm Do you mean where you have configured the agent to launch like

          Or do you mean where you just type ssh in a shell on the server

          Stephen Connolly added a comment - It works when running the ssh command manually from the server, but not when using ssh-slaves-plugin. patrickm Do you mean where you have configured the agent to launch like Or do you mean where you just type ssh in a shell on the server

          I thought I had it working yesterday using the 'launch agent via execution of command on the master', but whatever I try now it doesn't work . Using (or omitting) -T gives similar results as ssh-slaves plugin (Unexpected termination of the channel). Using ssh -tt triggers a different exception (java.io.IOException: Invalid encoded sequence encountered: 3B 33 36 48).

          When I run it on the command-line it works and starts the slave:

          jenkins@patrick:~$ ssh -i ~/.ssh/jenkins_key patrick-win10 "cd c:\Jenkins && java -jar slave.jar"
          <===[JENKINS REMOTING CAPACITY]===>rO0ABXNyABpodWRzb24ucmVtb3RpbmcuQ2FwYWJpbGl0eQAAAAAAAAABAgABSgAEbWFza3hwAAAAAAAAAP4=
          

          I'm using default 0.0.22.0 Win32-OpenSSH (64-bit). So shell is set to cmd.exe, I may try a different shell (bash, powershell) when I have some time.

          Patrick Masselink added a comment - I thought I had it working yesterday using the 'launch agent via execution of command on the master', but whatever I try now it doesn't work . Using (or omitting) -T gives similar results as ssh-slaves plugin (Unexpected termination of the channel). Using ssh -tt triggers a different exception (java.io.IOException: Invalid encoded sequence encountered: 3B 33 36 48). When I run it on the command-line it works and starts the slave: jenkins@patrick:~$ ssh -i ~/.ssh/jenkins_key patrick-win10 "cd c:\Jenkins && java -jar slave.jar" <===[JENKINS REMOTING CAPACITY]===>rO0ABXNyABpodWRzb24ucmVtb3RpbmcuQ2FwYWJpbGl0eQAAAAAAAAABAgABSgAEbWFza3hwAAAAAAAAAP4= I'm using default 0.0.22.0 Win32-OpenSSH (64-bit). So shell is set to cmd.exe, I may try a different shell (bash, powershell) when I have some time.

          patrickm I spent 3 weeks banging my head against that, it happens with both Trilead SSH and Apache MINA SSH java libraries.

           

          Good luck, but I wouldn't recommend holding your breath... just use Cygwin

          Stephen Connolly added a comment - patrickm I spent 3 weeks banging my head against that, it happens with both Trilead SSH and Apache MINA SSH java libraries.   Good luck, but I wouldn't recommend holding your breath... just use Cygwin

          Lars Immisch added a comment -

          I've opened an issue over at PowerShell/Win32-OpenSSH:

          https://github.com/PowerShell/Win32-OpenSSH/issues/927

          Lars Immisch added a comment - I've opened an issue over at PowerShell/Win32-OpenSSH: https://github.com/PowerShell/Win32-OpenSSH/issues/927

          I have a similar problem with the channel being terminated too early. I was able to circumvent it using the following SSH prefix and postfix commands:

           

          • Prefix: powershell -Command "cd C:\jenkins ; java -jar slave.jar" ; exit 0 ; rem '
          • Postfix: '

          Gerry Weißbach added a comment - I have a similar problem with the channel being terminated too early. I was able to circumvent it using the following SSH prefix and postfix commands:   Prefix:  powershell -Command "cd C:\jenkins ; java -jar slave.jar" ; exit 0 ; rem ' Postfix: '

          Nick Jones added a comment - - edited

          gamma, your method worked for me with a permanent slave node running Windows Server 2016 with OpenSSH 0.0.22. I installed Cygwin and added it to the Path simply to have a true.exe utility but was able to use OpenSSH's sshd rather than Cygwin's. Both OpenSSH and Cygwin were installed via Chocolatey.

          Nick Jones added a comment - - edited gamma , your method worked for me with a permanent slave node running Windows Server 2016 with OpenSSH 0.0.22. I installed Cygwin and added it to the Path simply to have a true.exe utility but was able to use OpenSSH's sshd rather than Cygwin's. Both OpenSSH and Cygwin were installed via Chocolatey.

          medianick I faked the true.exe to not have the cygwin dependency. I created a file "/WINDOWS/system32/true.bat" wit the following content for that:

          @%COMSPEC% /C exit 1 >nul

          Gerry Weißbach added a comment - medianick I faked the true.exe to not have the cygwin dependency. I created a file " /WINDOWS/system32/true.bat" wit the following content for that: @%COMSPEC% /C exit 1 >nul

          Nick Jones added a comment -

          Thanks gamma! That same trick worked for me, and I've removed Cygwin.

          Next on my list is to see if this setup can work with the Azure VM Agents plugin (for dynamic agents from a base image), although that doesn't appear to have the same Prefix and Postfix capabilities. I'm suspecting I may need Cygwin in that case, although I'm pleased to have a non-Cygwin solution that works for permanent nodes.

          Nick Jones added a comment - Thanks gamma ! That same trick worked for me, and I've removed Cygwin. Next on my list is to see if this setup can work with the Azure VM Agents plugin (for dynamic agents from a base image), although that doesn't appear to have the same Prefix and Postfix capabilities. I'm suspecting I may need Cygwin in that case, although I'm pleased to have a non-Cygwin solution that works for permanent nodes.

          JENKINS-37152 adds support for Win32-OpenSSH

          Ivan Fernandez Calvo added a comment - JENKINS-37152 adds support for Win32-OpenSSH

          Just wanted to signal that this issue still exists as JENKINS-37152 fix does not correct this behavior, at least for me.

          I had to use gamma's postfix & prefix tweak to make my node work on SSH Slaves plugin 1.28.1 (latest).

          Maxime Philippe added a comment - Just wanted to signal that this issue still exists as JENKINS-37152 fix does not correct this behavior, at least for me. I had to use gamma 's postfix & prefix tweak to make my node work on SSH Slaves plugin 1.28.1 (latest).

          emixam Could you attach the log of the node to see the exact error? Also this info Common info needed to troubleshooting a bug

          But in any case, it is weird the 'true' command it is not used any more, now it uses the command 'exit 0'

          https://github.com/jenkinsci/ssh-slaves-plugin/commit/bf5488b09029b4cf153dbc0b46a89094f249872f

          Ivan Fernandez Calvo added a comment - emixam Could you attach the log of the node to see the exact error? Also this info Common info needed to troubleshooting a bug But in any case, it is weird the 'true' command it is not used any more, now it uses the command 'exit 0' https://github.com/jenkinsci/ssh-slaves-plugin/commit/bf5488b09029b4cf153dbc0b46a89094f249872f

          • Jenkins core version : 2.138 / SSH Slaves plugin 1.28.1
          • OS you use on your SSH agents : CentOS7 master/ Windows 10 Pro slave.
          • OpenSSH version you have installed on your SSH agents?  OpenSSH_7.4p1 on CentOS / OpenSSH_7.6p1for Windows on Windows 10

          sshlogMaster.log

          Maxime Philippe added a comment - Jenkins core version : 2.138 / SSH Slaves plugin 1.28.1 OS you use on your SSH agents : CentOS7 master/ Windows 10 Pro slave. OpenSSH version you have installed on your SSH agents?  OpenSSH_7.4p1 on CentOS / OpenSSH_7.6p1for Windows on Windows 10 sshlogMaster.log

          Ivan Fernandez Calvo added a comment - - edited

          emixam Java 10 is not supported jet see JENKINS-4541

          [09/21/18 09:17:05] [SSH] java -version returned 10.0.2.
          

          I think you error is not related with the "true" command, the error is in this line, it is executed after the test, so no related.
          Are log files in C:\Jenkins\remoting? could you attach them?

          Did you said that making a workaround it works? What do you exactly change? if you attach a node log with the configuration that works I could see the configuration in the first line.

          Ivan Fernandez Calvo added a comment - - edited emixam Java 10 is not supported jet see JENKINS-4541 [09/21/18 09:17:05] [SSH] java -version returned 10.0.2. I think you error is not related with the "true" command, the error is in this line , it is executed after the test, so no related. Are log files in C:\Jenkins\remoting? could you attach them? Did you said that making a workaround it works? What do you exactly change? if you attach a node log with the configuration that works I could see the configuration in the first line.

          Oh, I did not know about Java 10.

          The issue I'm having is this one (JENKINS-42856) with an "Unexpected termination of the channel". I linked JENKINS-37152 only due to it's (misleading) title "Support Win32-OpenSSH".

          The fix is this one above:

           I was able to circumvent it using the following SSH prefix and postfix commands:  

          • Prefix: powershell -Command "cd C:\jenkins ; java -jar slave.jar" ; exit 0 ; rem '
          • Postfix: '

          Sorry, I'm not having much time to answer you.

          Maxime Philippe added a comment - Oh, I did not know about Java 10. The issue I'm having is this one ( JENKINS-42856 ) with an "Unexpected termination of the channel". I linked JENKINS-37152 only due to it's (misleading) title "Support Win32-OpenSSH". The fix is this one above:  I was able to circumvent it using the following SSH prefix and postfix commands:   Prefix: powershell -Command "cd C:\jenkins ; java -jar slave.jar" ; exit 0 ; rem ' Postfix: ' Sorry, I'm not having much time to answer you.

          Henti Smith added a comment -

          For the record.

          Jenkins 2.121.3 with Windows 7 machines and OpenSSH as per https://github.com/PowerShell/Win32-OpenSSH/wiki/Install-Win32-OpenSSH

          java version "1.8.0_162"

          Using Launch agent via execution of command on the master with command as follows

          ssh -T machine.fqdn.name 'powershell -Command "cd f:\jenkins ; java -jar slave.jar"' 

          works as expected.

          Henti Smith added a comment - For the record. Jenkins 2.121.3 with Windows 7 machines and OpenSSH as per https://github.com/PowerShell/Win32-OpenSSH/wiki/Install-Win32-OpenSSH java version "1.8.0_162" Using  Launch agent via execution of command on the master with command as follows ssh -T machine.fqdn.name 'powershell -Command "cd f:\jenkins ; java -jar slave.jar" ' works as expected.

          It seems related with the shell used, probably if you set the "Prefix start agent command" and the "Suffix start agent command" to those two values you fix the issue. If it works, we could try to find a way to launch the remoting process with powershell.

          "Prefix start agent command" -

          powershell -Command "


          "Suffix start agent command" -

          "

          Ivan Fernandez Calvo added a comment - It seems related with the shell used, probably if you set the "Prefix start agent command" and the "Suffix start agent command" to those two values you fix the issue. If it works, we could try to find a way to launch the remoting process with powershell. "Prefix start agent command" - powershell -Command " "Suffix start agent command" - "

          Mark Waite added a comment - - edited

          ifernandezcalvo I am running several Windows 10 machines as agents with the Microsoft OpenSSH server by using:

          Prefix Start Agent Command - Works

          powershell -Command "cd C:\J\S ; C:\J\S\jdk\bin\java.exe -jar remoting.jar" ; exit 0 ; rem '
          

          Suffix Start Agent Command - Works

          '
          

          Simpler Prefix Start Agent Command - Fails

          powershell -Command "
          

          Simpler Suffix Start Agent Command - Fails

          "
          

          When I attempt the simpler strings suggested by ifernandezcalvo, PowerShell reports the following error message:

          [12/07/18 08:24:08] [SSH] Checking java version of C:\J\V/jdk/bin/java
          [12/07/18 08:24:09] [SSH] C:\J\V/jdk/bin/java -version returned 1.8.0_181.
          [12/07/18 08:24:09] [SSH] Starting sftp client.
          [12/07/18 08:24:09] [SSH] Copying latest remoting.jar...
          [12/07/18 08:24:09] [SSH] Copied 776,717 bytes.
          Expanded the channel window size to 4MB
          [12/07/18 08:24:09] [SSH] Starting agent process: powershell -Command "cd "C:\J\V" && C:\J\V/jdk/bin/java  -jar remoting.jar -workDir C:\J\V"
          At line:1 char:11
          + cd C:\J\V && C:\J\V/jdk/bin/java  -jar remoting.jar -workDir C:\J\V
          +           ~~
          The token '&&' is not a valid statement separator in this version.
              + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
              + FullyQualifiedErrorId : InvalidEndOfLine
           
          Slave JVM has terminated. Exit code=1
          

          I believe that message means that the command used by ssh-slaves plugin to start the remote agent is not understood by PowerShell (though it is understood by the Windows Command Processor cmd.exe).

          I'm quite pleased that there is a working technique to use Windows OpenSSH server for Jenkins agents. I'll explore further and report more of what I learn.

          Mark Waite added a comment - - edited ifernandezcalvo I am running several Windows 10 machines as agents with the Microsoft OpenSSH server by using: Prefix Start Agent Command - Works powershell -Command "cd C:\J\S ; C:\J\S\jdk\bin\java.exe -jar remoting.jar" ; exit 0 ; rem ' Suffix Start Agent Command - Works ' Simpler Prefix Start Agent Command - Fails powershell -Command " Simpler Suffix Start Agent Command - Fails " When I attempt the simpler strings suggested by ifernandezcalvo , PowerShell reports the following error message: [12/07/18 08:24:08] [SSH] Checking java version of C:\J\V/jdk/bin/java [12/07/18 08:24:09] [SSH] C:\J\V/jdk/bin/java -version returned 1.8.0_181. [12/07/18 08:24:09] [SSH] Starting sftp client. [12/07/18 08:24:09] [SSH] Copying latest remoting.jar... [12/07/18 08:24:09] [SSH] Copied 776,717 bytes. Expanded the channel window size to 4MB [12/07/18 08:24:09] [SSH] Starting agent process: powershell -Command "cd "C:\J\V" && C:\J\V/jdk/bin/java -jar remoting.jar -workDir C:\J\V" At line:1 char:11 + cd C:\J\V && C:\J\V/jdk/bin/java -jar remoting.jar -workDir C:\J\V + ~~ The token '&&' is not a valid statement separator in this version. + CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException + FullyQualifiedErrorId : InvalidEndOfLine Slave JVM has terminated. Exit code=1 I believe that message means that the command used by ssh-slaves plugin to start the remote agent is not understood by PowerShell (though it is understood by the Windows Command Processor cmd.exe). I'm quite pleased that there is a working technique to use Windows OpenSSH server for Jenkins agents. I'll explore further and report more of what I learn.

          Please note our most recent version of the command is the following:

          markewaite your command shows a second quote after 'cd' which breaks the command.

          Prefix:

          cd C:/jenkins ; java -jar remoting.jar -workDir C:/jenkins ; exit 0 ; # "

          Postfix:

          "

          Gerry Weißbach added a comment - Please note our most recent version of the command is the following: markewaite your command shows a second quote after 'cd' which breaks the command. Prefix: cd C:/jenkins ; java -jar remoting.jar -workDir C:/jenkins ; exit 0 ; # " Postfix: "

          Mark Waite added a comment -

          gamma I don't understand your comment. The text I've placed in the "Prefix Start Agent Command" is a verbatim copy of the text that is working on my Jenkins server right now, connecting an ssh agent on a Windows machine with a Docker master running on Debian slim. It has been working reasonably enough that I've replaced two of my JNLP Windows agents with ssh agents and have used them for all my testing the last 2 days.

          Can you explain further?

          Mark Waite added a comment - gamma I don't understand your comment. The text I've placed in the "Prefix Start Agent Command" is a verbatim copy of the text that is working on my Jenkins server right now, connecting an ssh agent on a Windows machine with a Docker master running on Debian slim. It has been working reasonably enough that I've replaced two of my JNLP Windows agents with ssh agents and have used them for all my testing the last 2 days. Can you explain further?

          I am working on some kind of commands profiles that allow you to select different commands for different OS (bash, cmd, PowerShell, Python, whatever)

          Ivan Fernandez Calvo added a comment - I am working on some kind of commands profiles that allow you to select different commands for different OS (bash, cmd, PowerShell, Python, whatever)

          Ivan Fernandez Calvo added a comment - - edited

          I open an improvement JENKINS-55362 and add Mark Waite's comments to the Configuration Guide, thus I am going to close this issue.

          Ivan Fernandez Calvo added a comment - - edited I open an improvement JENKINS-55362 and add Mark Waite's comments to the Configuration Guide , thus I am going to close this issue.

          BTW, markewaite, gamma, I think both your commands are correct. It just depends on whether the default shell has been changed to powershell or not:

          New-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" -Name DefaultShell -Value "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -PropertyType String -Force

          Dirk Heinrichs added a comment - BTW, markewaite , gamma , I think both your commands are correct. It just depends on whether the default shell has been changed to powershell or not: New-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" -Name DefaultShell -Value "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -PropertyType String -Force

            ifernandezcalvo Ivan Fernandez Calvo
            medianick Nick Jones
            Votes:
            5 Vote for this issue
            Watchers:
            14 Start watching this issue

              Created:
              Updated:
              Resolved: