Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

SQL Server Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(SQL Server) SSH Parallel Remote Commands on Multiple Servers

Shows how to execute a command in parallel on multiple servers.

Note: This example requires Chilkat v9.5.0.65 or greater.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

// Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
//
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @sTmp0 nvarchar(4000)
    -- 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..
    DECLARE @ssh1 int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Ssh', @ssh1 OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @ssh2 int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Ssh', @ssh2 OUT

    DECLARE @ssh3 int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Ssh', @ssh3 OUT

    DECLARE @port int
    SELECT @port = 22
    DECLARE @success int
    EXEC sp_OAMethod @ssh1, 'Connect', @success OUT, 'ssh-server1.com', @port
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @ssh1, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @ssh1
        EXEC @hr = sp_OADestroy @ssh2
        EXEC @hr = sp_OADestroy @ssh3
        RETURN
      END

    -- Authenticate using login/password:
    EXEC sp_OAMethod @ssh1, 'AuthenticatePw', @success OUT, 'sshLogin1', 'sshPassword1'
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @ssh1, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @ssh1
        EXEC @hr = sp_OADestroy @ssh2
        EXEC @hr = sp_OADestroy @ssh3
        RETURN
      END

    -- Connect and authenticate with 2 more servers.
    -- For brevity, the success/failure won't be checked...
    EXEC sp_OAMethod @ssh2, 'Connect', @success OUT, 'ssh-server2.com', @port
    EXEC sp_OAMethod @ssh2, 'AuthenticatePw', @success OUT, 'sshLogin2', 'sshPassword2'
    EXEC sp_OAMethod @ssh3, 'Connect', @success OUT, 'ssh-server3.com', @port
    EXEC sp_OAMethod @ssh3, 'AuthenticatePw', @success OUT, '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.
    DECLARE @cmd nvarchar(4000)
    SELECT @cmd = 'sleep 5; date'

    -- Start each command
    DECLARE @ssh1Channel int
    EXEC sp_OAMethod @ssh1, 'QuickCmdSend', @ssh1Channel OUT, @cmd
    IF @ssh1Channel < 0
      BEGIN
        EXEC sp_OAGetProperty @ssh1, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @ssh1
        EXEC @hr = sp_OADestroy @ssh2
        EXEC @hr = sp_OADestroy @ssh3
        RETURN
      END
    -- For brevity, we're not checking the return values here:
    DECLARE @ssh2Channel int
    EXEC sp_OAMethod @ssh2, 'QuickCmdSend', @ssh2Channel OUT, @cmd
    DECLARE @ssh3Channel int
    EXEC sp_OAMethod @ssh3, 'QuickCmdSend', @ssh3Channel OUT, @cmd

    -- OK, at this point the command is running simultaneously on each server.

    -- Now collect the results of each command.
    DECLARE @pollTimeoutMs int
    SELECT @pollTimeoutMs = 50
    DECLARE @numFinished int
    SELECT @numFinished = 0
    DECLARE @channel int

    -- Note: You would rewrite this code to use arrays.
    DECLARE @ssh1Finished int
    SELECT @ssh1Finished = 0
    DECLARE @ssh2Finished int
    SELECT @ssh2Finished = 0
    DECLARE @ssh3Finished int
    SELECT @ssh3Finished = 0
    WHILE @numFinished < 3
      BEGIN
        -- 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 <> 1
          BEGIN
            EXEC sp_OAMethod @ssh1, 'QuickCmdCheck', @channel OUT, @pollTimeoutMs
            IF @channel = -2
              BEGIN
                EXEC sp_OAGetProperty @ssh1, 'LastErrorText', @sTmp0 OUT
                PRINT @sTmp0
                EXEC @hr = sp_OADestroy @ssh1
                EXEC @hr = sp_OADestroy @ssh2
                EXEC @hr = sp_OADestroy @ssh3
                RETURN
              END
            IF @channel = @ssh1Channel
              BEGIN


                PRINT '---- ssh1 channel ' + @channel + ' finished ----'
                EXEC sp_OAMethod @ssh1, 'GetReceivedText', @sTmp0 OUT, @channel, 'ansi'
                PRINT @sTmp0
                SELECT @numFinished = @numFinished + 1
                SELECT @ssh1Finished = 1
              END
          END
        IF @ssh2Finished <> 1
          BEGIN
            EXEC sp_OAMethod @ssh2, 'QuickCmdCheck', @channel OUT, @pollTimeoutMs
            IF @channel = -2
              BEGIN
                EXEC sp_OAGetProperty @ssh2, 'LastErrorText', @sTmp0 OUT
                PRINT @sTmp0
                EXEC @hr = sp_OADestroy @ssh1
                EXEC @hr = sp_OADestroy @ssh2
                EXEC @hr = sp_OADestroy @ssh3
                RETURN
              END
            IF @channel = @ssh2Channel
              BEGIN


                PRINT '---- ssh2 channel ' + @channel + ' finished ----'
                EXEC sp_OAMethod @ssh2, 'GetReceivedText', @sTmp0 OUT, @channel, 'ansi'
                PRINT @sTmp0
                SELECT @numFinished = @numFinished + 1
                SELECT @ssh2Finished = 1
              END
          END
        IF @ssh3Finished <> 1
          BEGIN
            EXEC sp_OAMethod @ssh3, 'QuickCmdCheck', @channel OUT, @pollTimeoutMs
            IF @channel = -2
              BEGIN
                EXEC sp_OAGetProperty @ssh3, 'LastErrorText', @sTmp0 OUT
                PRINT @sTmp0
                EXEC @hr = sp_OADestroy @ssh1
                EXEC @hr = sp_OADestroy @ssh2
                EXEC @hr = sp_OADestroy @ssh3
                RETURN
              END
            IF @channel = @ssh3Channel
              BEGIN


                PRINT '---- ssh3 channel ' + @channel + ' finished ----'
                EXEC sp_OAMethod @ssh3, 'GetReceivedText', @sTmp0 OUT, @channel, 'ansi'
                PRINT @sTmp0
                SELECT @numFinished = @numFinished + 1
                SELECT @ssh3Finished = 1
              END
          END

      END

    -- --------------
    -- 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

    EXEC @hr = sp_OADestroy @ssh1
    EXEC @hr = sp_OADestroy @ssh2
    EXEC @hr = sp_OADestroy @ssh3


END
GO

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.