How to obtain an Application Server's Node IDIssue Where to View the Node ID The Node ID is visible in the stats.do page of a ServiceNow instance node. It is the highlighted value in the following figure. About Node IDs A few pointers about the Node ID: Every application node of an instance should have a unique Node ID.The Node ID is generated by combination of HOSTNAME & PORT as an md5sum md5sum calculates and verifies 128-bit MD5 hashes as described in RFC 1321. The MD5 hash functions as a compact digital fingerprint.i.e. the Node ID of an application node with hostname = 'localhost' and port 16000 will always be "97f69143118d564e464c5d4d4a74e4b8". This is easily verifiable by running the following command in a terminal: $ echo -n "localhost:16000" | md5 97f69143118d564e464c5d4d4a74e4b8 The Node ID is generated every time at the startup of an application node.Table [sys_cluster_state] stores the Node ID along with other node information.The Node ID is NOT kept in the glide.properties file on the application node.In case of a different Node ID, the system creates new entries in the sys_cluster_state table.The Node ID can be same for any two application nodes only if they: Have the same nameAre running on the same port Do not have the same Node ID for two or more application nodes of an instance.Same Node IDs can cause upgrade failures and incorrect data in [sys_cluster_state] and System Diagnostics.A Node ID can be changed on demand: Change the hostname or the port or both.Restart the application node.Remove the old record from [sys_cluster_state]. Do not run self-hosted instances with an application host bounded to the loopback(localhost). This will create the same Node ID if their app nodes connect on the same port as well. <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } -->