Versions Compared

Key

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

Manual installation requires following dependencies before continue to install

Installation steps

1. Download the installation package

...

Expand
titleHow to set web access port numbers
  1. Edit <installdir>/Configuration/appsettings.json file.

  2. Add following setting in configuration file and change (http) 80 or (ssl) 443 numbers to free ports on your server. In this example we change http port to 800 and ssl port to 4430.

    Code Block
    {
      "Web": {
        "Kestrel": {
          "Endpoints": {
            "Http": {
              "Url": "http://*:800"
            },
            "Https": {
              "Url": "https://*:4430"
            }
          }
        },
       }
    }


Expand
titleHow to set host administration port number
  1. Edit <installdir>/Configuration/appsettings.json file.

  2. Add following setting in configuration file and change host administration (5000) to free ports on your server. In this example we change host administration to 5001.

    Code Block
    {
      "HostAdmin": {
        "Kestrel": {
          "Endpoints": {
            "Http": {
              "Url": "http://*:5001"
            }
          }
        },
       }
    }

4. Install Services (Windows Only)

...

Open windows services from task manager / services tab or service manager.

Expand
titleStart Web Server

Execute agent in agent mode

Code Block
languagebash
.\AltiKare.Workflow.Agent.exe agent

After agent started in web server mode only processes the background jobs and does not provide any external access.