Versions Compared

Key

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

...

  1. Change the cell manager’s internal address:

    1. For Appliance mode, find the correct interface name using the following command and run steps 1-4 on Change Appliance Network Address.

      Code Block
      ip a | grep '<Old Manager's Internal IP Address>' | awk '{print $7}'
    2. For Non-Appliance mode, please consult with your network admin and linux admin how to change the network interface address.

  2. Update hosts file:

    Code Block
    sed -i "3,1000 s/<Old Manager's Internal IP Address>/<New Manager's Internal IP Address>/" /etc/hosts
  3. Run the following SQL using “ij” ij utility (using CLI on DPOD’s DPOD's server):

    Code Block
    update node set esip='<New Manager's Internal IP Address>' where esip='<Old Manager's Internal IP Address>';
    quit;

...

  1. Change the cell manager’s external address:

    1. For Appliance mode, find the correct interface name using the following command and run steps 1-4 on Change Appliance Network Address

      Code Block
      ip a | grep '<Old Manager's External IP Address>' | awk '{print $7}'
    2. For Non-Appliance mode, please consult with your network admin and linux admin how to change the network interface address.

  2. Update hosts file:

    Code Block
    sed -i "3,1000 s/<Old Manager's External IP Address>/<New Manager's External IP Address>/" /etc/hosts
  3. Run the following SQL using “ij” ij utility (using CLI on DPOD’s DPOD's server):

    Code Block
    update node set agentsIp='<New Manager's External IP Address>' where agentsIp='<Old Manager's External IP Address>';
    update node set restClientAddress='http://<New Manager's External IP Address>:8190' where restClientAddress='http://<Old Manager's External IP Address>:8190';
    update systemparameter set value='<New Manager's External IP Address>' where value='<Old Manager's External IP Address>';
    quit;

...

  1. Run the following SQL using “ij” ij utility (using CLI on DPOD’s DPOD's server):

    Code Block
    update node set agentsIp='<New Member's External IP Address>' where agentsIp='<Old Member's External IP Address>';
    update node set restClientAddress='https://<New Member's External IP Address>' where restClientAddress='https://<Old Member's External IP Address>';
    UPDATE HatsRecurringTask SET isEnabled = true where tasktype = 'POST_UPGRADE';
    quit;

...