Versions Compared

Key

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

...

  1. Stop DPOD components 

  2. Ensure all components are down

  3. Disable all DPOD services except Derby, UI and Reports:
    1. Edit (using vi) the file /etc/sysconfig/MonTier ,change the following line:

      Code Block
      SERVICES_FIRST_GROUP="MonTier-Derby MonTier-es-raw-trans-Node-1"

      and remove all components except for MonTier-Derby:

      Code Block
      SERVICES_FIRST_GROUP="MonTier-Derby"


    2. Comment out the following lines:

      Code Block
      SERVICES_SECOND_GROUP="MonTier-es-raw-trans-Node ..."
      SERVICES_FORTH_GROUP="MonTier-AggAgent- ..."
      SERVICES_FIFTH_GROUP="MonTier-BalancerAgent ..."
      SERVICES_SIXTH_GROUP="MonTier-WsmAgent-1 ..."


    3. The following line should be left as is:

      Code Block
      SERVICES_THIRD_GROUP="MonTier-HK-ESRetention "


    4. Change the following line:

      Code Block
      SERVICES_SEVENTH_GROUP="MonTier-UI MonTier-Reports MonTier-HK-WsmKeepalive MonTier-HK-SyslogKeepalive"

      and remove all components except MonTier-UI and MonTier-Reports:

      Code Block
      SERVICES_SEVENTH_GROUP="MonTier-UI MonTier-Reports"


  4. Change DPOD's Store entries in /etc/hosts to direct to DPOD Internal Console IP address (1.1.1.1 in the example below):

    Code Block
    1.1.1.1     montier-es
    1.1.1.1     montier-es-http


  5. Start configuration database service

    Code Block
    start_services.sh -o derby
    ij


  6. Update the SystemParameter SQL table:

    Code Block
    UPDATE SystemParameter
    SET value='false'
    WHERE name='agents.management.enabled';
    
    UPDATE SystemParameter
    SET value='false'
    WHERE name = 'system.internal_self_service.is_internal';
    
    UPDATE SystemParameter
    SET value='false'
    WHERE name = 'system.should_run_retention_on_startup';
    
    update HATSRECURRINGTASK set isEnabled='false';


  7. If you wish to let the external self service users access the DevOps Services Portal, change the following system parameters in the external self service console
    (you can do that from Manage → Customize → System Parameters after the web console starts):
    1. Internal Self Service Address: Enter the address of the internal self service portal.
    2. Internal Self Service Webserver Port: (defaults to 443) The webserver port for the internal self service portal - change this value only if advised.
  8. Update retention service file:

    Code Block
    sed -i 's/^PATTERN_RUNNING.*/PATTERN_RUNNING\=\"Hats Recurring Tasks Scheduler\"/g' /etc/init.d/MonTier-HK-ESRetention

    Update retention config file (/app/hk_retention/MonTier-HK-ESRetention/conf/MonTierHousekeeping.conf) and set the following parmeter to false:

    Code Block
    hats.interact.enabled = false


...