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
(MFC) 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.
#include <CkSsh.h> void ChilkatSample(void) { CkString strOut; // 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.. CkSsh ssh1; CkSsh ssh2; CkSsh ssh3; int port = 22; bool success = ssh1.Connect("ssh-server1.com",port); if (success != true) { strOut.append(ssh1.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Authenticate using login/password: success = ssh1.AuthenticatePw("sshLogin1","sshPassword1"); if (success != true) { strOut.append(ssh1.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Connect and authenticate with 2 more servers. // For brevity, the success/failure won't be checked... success = ssh2.Connect("ssh-server2.com",port); success = ssh2.AuthenticatePw("sshLogin2","sshPassword2"); success = ssh3.Connect("ssh-server3.com",port); success = ssh3.AuthenticatePw("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. const char *cmd = "sleep 5; date"; // Start each command int ssh1Channel = ssh1.QuickCmdSend(cmd); if (ssh1Channel < 0) { strOut.append(ssh1.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // For brevity, we're not checking the return values here: int ssh2Channel = ssh2.QuickCmdSend(cmd); int ssh3Channel = ssh3.QuickCmdSend(cmd); // OK, at this point the command is running simultaneously on each server. // Now collect the results of each command. int pollTimeoutMs = 50; int numFinished = 0; int channel; // Note: You would rewrite this code to use arrays. bool ssh1Finished = false; bool ssh2Finished = false; bool ssh3Finished = 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) { channel = ssh1.QuickCmdCheck(pollTimeoutMs); if (channel == -2) { strOut.append(ssh1.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } if (channel == ssh1Channel) { strOut.append("---- ssh1 channel "); strOut.appendInt(channel); strOut.append(" finished ----"); strOut.append("\r\n"); strOut.append(ssh1.getReceivedText(channel,"ansi")); strOut.append("\r\n"); numFinished = numFinished + 1; ssh1Finished = true; } } if (ssh2Finished != true) { channel = ssh2.QuickCmdCheck(pollTimeoutMs); if (channel == -2) { strOut.append(ssh2.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } if (channel == ssh2Channel) { strOut.append("---- ssh2 channel "); strOut.appendInt(channel); strOut.append(" finished ----"); strOut.append("\r\n"); strOut.append(ssh2.getReceivedText(channel,"ansi")); strOut.append("\r\n"); numFinished = numFinished + 1; ssh2Finished = true; } } if (ssh3Finished != true) { channel = ssh3.QuickCmdCheck(pollTimeoutMs); if (channel == -2) { strOut.append(ssh3.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } if (channel == ssh3Channel) { strOut.append("---- ssh3 channel "); strOut.appendInt(channel); strOut.append(" finished ----"); strOut.append("\r\n"); strOut.append(ssh3.getReceivedText(channel,"ansi")); strOut.append("\r\n"); numFinished = numFinished + 1; ssh3Finished = true; } } } // -------------- // 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 SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.