Versions Compared

Key

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

...

Now edit ClusterSetup.json file as per the guideline mentioned in Cluster Management. Put this file into /home/ec2-user/ConfiguratorUI.

Sample ClusterSetup.json file

Code Block
languagetext
titleModel Deployment
linenumberstrue
{
  "ClusterSetup": {
    "ClusterId": "TestCluster_DemoDetails",
    "ShortName": "TestCluster_DemoDetails",
    "Description": "Test Cluster ",
    "InitialDirectory": "/home/ec2-user/testInstancesDetails1",
    "ExistingSetup": "false",
    "AppInstaller": {
      "InstallerBundleFile": "/home/ec2-user/HelloTQL.zip",
      "VersionNumber": "1.10"
    },
    "Instances": {
      "InstanceDetails": [
        {
          "InstanceName": "TestCluster_Shipra1",
          "HostName": "",
          "IPAddress": "18.216.140.179",
          "Port": "8087",
          "JvmArguments": "-Xms1027m -Xmx3g -XX:+HeapDumpOnOutOfMemoryError -XX:+PrintGCDetails -XX:+PrintGCDateStamps",
          "Path": ""
        },
        {
          "InstanceName": "TestCluster_Muralee1",
          "HostName": "",
          "IPAddress": "18.216.140.179",
          "Port": "8089",
          "JvmArguments": "-Xms1027m -Xmx3g -XX:+HeapDumpOnOutOfMemoryError -XX:+PrintGCDetails -XX:+PrintGCDateStamps",
          "Path": ""
        }
      ]
     },
    "LogFilesDirectory": "/home/ec2-user/testInstancesDetails/logs",
  }
}

Step 6 Start the Monitoring Dashboard

...

  1. Run following command to see list of clusters
    $tql -cluster list
  2.  Execute below command to start particular cluster as mentioned in ClusterSetup.json file as 'ClusterId'.

    $ tql -cluster -start clusterid=<cluster_id>
  3.  After starting cluster Dashboard will look as below.
  4.  After selecting cluster, all cluster related information will be displayed on Dashboard.

Run following command to check status of cluster to verify.

...