1. Home
  2. General
  3. How do I offload my user portal?

How do I offload my user portal?

This article is being updated. Please be aware the content herein, not limited to version numbers and slight syntax changes, may not match the output from the most recent versions of Bright. This notation will be removed when the content has been updated.

This question is about clusters that have the head node in a failover configuration.

By default, the user portal is served by the active node. That is, the shared IP serves it, and the individual head node ip that is active serves it, but not the individual IP that is passive.

To run the user portal on a regular node, (see /srv/www/htdocs/userportal/ or /var/www/html/userportal/ documentation), copy over the user portal web directory, edit masterinclude.php so that in the define lines for CMDHOST and LDAPHOST, the text “localhost” is changed to the accessible hostname/IP of the active head node. For example, if the IP address is 1.2.3.4, and the hostname is head1, then the lines become:

  define("CMDHOST", "1.2.3.4");
       define("LDAPHOST", "1.2.3.4");

or

 define("CMDHOST", "head1");
       define("LDAPHOST", "head1");

The accessible hostname/IP of the active head node must be correct from the node serving up the user portal for both head nodes being active.

Updated on October 28, 2020

Related Articles

Leave a Comment