Accessing user interface for grid administration through hostname

You can access the user interface for grid administration by specifying the hostname of the server. By default, the localhost IP address (127.0.0.1) is used, which may cause access problems in browsers configured with elevated security settings.

  1. Go to the <Installation_Directory>/InforTechstackGrid/bin/ folder and copy the AdminUI.cmd file.
  2. Paste the copy into the same folder and rename the pasted file to AdminUIHostname.cmd.
  3. Edit the AdminUIHostname.cmd file using a text editor.
  4. At the end of the script add -address "<hostname>" where <hostname> is the fully qualified domain name (FQDN) of the server.
    This example shows a script with a specified FQDN of a server:
    @echo off
    @chcp 65001
    start "UI" /B "C:\Program Files\Amazon Corretto\jdk17.0.14_7\bin\javaw" -jar "D:\Program Files\Infor\LTR\InforTechStackGrid\tools\admin-ui.jar" -g "D:\Program Files\Infor\LTR\InforTechStackGrid\grid" -h "ltrserver01" -web -address "ltrserver01.domain.com"
  5. Save changes.
  6. Run the script to access the user interface for grid administration using the hostname instead of the localhost IP address.