Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
.\AltiKare.Workflow.Agent.exe help

Usage:
 help           Show help                                          help
 install        install as service                                 install
 uninstall      uninstall service                                  uninstall
 basex          install basex service                              basex
 ubasex         uninstall basex service                            ubasex
 redis          install redis service                              redis
 uredis         uninstall redis service                            uredis
 setconfig      Sets a configuration value in protected.json       setconfig <key> <value>
 start          start all services                                 start
 web            start web services                                 web
 agent          start agent                                        agent
 smtp           start smtp                                         smtp
 registerstore  register data store                                registerstore <applicationName> <storeName> [processPath]
 cleanup        execute maintenance cleanup                        cleanup
 fulltextdump   execute full text search and dump results          fulltextdump  <query> [domainName]
 ssltest        execute ssl connection test                        ssltest  hostname [port]

Installation Commands

install

...

The domain name parameter is optional, if not specified , the search is executed in the application database.

...

Code Block
.\AltiKare.Workflow.Agent.exe fulltextdump "123***789" myDomain

Found document (7951).
_assignedtoid(I)(S)(S)="NULL"
.....
subject(I)(S)(S)="<longtext>"
totaltimespent(I)(S)(S)="-00000000000000000000"
updatedat(I)(S)(S)="202210040637"

ssltest

Performs SSL connection test against target host

Code Block
.\AltiKare.Workflow.Agent.exe ssltest <host> [port]

This command used to inspect SSL connectivity test with given host and dumps results with common used SSL protocols.

Port parameter is optional, if not specified 443 value is used.

Code Block
.\AltiKare.Workflow.Agent.exe ssltest mydomain.emakin.com

Protocol:Ssl2       Success:False
System.Security.Authentication.AuthenticationException: Authentication failed, see inner exception.
 ---> Interop+AppleCrypto+SslException: illegal parameter
   at AltiKare.Workflow.Agent.Instance.SslTest(String hostname, String port) in /Users/ertan/Work/6Kare/Source/Src/AltiKare.Workflow.Agent/Instance.cs:line 576
********************************************************************************
Protocol:Ssl3       Success:False
System.Security.Authentication.AuthenticationException: Authentication failed, see inner exception.
 ---> Interop+AppleCrypto+SslException: handshake failure
   at AltiKare.Workflow.Agent.Instance.SslTest(String hostname, String port) in /Users/ertan/Work/6Kare/Source/Src/AltiKare.Workflow.Agent/Instance.cs:line 576
********************************************************************************
Protocol:Tls        Success:False
System.Security.Authentication.AuthenticationException: Authentication failed, see inner exception.
 ---> Interop+AppleCrypto+SslException: bad protocol version
   at AltiKare.Workflow.Agent.Instance.SslTest(String hostname, String port) in /Users/ertan/Work/6Kare/Source/Src/AltiKare.Workflow.Agent/Instance.cs:line 576
********************************************************************************
Protocol:Tls11      Success:False
System.Security.Authentication.AuthenticationException: Authentication failed, see inner exception.
 ---> Interop+AppleCrypto+SslException: bad protocol version
   at AltiKare.Workflow.Agent.Instance.SslTest(String hostname, String port) in /Users/ertan/Work/6Kare/Source/Src/AltiKare.Workflow.Agent/Instance.cs:line 576
********************************************************************************
Protocol:Tls12      Success:True
CipherAlgorithm:Aes128 CipherSuite:TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
********************************************************************************