Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(VB.NET UWP/WinRT) SSH Parallel Remote Commands on Multiple ServersShows how to execute a command in parallel on multiple servers. Note: This example requires Chilkat v9.5.0.65 or greater.
' This example assumes Chilkat SSH/SFTP to have been previously unlocked. ' See Unlock SSH for sample code. ' Executing a command on multiple servers simultaneously is straightforward. ' It's just a matter of using one SSH object per server.. Dim ssh1 As New Chilkat.Ssh Dim ssh2 As New Chilkat.Ssh Dim ssh3 As New Chilkat.Ssh Dim port As Integer = 22 Dim success As Boolean = Await ssh1.ConnectAsync("ssh-server1.com",port) If (success <> True) Then Debug.WriteLine(ssh1.LastErrorText) Exit Sub End If ' Authenticate using login/password: success = Await ssh1.AuthenticatePwAsync("sshLogin1","sshPassword1") If (success <> True) Then Debug.WriteLine(ssh1.LastErrorText) Exit Sub End If ' Connect and authenticate with 2 more servers. ' For brevity, the success/failure won't be checked... success = Await ssh2.ConnectAsync("ssh-server2.com",port) success = Await ssh2.AuthenticatePwAsync("sshLogin2","sshPassword2") success = Await ssh3.ConnectAsync("ssh-server3.com",port) success = Await ssh3.AuthenticatePwAsync("sshLogin3","sshPassword3") ' Note: If we wanted, we could've used ConnectAsync and AuthenticatePwAsync ' to do the connecting and authenticating in parallel... ' The command to be run on each SSH server will sleep for 5 seconds, ' and then show the current system date/time. Dim cmd As String = "sleep 5; date" ' Start each command Dim ssh1Channel As Integer = Await ssh1.QuickCmdSendAsync(cmd) If (ssh1Channel < 0) Then Debug.WriteLine(ssh1.LastErrorText) Exit Sub End If ' For brevity, we're not checking the return values here: Dim ssh2Channel As Integer = Await ssh2.QuickCmdSendAsync(cmd) Dim ssh3Channel As Integer = Await ssh3.QuickCmdSendAsync(cmd) ' OK, at this point the command is running simultaneously on each server. ' Now collect the results of each command. Dim pollTimeoutMs As Integer = 50 Dim numFinished As Integer = 0 Dim channel As Integer ' Note: You would rewrite this code to use arrays. Dim ssh1Finished As Boolean = False Dim ssh2Finished As Boolean = False Dim ssh3Finished As Boolean = False While numFinished < 3 ' Check to see if anything has finished. ' QuickCmdCheck returns -1 if there are no errors and nothing else finished ' QuickCmdCheck returns -2 if there was an error (such as a lost connection) ' QuickCmdCheck returns a channel number if a channel finished. If (ssh1Finished <> True) Then channel = Await ssh1.QuickCmdCheckAsync(pollTimeoutMs) If (channel = -2) Then Debug.WriteLine(ssh1.LastErrorText) Exit Sub End If If (channel = ssh1Channel) Then Debug.WriteLine("---- ssh1 channel " & channel & " finished ----") Debug.WriteLine(ssh1.GetReceivedText(channel,"ansi")) numFinished = numFinished + 1 ssh1Finished = True End If End If If (ssh2Finished <> True) Then channel = Await ssh2.QuickCmdCheckAsync(pollTimeoutMs) If (channel = -2) Then Debug.WriteLine(ssh2.LastErrorText) Exit Sub End If If (channel = ssh2Channel) Then Debug.WriteLine("---- ssh2 channel " & channel & " finished ----") Debug.WriteLine(ssh2.GetReceivedText(channel,"ansi")) numFinished = numFinished + 1 ssh2Finished = True End If End If If (ssh3Finished <> True) Then channel = Await ssh3.QuickCmdCheckAsync(pollTimeoutMs) If (channel = -2) Then Debug.WriteLine(ssh3.LastErrorText) Exit Sub End If If (channel = ssh3Channel) Then Debug.WriteLine("---- ssh3 channel " & channel & " finished ----") Debug.WriteLine(ssh3.GetReceivedText(channel,"ansi")) numFinished = numFinished + 1 ssh3Finished = True End If End If End While ' -------------- ' Sample output: ' ---- ssh2 channel 101 finished ---- ' Fri Dec 23 00:25:48 UTC 2016 ' ' ---- ssh3 channel 102 finished ---- ' Thu Dec 22 18:25:12 CST 2016 ' ' ---- ssh1 channel 100 finished ---- ' Thu Dec 22 18:25:48 CST 2016 |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.